Skip to content

Commit

Permalink
Disable usage stats on m1 command. (#4960)
Browse files Browse the repository at this point in the history
Co-authored-by: Eric Zhu <[email protected]>
  • Loading branch information
afourney and ekzhu authored Jan 9, 2025
1 parent 3d6d661 commit b07c166
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def main() -> None:
async def run_task(task: str, hil_mode: bool) -> None:
client = OpenAIChatCompletionClient(model="gpt-4o")
m1 = MagenticOne(client=client, hil_mode=hil_mode)
await Console(m1.run_stream(task=task))
await Console(m1.run_stream(task=task), output_stats=False)

task = args.task[0]
asyncio.run(run_task(task, not args.no_hil))
Expand Down

0 comments on commit b07c166

Please sign in to comment.