Some checks failed
CI / CUDA type-check (push) Failing after 30s
build-prerelease / Resolve version stamps (push) Successful in 45s
CI / Format (push) Successful in 32s
build-prerelease / Build neuron-blackwell (push) Failing after 31s
build-prerelease / Build neuron-ada (push) Failing after 34s
build-prerelease / Build neuron-ampere (push) Failing after 38s
build-prerelease / Package helexa-neuron-ada RPM (push) Has been skipped
build-prerelease / Package helexa-neuron-ampere RPM (push) Has been skipped
build-prerelease / Package helexa-neuron-blackwell RPM (push) Has been skipped
CI / Clippy (push) Failing after 1m11s
build-prerelease / Build cortex binary (push) Successful in 3m47s
CI / Test (push) Successful in 5m32s
CI / Build cortex SRPM (push) Has been skipped
CI / Publish cortex to COPR (push) Has been skipped
build-prerelease / Package cortex RPM (push) Successful in 1m22s
build-prerelease / Publish to rpm.lair.cafe (unstable) (push) Has been skipped
CI / Build neuron SRPM (push) Has been skipped
CI / Publish neuron to COPR (push) Has been skipped
CI / Bump version in source (push) Has been skipped
helexa is the project; cortex (per-operator control plane / LLM proxy) and neuron (per-host LLM harness) are its components. The Gitea repo is now helexa/helexa. Update repository URLs in Cargo metadata, RPM specs, and docs; make the CI changelog push URL rename-proof via the github.repository context; reframe README.md and CLAUDE.md around the project name. Binary, package, service, and config-path names are unchanged. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
49 lines
2.0 KiB
TOML
49 lines
2.0 KiB
TOML
[package]
|
|
name = "helexa-acp"
|
|
version = "0.1.16"
|
|
edition = "2024"
|
|
license = "Apache-2.0"
|
|
repository = "https://git.lair.cafe/helexa/helexa"
|
|
description = """
|
|
Agent Client Protocol bridge for the helexa self-hosted LLM stack.
|
|
Speaks ACP to ACP-compatible editor clients (Zed, etc.) and forwards
|
|
the conversation to any OpenAI-compatible HTTP endpoint — defaulting
|
|
to cortex (helexa's reverse-proxy / fleet gateway).
|
|
"""
|
|
|
|
# This crate is intentionally self-contained — no dependencies on other
|
|
# workspace crates (cortex-core, cortex-gateway, neuron). The goal is
|
|
# a painless migration to a dedicated GitHub repo in the future if the
|
|
# project grows beyond helexa's needs. All deps are crates.io.
|
|
[dependencies]
|
|
# `unstable_session_model` flips on the SessionModelState type and the
|
|
# session/set_model RPC the model-picker dropdown in Zed needs. The
|
|
# feature is upstream-marked unstable; we accept that risk because the
|
|
# model picker is core UX and the alternative (rolling our own
|
|
# extension method) drifts further from spec each time it moves.
|
|
agent-client-protocol = { version = "0.12", features = ["unstable_session_model"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "io-util", "process", "signal"] }
|
|
reqwest = { version = "0.12", features = ["json", "stream", "rustls-tls"], default-features = false }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
anyhow = "1"
|
|
thiserror = "2"
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
tokio-stream = "0.1"
|
|
tokio-util = { version = "0.7", features = ["rt"] }
|
|
eventsource-stream = "0.2"
|
|
async-stream = "0.3"
|
|
url = { version = "2", features = ["serde"] }
|
|
# Already transitively pulled via the ACP SDK; declared directly so we
|
|
# can format ISO 8601 timestamps for `SessionInfo.updated_at` in the
|
|
# session/list response.
|
|
chrono = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
[[bin]]
|
|
name = "helexa-acp"
|
|
path = "src/main.rs"
|