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 f66d2e0 + b07c166 commit 3022970Copy full SHA for 3022970
python/packages/magentic-one-cli/src/magentic_one_cli/_m1.py
@@ -39,7 +39,7 @@ def main() -> None:
39
async def run_task(task: str, hil_mode: bool) -> None:
40
client = OpenAIChatCompletionClient(model="gpt-4o")
41
m1 = MagenticOne(client=client, hil_mode=hil_mode)
42
- await Console(m1.run_stream(task=task))
+ await Console(m1.run_stream(task=task), output_stats=False)
43
44
task = args.task[0]
45
asyncio.run(run_task(task, not args.no_hil))
0 commit comments