huskies: merge 858

This commit is contained in:
dave
2026-04-29 10:41:32 +00:00
parent be5db846cc
commit 11d111360d
79 changed files with 265 additions and 0 deletions
+5
View File
@@ -1,6 +1,11 @@
//! 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;