diff --git a/examples/FastAPI Agents Step-by-Step.ipynb b/examples/notebooks/FastAPI Agents Introduction.ipynb similarity index 97% rename from examples/FastAPI Agents Step-by-Step.ipynb rename to examples/notebooks/FastAPI Agents Introduction.ipynb index ed2cfdc..bd73657 100644 --- a/examples/FastAPI Agents Step-by-Step.ipynb +++ b/examples/notebooks/FastAPI Agents Introduction.ipynb @@ -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", @@ -26,7 +26,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -34,7 +34,7 @@ "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", @@ -91,7 +91,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -112,7 +112,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -133,7 +133,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [