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.
2 parents 7eb03ed + da6616a commit 5b6e6deCopy full SHA for 5b6e6de
temporalio/contrib/openai_agents/_openai_runner.py
@@ -52,6 +52,11 @@ async def run(
52
"Provided tool is not a tool type. If using an activity, make sure to wrap it with openai_agents.workflow.activity_as_tool."
53
)
54
55
+ if starting_agent.mcp_servers:
56
+ raise ValueError(
57
+ "Temporal OpenAI agent does not support on demand MCP servers."
58
+ )
59
+
60
context = kwargs.get("context")
61
max_turns = kwargs.get("max_turns", DEFAULT_MAX_TURNS)
62
hooks = kwargs.get("hooks")
0 commit comments