Skip to repository content27 lines · 541 B · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T03:58:45.517Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
Cargo.toml
1[package]
2name = "cloud_llm_client"
3version = "0.1.0"
4publish.workspace = true
5edition.workspace = true
6license = "Apache-2.0"
7
8[features]
9test-support = []
10predict-edits = ["dep:zeta_prompt"]
11
12[lints]
13workspace = true
14
15[lib]
16path = "src/cloud_llm_client.rs"
17
18[dependencies]
19anyhow.workspace = true
20serde = { workspace = true, features = ["derive", "rc"] }
21serde_json.workspace = true
22strum = { workspace = true, features = ["derive"] }
23uuid = { workspace = true, features = ["serde"] }
24zeta_prompt = { workspace = true, optional = true }
25
26
27