We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79f2900 commit da6616aCopy full SHA for da6616a
temporalio/contrib/openai_agents/_openai_runner.py
@@ -51,6 +51,11 @@ async def run(
51
"Provided tool is not a tool type. If using an activity, make sure to wrap it with openai_agents.workflow.activity_as_tool."
52
)
53
54
+ if starting_agent.mcp_servers:
55
+ raise ValueError(
56
+ "Temporal OpenAI agent does not support on demand MCP servers."
57
+ )
58
+
59
context = kwargs.get("context")
60
max_turns = kwargs.get("max_turns", DEFAULT_MAX_TURNS)
61
hooks = kwargs.get("hooks")
0 commit comments