Rust reverse-proxy for multi-node mistral.rs inference clusters. Includes crate structure (cortex-core, cortex-gateway, cortex-agent, cortex-cli), config loading, OpenAI/Anthropic translation stubs, model routing, eviction, polling, and streaming proxy scaffolding. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
437 B
TOML
21 lines
437 B
TOML
[package]
|
|
name = "cortex-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "cortex"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
cortex-core.workspace = true
|
|
cortex-gateway.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
anyhow.workspace = true
|
|
reqwest.workspace = true
|
|
serde_json.workspace = true
|
|
clap = { version = "4", features = ["derive"] }
|