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 b6d05a3 commit 16940f8Copy full SHA for 16940f8
samples-v2/openai_agents/function_app.py
@@ -1,14 +1,12 @@
1
import azure.functions as func
2
-from model_invoker import ModelInvoker, ActivityModelInput
3
from durable_decorators import durable_openai_agent_orchestrator
4
from model_activity import create_invoke_model_activity
5
6
import basic.hello_world
7
8
app = func.FunctionApp(http_auth_level=func.AuthLevel.FUNCTION)
9
10
-# TODO: Can we hide this line?
11
-create_invoke_model_activity(app)
+create_invoke_model_activity(app) # TODO: Can we hide this line?
12
13
14
@app.route(route="orchestrators/{functionName}")
0 commit comments