-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to disable verbose status streaming to STDOUT #1108
Comments
hi @aaronsteers - you should be able to control this via » uv run python -c "import marvin; result = print(marvin.classify('elmo', ['red', 'blue', 'green']))"
╭─ Agent "Marvin" (cd0968dc) ──────────────────────────────────────────────────────────────────────╮
│ │
│ Tool: Mark Task f9654b92 ("Classification Task") successful │
│ Status: ✅ │
│ Result 0 │
│ │
╰──────────────────────────────────────────────────────────────────────────────────── 10:58:37 PM ─╯
red
» MARVIN_ENABLE_DEFAULT_PRINT_HANDLER=false uv run python -c "import marvin; result = print(marvin.classify('elmo', ['red', 'blue', 'green']))"
red is there a way that you'd prefer to set this? we will add this to the docs |
Thanks, @zzstoatzz! I tested and this works if I set the env var before invoking my program. It does not appear to work if I try to set In terms of optimal configuration path, I think it could make sense to add into If it could be set locally, per command, then an option within the My current implementation looks like this:
|
hi @aaronsteers - we use » ipython
#[1]
import marvin
#[2]
marvin.classify('elmo', ['red', 'green', 'blue'])
╭─ Agent "Marvin" (060d5ba4) ──────────────────────────────────────────────────────────────────────╮
│ │
│ Tool: Mark Task 38eee4bd ("Classification Task") successful │
│ Status: ✅ │
│ Result 0 │
│ │
╰──────────────────────────────────────────────────────────────────────────────────── 11:12:04 PM ─╯
Out[2]: 'red'
#[3]
marvin.settings.enable_default_print_handler = False
#[4]
marvin.classify('elmo', ['red', 'green', 'blue'])
Out[4]: 'red' |
Perfect! It worked like a charm! ✅ |
🎉 |
I'm unable to disable verbose status streaming.
Can I disable the streaming of LLM output to STDOUT/STDERR?
Specifically, this output:
I checked docs but could not find any mention of it.
The text was updated successfully, but these errors were encountered: