We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1e8dcf commit f8fb7cdCopy full SHA for f8fb7cd
bindings/ceylon/examples/llm/task_llm_app.py
@@ -72,7 +72,7 @@ async def main():
72
]
73
74
for question in test_questions:
75
- response:TaskResult = await active_playground.add_and_execute_task(
+ response: TaskResult = await active_playground.add_and_execute_task(
76
Task(
77
name="Calculate",
78
processor="math_assistant",
@@ -82,6 +82,8 @@ async def main():
82
print(f"\nQuestion: {question}")
83
print(f"Response: {response.output}")
84
85
+ await active_playground.finish()
86
+
87
88
if __name__ == "__main__":
89
asyncio.run(main())
0 commit comments