just-llm-client
Just a lightweight, composable, and minimal LLM client — not an agent framework.
Quick start
# Cargo.toml
[]
= "0.1"
= { = "1", = ["macros", "rt-multi-thread"] }
use ;
async
Feature flags
| Feature | Default | Description |
|---|---|---|
deepseek |
yes | Enables the [just-deepseek] backend |
openai-compat |
yes | Enables the [just-openai-compat] backend |
Both providers are enabled by default. Disable default features and enable only what you need:
[]
= { = "0.1", = false, = ["deepseek"] }
Ecosystem
| Crate | Description |
|---|---|
| just-deepseek | DeepSeek API client + wire-level types |
| just-openai-compat | OpenAI-compatible API client + wire-level types |
| just-common | Shared HTTP transport and error types |