Kaimon should not always put a session in the background after 30s #59
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
kahliburke/Kaimon.jl#59
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The timeout for moving sessions to the background should be configurable. I have scripts that run 5 min, and at the end launch a GUI window with the result. I cannot see the result if the session runs in the background.
@ufechner7 I can pretty easily add a config option as well as making sure that the output of a backgrounded evaluation ends up in the Activity tab of the TUI. Also generally the agent will report the results I need (or the results are available through the REPL for inspection).
I'd also definitely recommend looking at the upcoming Slate project which offers many other methods for interacting with agents and getting interactive results.
New config option:
Here I set the option to 10s, long running task for 20s with results shown.
Fixed in
705e767, shipping in v2.0.3.The auto-background timeout is now configurable — Config tab (
b→ presets / Never / Custom) or theKAIMON_GATE_PROMOTE_AFTERenv var (0= never promote, so a long script keeps its foreground result/GUI). Additionally, when an eval does promote, the Activity detail pane now shows the finished result once the job completes (previously it stayed on the '⏳ promoted…' placeholder, which a TUI user can't act on).Thank you so much! Works like a charm.