Wires up starter.rs -> core.rs (CLI parsing and observability init moved into core, main.rs left as a thin entry point) and switches the report phase from Agent::prompt to rig's stream_prompt, printing each text delta to stdout as it arrives instead of waiting for the full response. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
13 lines
361 B
TOML
13 lines
361 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["deep_research", "swear_cleanup"]
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1.0.104"
|
|
futures = "0.3"
|
|
reqwest = "0.13.4"
|
|
rig = "0.41.0"
|
|
serde = { version = "1.0.229", features = ["derive"] }
|
|
tokio = { version = "1.53.1", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
|