mirror of
https://github.com/run-llama/workflows-py.git
synced 2026-07-15 14:15:39 -04:00
467 lines
16 KiB
Plaintext
467 lines
16 KiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"# Workflow for a Function Calling Agent\n",
|
|
"\n",
|
|
"This notebook walks through setting up a `Workflow` to construct a function calling agent from scratch.\n",
|
|
"\n",
|
|
"Function calling agents work by using an LLM that supports tools/functions in its API (OpenAI, Ollama, Anthropic, etc.) to call functions an use tools.\n",
|
|
"\n",
|
|
"Our workflow will be stateful with memory, and will be able to call the LLM to select tools and process incoming user messages."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"!pip install llama-index-workflows llama-index-llms-openai"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"import os\n",
|
|
"\n",
|
|
"os.environ[\"OPENAI_API_KEY\"] = \"sk-proj-...\""
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Designing the Workflow\n",
|
|
"\n",
|
|
"An agent consists of several steps\n",
|
|
"1. Handling the latest incoming user message, including adding to memory and getting the latest chat history\n",
|
|
"2. Calling the LLM with tools + chat history\n",
|
|
"3. Parsing out tool calls (if any)\n",
|
|
"4. If there are tool calls, call them, and loop until there are none\n",
|
|
"5. When there is no tool calls, return the LLM response\n",
|
|
"\n",
|
|
"### The Workflow Events\n",
|
|
"\n",
|
|
"To handle these steps, we need to define a few events:\n",
|
|
"1. An event to handle new messages and prepare the chat history\n",
|
|
"2. An event to handle streaming responses\n",
|
|
"3. An event to trigger tool calls\n",
|
|
"4. An event to handle the results of tool calls\n",
|
|
"\n",
|
|
"The other steps will use the built-in `StartEvent` and `StopEvent` events."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"from llama_index.core.llms import ChatMessage\n",
|
|
"from llama_index.core.tools import ToolOutput, ToolSelection\n",
|
|
"from llama_index.core.workflow import Event\n",
|
|
"\n",
|
|
"\n",
|
|
"class InputEvent(Event):\n",
|
|
" input: list[ChatMessage]\n",
|
|
"\n",
|
|
"\n",
|
|
"class StreamEvent(Event):\n",
|
|
" delta: str\n",
|
|
"\n",
|
|
"\n",
|
|
"class ToolCallEvent(Event):\n",
|
|
" tool_calls: list[ToolSelection]\n",
|
|
"\n",
|
|
"\n",
|
|
"class FunctionOutputEvent(Event):\n",
|
|
" output: ToolOutput"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"### The Workflow Itself\n",
|
|
"\n",
|
|
"With our events defined, we can construct our workflow and steps. \n",
|
|
"\n",
|
|
"Note that the workflow automatically validates itself using type annotations, so the type annotations on our steps are very helpful!"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"from typing import Any, List\n",
|
|
"\n",
|
|
"from llama_index.core.llms.function_calling import FunctionCallingLLM\n",
|
|
"from llama_index.core.memory import ChatMemoryBuffer\n",
|
|
"from llama_index.core.tools.types import BaseTool\n",
|
|
"from llama_index.core.workflow import (\n",
|
|
" Context,\n",
|
|
" StartEvent,\n",
|
|
" StopEvent,\n",
|
|
" Workflow,\n",
|
|
" step,\n",
|
|
")\n",
|
|
"from llama_index.llms.openai import OpenAI\n",
|
|
"\n",
|
|
"\n",
|
|
"class FuncationCallingAgent(Workflow):\n",
|
|
" def __init__(\n",
|
|
" self,\n",
|
|
" llm: FunctionCallingLLM | None = None,\n",
|
|
" tools: List[BaseTool] | None = None,\n",
|
|
" **workflow_kwargs: Any,\n",
|
|
" ) -> None:\n",
|
|
" super().__init__(**workflow_kwargs)\n",
|
|
" self.tools = tools or []\n",
|
|
"\n",
|
|
" self.llm = llm or OpenAI()\n",
|
|
" assert self.llm.metadata.is_function_calling_model\n",
|
|
"\n",
|
|
" @step\n",
|
|
" async def prepare_chat_history(self, ctx: Context, ev: StartEvent) -> InputEvent:\n",
|
|
" # clear sources\n",
|
|
" await ctx.store.set(\"sources\", [])\n",
|
|
"\n",
|
|
" # check if memory is setup\n",
|
|
" memory = await ctx.store.get(\"memory\", default=None)\n",
|
|
" if not memory:\n",
|
|
" memory = ChatMemoryBuffer.from_defaults(llm=self.llm)\n",
|
|
"\n",
|
|
" # get user input\n",
|
|
" user_input = ev.input\n",
|
|
" user_msg = ChatMessage(role=\"user\", content=user_input)\n",
|
|
" await memory.aput(user_msg)\n",
|
|
"\n",
|
|
" # get chat history\n",
|
|
" chat_history = await memory.aget()\n",
|
|
"\n",
|
|
" # update context\n",
|
|
" await ctx.store.set(\"memory\", memory)\n",
|
|
"\n",
|
|
" return InputEvent(input=chat_history)\n",
|
|
"\n",
|
|
" @step\n",
|
|
" async def handle_llm_input(\n",
|
|
" self, ctx: Context, ev: InputEvent\n",
|
|
" ) -> ToolCallEvent | StopEvent:\n",
|
|
" chat_history = ev.input\n",
|
|
"\n",
|
|
" # stream the response\n",
|
|
" response_stream = await self.llm.astream_chat_with_tools(\n",
|
|
" self.tools, chat_history=chat_history\n",
|
|
" )\n",
|
|
" async for response in response_stream:\n",
|
|
" ctx.write_event_to_stream(StreamEvent(delta=response.delta or \"\"))\n",
|
|
"\n",
|
|
" # save the final response, which should have all content\n",
|
|
" memory = await ctx.store.get(\"memory\")\n",
|
|
" await memory.aput(response.message)\n",
|
|
" await ctx.store.set(\"memory\", memory)\n",
|
|
"\n",
|
|
" # get tool calls\n",
|
|
" tool_calls = self.llm.get_tool_calls_from_response(\n",
|
|
" response, error_on_no_tool_call=False\n",
|
|
" )\n",
|
|
"\n",
|
|
" if not tool_calls:\n",
|
|
" sources = await ctx.store.get(\"sources\", default=[])\n",
|
|
" return StopEvent(result={\"response\": response, \"sources\": [*sources]})\n",
|
|
" else:\n",
|
|
" return ToolCallEvent(tool_calls=tool_calls)\n",
|
|
"\n",
|
|
" @step\n",
|
|
" async def handle_tool_calls(self, ctx: Context, ev: ToolCallEvent) -> InputEvent:\n",
|
|
" tool_calls = ev.tool_calls\n",
|
|
" tools_by_name = {tool.metadata.get_name(): tool for tool in self.tools}\n",
|
|
"\n",
|
|
" tool_msgs = []\n",
|
|
" sources = await ctx.store.get(\"sources\", default=[])\n",
|
|
"\n",
|
|
" # call tools -- safely!\n",
|
|
" for tool_call in tool_calls:\n",
|
|
" tool = tools_by_name.get(tool_call.tool_name)\n",
|
|
" additional_kwargs = {\n",
|
|
" \"tool_call_id\": tool_call.tool_id,\n",
|
|
" \"name\": tool.metadata.get_name(),\n",
|
|
" }\n",
|
|
" if not tool:\n",
|
|
" tool_msgs.append(\n",
|
|
" ChatMessage(\n",
|
|
" role=\"tool\",\n",
|
|
" content=f\"Tool {tool_call.tool_name} does not exist\",\n",
|
|
" additional_kwargs=additional_kwargs,\n",
|
|
" )\n",
|
|
" )\n",
|
|
" continue\n",
|
|
"\n",
|
|
" try:\n",
|
|
" tool_output = tool(**tool_call.tool_kwargs)\n",
|
|
" sources.append(tool_output)\n",
|
|
" tool_msgs.append(\n",
|
|
" ChatMessage(\n",
|
|
" role=\"tool\",\n",
|
|
" content=tool_output.content,\n",
|
|
" additional_kwargs=additional_kwargs,\n",
|
|
" )\n",
|
|
" )\n",
|
|
" except Exception as e:\n",
|
|
" tool_msgs.append(\n",
|
|
" ChatMessage(\n",
|
|
" role=\"tool\",\n",
|
|
" content=f\"Encountered error in tool call: {e}\",\n",
|
|
" additional_kwargs=additional_kwargs,\n",
|
|
" )\n",
|
|
" )\n",
|
|
"\n",
|
|
" # update memory\n",
|
|
" memory = await ctx.store.get(\"memory\")\n",
|
|
" for msg in tool_msgs:\n",
|
|
" await memory.aput(msg)\n",
|
|
"\n",
|
|
" await ctx.store.set(\"sources\", sources)\n",
|
|
" await ctx.store.set(\"memory\", memory)\n",
|
|
"\n",
|
|
" chat_history = await memory.aget()\n",
|
|
" return InputEvent(input=chat_history)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"And thats it! Let's explore the workflow we wrote a bit.\n",
|
|
"\n",
|
|
"`prepare_chat_history()`:\n",
|
|
"This is our main entry point. It handles adding the user message to memory, and uses the memory to get the latest chat history. It returns an `InputEvent`.\n",
|
|
"\n",
|
|
"`handle_llm_input()`:\n",
|
|
"Triggered by an `InputEvent`, it uses the chat history and tools to prompt the llm. If tool calls are found, a `ToolCallEvent` is emitted. Otherwise, we say the workflow is done an emit a `StopEvent`\n",
|
|
"\n",
|
|
"`handle_tool_calls()`:\n",
|
|
"Triggered by `ToolCallEvent`, it calls tools with error handling and returns tool outputs. This event triggers a **loop** since it emits an `InputEvent`, which takes us back to `handle_llm_input()`"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Run the Workflow!\n",
|
|
"\n",
|
|
"**NOTE:** With loops, we need to be mindful of runtime. Here, we set a timeout of 120s."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Running step prepare_chat_history\n",
|
|
"Step prepare_chat_history produced event InputEvent\n",
|
|
"Running step handle_llm_input\n",
|
|
"Step handle_llm_input produced event StopEvent\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"from llama_index.core.tools import FunctionTool\n",
|
|
"\n",
|
|
"\n",
|
|
"def add(x: int, y: int) -> int:\n",
|
|
" \"\"\"Useful function to add two numbers.\"\"\"\n",
|
|
" return x + y\n",
|
|
"\n",
|
|
"\n",
|
|
"def multiply(x: int, y: int) -> int:\n",
|
|
" \"\"\"Useful function to multiply two numbers.\"\"\"\n",
|
|
" return x * y\n",
|
|
"\n",
|
|
"\n",
|
|
"tools = [\n",
|
|
" FunctionTool.from_defaults(add),\n",
|
|
" FunctionTool.from_defaults(multiply),\n",
|
|
"]\n",
|
|
"\n",
|
|
"agent = FuncationCallingAgent(\n",
|
|
" llm=OpenAI(model=\"gpt-4o-mini\"), tools=tools, timeout=120, verbose=True\n",
|
|
")\n",
|
|
"\n",
|
|
"ret = await agent.run(input=\"Hello!\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"assistant: Hello! How can I assist you today?\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"print(ret[\"response\"])"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Running step prepare_chat_history\n",
|
|
"Step prepare_chat_history produced event InputEvent\n",
|
|
"Running step handle_llm_input\n",
|
|
"Step handle_llm_input produced event ToolCallEvent\n",
|
|
"Running step handle_tool_calls\n",
|
|
"Step handle_tool_calls produced event InputEvent\n",
|
|
"Running step handle_llm_input\n",
|
|
"Step handle_llm_input produced event ToolCallEvent\n",
|
|
"Running step handle_tool_calls\n",
|
|
"Step handle_tool_calls produced event InputEvent\n",
|
|
"Running step handle_llm_input\n",
|
|
"Step handle_llm_input produced event StopEvent\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"ret = await agent.run(input=\"What is (2123 + 2321) * 312?\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Chat History\n",
|
|
"\n",
|
|
"By default, the workflow is creating a fresh `Context` for each run. This means that the chat history is not preserved between runs. However, we can pass our own `Context` to the workflow to preserve chat history."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Running step prepare_chat_history\n",
|
|
"Step prepare_chat_history produced event InputEvent\n",
|
|
"Running step handle_llm_input\n",
|
|
"Step handle_llm_input produced event StopEvent\n",
|
|
"assistant: Hello, Logan! How can I assist you today?\n",
|
|
"Running step prepare_chat_history\n",
|
|
"Step prepare_chat_history produced event InputEvent\n",
|
|
"Running step handle_llm_input\n",
|
|
"Step handle_llm_input produced event StopEvent\n",
|
|
"assistant: Your name is Logan.\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"from llama_index.core.workflow import Context\n",
|
|
"\n",
|
|
"ctx = Context(agent)\n",
|
|
"\n",
|
|
"ret = await agent.run(input=\"Hello! My name is Logan.\", ctx=ctx)\n",
|
|
"print(ret[\"response\"])\n",
|
|
"\n",
|
|
"ret = await agent.run(input=\"What is my name?\", ctx=ctx)\n",
|
|
"print(ret[\"response\"])"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"## Streaming\n",
|
|
"\n",
|
|
"Using the `handler` returned from the `.run()` method, we can also access the streaming events."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Once upon a time in a quaint little village, there lived a curious cat named Whiskers. Whiskers was no ordinary cat; he had a beautiful coat of orange and white fur that shimmered in the sunlight, and his emerald green eyes sparkled with mischief.\n",
|
|
"\n",
|
|
"Every day, Whiskers would explore the village, visiting the bakery for a whiff of freshly baked bread and the flower shop to sniff the colorful blooms. The villagers adored him, often leaving out little treats for their favorite feline.\n",
|
|
"\n",
|
|
"One sunny afternoon, while wandering near the edge of the village, Whiskers stumbled upon a hidden path that led into the woods. His curiosity piqued, he decided to follow the path, which was lined with tall trees and vibrant wildflowers. As he ventured deeper, he heard a soft, melodic sound that seemed to beckon him.\n",
|
|
"\n",
|
|
"Following the enchanting music, Whiskers soon found himself in a clearing where a group of woodland creatures had gathered. They were having a grand celebration, complete with dancing, singing, and a feast of berries and nuts. The animals welcomed Whiskers with open paws, inviting him to join their festivities.\n",
|
|
"\n",
|
|
"Whiskers, delighted by the warmth and joy of his new friends, danced and played until the sun began to set. As the sky turned shades of pink and orange, he realized it was time to return home. The woodland creatures gifted him a small, sparkling acorn as a token of their friendship.\n",
|
|
"\n",
|
|
"From that day on, Whiskers would often visit the clearing, sharing stories of the village and enjoying the company of his woodland friends. He learned that adventure and friendship could be found in the most unexpected places, and he cherished every moment spent in the magical woods.\n",
|
|
"\n",
|
|
"And so, Whiskers continued to live his life filled with curiosity, laughter, and the warmth of friendship, reminding everyone that sometimes, the best adventures are just a whisker away."
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"agent = FuncationCallingAgent(\n",
|
|
" llm=OpenAI(model=\"gpt-4o-mini\"), tools=tools, timeout=120, verbose=False\n",
|
|
")\n",
|
|
"\n",
|
|
"handler = agent.run(input=\"Hello! Write me a short story about a cat.\")\n",
|
|
"\n",
|
|
"async for event in handler.stream_events():\n",
|
|
" if isinstance(event, StreamEvent):\n",
|
|
" print(event.delta, end=\"\", flush=True)\n",
|
|
"\n",
|
|
"response = await handler\n",
|
|
"# print(ret[\"response\"])"
|
|
]
|
|
}
|
|
],
|
|
"metadata": {
|
|
"kernelspec": {
|
|
"display_name": ".venv",
|
|
"language": "python",
|
|
"name": "python3"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 3
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython3",
|
|
"version": "3.12.3"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 2
|
|
}
|