-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (53 loc) · 2.04 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (53 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "terraphim_multi_agent"
version = "1.0.0"
edition = "2021"
description = "Multi-agent system for Terraphim built on roles with Rig framework integration"
license = "MIT"
[features]
default = ["test-utils"]
test-utils = []
hgnc = ["terraphim_types/hgnc"]
[dependencies]
# Workspace dependencies
tokio = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
async-trait = { workspace = true }
thiserror = { workspace = true }
anyhow = { workspace = true }
log = { workspace = true }
# Direct HTTP client approach (like Goose) for LLM communication
reqwest = { version = "0.12", features = ["json", "stream", "rustls-tls"], default-features = false }
# Multi-provider generative AI client (using terraphim fork with OpenRouter support)
genai = { git = "https://github.com/terraphim/rust-genai.git", branch = "merge-upstream-20251103" }
# Additional dependencies
ahash = { version = "0.8.8", features = ["serde"] }
futures = "0.3"
rand = "0.10"
# tiktoken-rs = "0.6" # Now handled by rust-genai
tracing = "0.1"
regex = "1.12"
lazy_static = "1.4"
# Terraphim dependencies
terraphim_types = { path = "../terraphim_types" }
terraphim_config = { path = "../terraphim_config", features = ["openrouter"] }
terraphim_rolegraph = { path = "../terraphim_rolegraph" }
terraphim_automata = { path = "../terraphim_automata" }
terraphim_persistence = { path = "../terraphim_persistence" }
terraphim_agent_evolution = { path = "../terraphim_agent_evolution" }
terraphim_service = { path = "../terraphim_service" }
# Firecracker VM dependencies (optional, feature-gated)
# Note: fcctl-repl has its own workspace dependencies that may conflict
# For now, we'll keep the integration minimal with optional features
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.23"
criterion = { version = "0.8", features = ["html_reports"] }
# Enable test-utils for examples and benchmarks
terraphim_multi_agent = { path = ".", features = ["test-utils"] }
[[bench]]
name = "agent_operations"
harness = false