Files
huskies/server/src/llm/mod.rs
T
2026-04-29 10:47:18 +00:00

12 lines
534 B
Rust

//! LLM subsystem — chat orchestration, prompts, OAuth, and provider integrations.
/// Chat session orchestration — manages multi-turn LLM conversations with streaming.
pub mod chat;
/// OAuth credential flow for LLM API access (e.g. Anthropic OAuth PKCE).
pub mod oauth;
/// System prompt templates for agent and onboarding sessions.
pub mod prompts;
/// LLM provider implementations (Anthropic, Claude Code, Ollama).
pub mod providers;
/// Core LLM data types: `Message`, `Role`, `ToolCall`, and `ModelProvider`.
pub mod types;