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 c7333ae commit af1864dCopy full SHA for af1864d
samples-v2/openai_agents/function_app.py
@@ -7,8 +7,6 @@
7
8
app = func.FunctionApp(http_auth_level=func.AuthLevel.FUNCTION)
9
10
-create_invoke_model_activity(app) # TODO: Can we hide this line?
11
-
12
13
@app.route(route="orchestrators/{functionName}")
14
@app.durable_client_input(client_name="client")
@@ -108,5 +106,11 @@ def human_in_the_loop(context):
108
106
109
107
reaction = Runner.run_sync(writer, f"Your haiku is considered {event_data}. React emotionally.")
110
111
- return reaction.final_output
112
+ return reaction.final_output
+
+#region Implementation details
113
114
+create_invoke_model_activity(app) # TODO: Can we hide this line?
115
116
+#endregion
0 commit comments