Skip to content

Commit 10c9e6c

Browse files
committed
review feedback
1 parent 9cb54bd commit 10c9e6c

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

examples/realtime/app/server.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,4 @@ async def read_index():
160160
if __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)

src/agents/realtime/agent.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)