Files
huskies/server/src/llm/mod.rs
T

12 lines
534 B
Rust
Raw Normal View History

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