File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,4 @@ async def read_index():
160160if __name__ == "__main__" :
161161 import uvicorn
162162
163- # log_level = "debug"
164- log_level = "info"
165- uvicorn .run (app , host = "0.0.0.0" , port = 8000 , log_level = log_level )
163+ uvicorn .run (app , host = "0.0.0.0" , port = 8000 )
Original file line number Diff line number Diff line change @@ -58,9 +58,8 @@ class RealtimeAgent(AgentBase, Generic[TContext]):
5858 """
5959
6060 prompt : Prompt | None = None
61- """A prompt object (or a function that returns a Prompt). Prompts allow you to dynamically
62- configure the instructions, tools and other config for an agent outside of your code. Only
63- usable with OpenAI models, using the Responses API.
61+ """A prompt object. Prompts allow you to dynamically configure the instructions, tools
62+ and other config for an agent outside of your code. Only usable with OpenAI models.
6463 """
6564
6665 handoffs : list [RealtimeAgent [Any ] | Handoff [TContext , RealtimeAgent [Any ]]] = field (
You can’t perform that action at this time.
0 commit comments