Skip to content

Commit

Permalink
move walkthrough notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
blairhudson committed Jan 18, 2025
1 parent 7ce3a29 commit 5efaff3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Using FastAPI Agents\n",
"# Getting started with FastAPI Agents\n",
"\n",
"This notebook walks you through the process of setting up a basic agent with Pydantic AI and FastAPI Agents for the first time step-by-step.\n",
"\n",
Expand All @@ -26,15 +26,15 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"from typing import List\n",
"from pydantic_ai import Agent\n",
"\n",
"todo_agent = Agent(\n",
" \"openai:gpt-4o-mini\",\n",
" \"openai:gpt-4o\",\n",
" system_prompt=\"You are managing the user's todo list.\"\n",
")\n",
"\n",
Expand Down Expand Up @@ -91,7 +91,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -112,7 +112,7 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -133,7 +133,7 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
Expand Down

0 comments on commit 5efaff3

Please sign in to comment.