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>
19 lines
475 B
TOML
19 lines
475 B
TOML
[package]
|
|
name = "deep_research"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
chrono = "0.4.45"
|
|
clap = { version = "4", features = ["derive"] }
|
|
futures = { workspace = true }
|
|
indicatif = "0.18.6"
|
|
reqwest = { workspace = true, features = ["query"] }
|
|
rig = { workspace = true }
|
|
schemars = "1"
|
|
scraper = "0.27"
|
|
serde = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|