From 69d84b292324d3a5ccb066a5a8b5737303554bed Mon Sep 17 00:00:00 2001 From: Ben Cherry Date: Tue, 14 Oct 2025 23:26:15 -0700 Subject: [PATCH] fix import doc --- src/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent.py b/src/agent.py index 6c4659b..b846dd7 100644 --- a/src/agent.py +++ b/src/agent.py @@ -31,7 +31,7 @@ class Assistant(Agent): # To add tools, use the @function_tool decorator. # Here's an example that adds a simple weather tool. - # You also have to add `from livekit.agents.llm import function_tool, RunContext` to the top of this file + # You also have to add `from livekit.agents import function_tool, RunContext` to the top of this file # @function_tool # async def lookup_weather(self, context: RunContext, location: str): # """Use this tool to look up current weather information in the given location.