llmy-cli 0.16.3

All-in-one LLM utilities.
[package]
name = "llmy-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
readme.workspace = true
description.workspace = true
homepage.workspace = true
repository.workspace = true

[[bin]]
name = "llmy"
path = "src/main.rs"

[dependencies]
clap = {workspace = true, features = ["derive"]}
async-openai = {workspace = true, features = ["chat-completion-types"]}
serde = {workspace = true, features = ["derive"]}
serde_json.workspace = true
chrono.workspace = true
llmy-clap.workspace = true
llmy-agent.workspace = true
rmcp = {workspace = true, features = ["server"]}
llmy-agent-tools.workspace = true
llmy-harness.workspace = true
llmy-client.workspace = true
llmy-tokenizer.workspace = true
rust_decimal = { workspace = true, features = ["macros"] }
tokio = {workspace = true, features = ["full"]}
tracing.workspace = true
color-eyre.workspace = true
dotenvy.workspace = true
rustyline.workspace = true
shlex.workspace = true
tracing-subscriber = {workspace = true, features = ["env-filter"]}

[features]
# Off by default. The CLI binary's `--memory` flag becomes a runtime
# error unless `memory-embed-search` is enabled at build time.
default = []

embed = ["llmy-agent-tools/embed", "llmy-harness/embed"]

memory-embed-search = [
    "llmy-agent-tools/memory-embed-search",
    "llmy-harness/memory-embed-search",
    "embed",
]

hf-hub-rustls-tls = ["llmy-agent-tools/hf-hub-rustls-tls", "llmy-harness/hf-hub-rustls-tls"]
hf-hub-native-tls = ["llmy-agent-tools/hf-hub-native-tls", "llmy-harness/hf-hub-native-tls"]
ort-download-binaries-rustls-tls = ["llmy-agent-tools/ort-download-binaries-rustls-tls", "llmy-harness/ort-download-binaries-rustls-tls"]
ort-download-binaries-native-tls = ["llmy-agent-tools/ort-download-binaries-native-tls", "llmy-harness/ort-download-binaries-native-tls"]