Files
ruvnet--RuView/vendor/midstream/config/default.toml
T
rUv 407b46b206 feat: vendor midstream and sublinear-time-solver libraries (#109)
Add ruvnet/midstream (AIMDS real-time inference) and
ruvnet/sublinear-time-solver (sublinear optimization algorithms)
as vendored dependencies under vendor/.
2026-03-02 23:34:05 -05:00

26 lines
577 B
TOML

# Default Hyprstream Configuration
[engine]
engine = "duckdb"
connection = ":memory:"
[engine.options]
threads = "4"
memory_limit = "4GB"
[cache]
enabled = true
engine = "duckdb"
connection = ":memory:"
max_duration_secs = 3600 # 1 hour
[tools.weather]
api_url = "https://api.weather.example.com"
api_key = "default_key" # Override this in local.toml or environment variables
default_location = "San Francisco"
[tools.calendar]
api_url = "https://api.calendar.example.com"
api_key = "default_key" # Override this in local.toml or environment variables
timezone = "UTC"