Nightly Build / build (push) Successful in 6m59s
- Add StreamDelta(SseDecoder) framing shared by OpenAI/Anthropic - OpenAiClient: stream=true + reasoning_content deltas, index-based tool_calls accumulation, usage from final chunk - AnthropicClient: message_start/content_block_*/message_delta events, thinking_delta->reasoning, input_json_delta->tool input - TokenDelta ServerEvent variant wired through ChatHub + WS broadcast - Frontend throttled flush (~15 Hz), pending bubble mutate-in-place, reasoning as collapsed-by-default <details> - Drop streaming bubble on error/llm_failed/model_fallback - i18n: chat.reasoning key added to en/fr/it
194 lines
7.0 KiB
Rust
194 lines
7.0 KiB
Rust
use async_trait::async_trait;
|
|
use serde_json::Value;
|
|
use tokio::sync::mpsc;
|
|
|
|
/// A single message in a conversation.
|
|
#[derive(Debug, Clone)]
|
|
pub struct Message {
|
|
pub role: Role,
|
|
pub content: String,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub enum Role {
|
|
System,
|
|
User,
|
|
Assistant,
|
|
}
|
|
|
|
impl Message {
|
|
pub fn system(content: impl Into<String>) -> Self {
|
|
Self { role: Role::System, content: content.into() }
|
|
}
|
|
|
|
pub fn user(content: impl Into<String>) -> Self {
|
|
Self { role: Role::User, content: content.into() }
|
|
}
|
|
|
|
pub fn assistant(content: impl Into<String>) -> Self {
|
|
Self { role: Role::Assistant, content: content.into() }
|
|
}
|
|
}
|
|
|
|
/// Options for a single chat completion request.
|
|
#[derive(Debug, Clone)]
|
|
pub struct ChatOptions {
|
|
pub model: String,
|
|
pub max_tokens: Option<u32>,
|
|
pub temperature: Option<f32>,
|
|
/// Session/stack IDs for request logging. Set by the LLM loop; ignored by
|
|
/// providers — only the logging wrapper reads them.
|
|
pub session_id: Option<i64>,
|
|
pub stack_id: Option<i64>,
|
|
/// The authenticated user driving this request. Correlates the metadata row
|
|
/// in `system.db` with the payload in `{userid}.db`. Logging-only.
|
|
pub user_id: Option<String>,
|
|
/// UUID correlating the metadata row (`llm_requests`) with the payload row
|
|
/// (`llm_request_payloads`). Generated by the LLM loop before the call.
|
|
/// Logging-only.
|
|
pub request_id: Option<String>,
|
|
}
|
|
|
|
/// Raw HTTP metadata captured during a provider call.
|
|
/// Sensitive header values (api_key) are redacted before storage.
|
|
#[derive(Debug, Default)]
|
|
pub struct LlmRawMeta {
|
|
pub request_headers: Option<Value>,
|
|
pub request_body: Option<Value>,
|
|
pub response_headers: Option<Value>,
|
|
pub response_body: Option<Value>,
|
|
}
|
|
|
|
/// The response from a chat completion (text only).
|
|
#[derive(Debug, Clone)]
|
|
pub struct ChatResponse {
|
|
pub content: String,
|
|
pub input_tokens: Option<u32>,
|
|
pub output_tokens: Option<u32>,
|
|
/// True when the model stopped due to hitting the token limit.
|
|
pub truncated: bool,
|
|
/// Chain-of-thought produced by reasoning models (e.g. DeepSeek thinking mode).
|
|
/// Must be echoed back in the assistant message on subsequent turns.
|
|
pub reasoning_content: Option<String>,
|
|
/// Tokens served from the provider's prompt cache (Anthropic: cache_read_input_tokens,
|
|
/// OpenAI: prompt_tokens_details.cached_tokens). None when the provider does not
|
|
/// report cache metrics.
|
|
pub cache_read_tokens: Option<u32>,
|
|
/// Tokens written into the provider's prompt cache (Anthropic only:
|
|
/// cache_creation_input_tokens). None for providers that do not expose this.
|
|
pub cache_creation_tokens: Option<u32>,
|
|
/// Cost of the request in USD, when the provider reports it (OpenRouter
|
|
/// returns it under `usage.cost`). None for providers that do not bill
|
|
/// per-request or do not expose the figure.
|
|
pub cost: Option<f64>,
|
|
}
|
|
|
|
/// A single tool call requested by the LLM.
|
|
#[derive(Debug, Clone)]
|
|
pub struct ToolCall {
|
|
pub id: String,
|
|
pub name: String,
|
|
pub arguments: Value,
|
|
}
|
|
|
|
/// An incremental piece of a streaming completion, pushed by providers that
|
|
/// support SSE streaming. Purely best-effort UI feedback: the final `LlmTurn`
|
|
/// remains the authoritative result.
|
|
#[derive(Debug, Clone)]
|
|
pub enum StreamDelta {
|
|
/// Visible answer text.
|
|
Text(String),
|
|
/// Chain-of-thought / reasoning tokens (thinking models).
|
|
Reasoning(String),
|
|
}
|
|
|
|
/// Result of one LLM turn when tools are available.
|
|
#[derive(Debug)]
|
|
pub enum LlmTurn {
|
|
Message(ChatResponse),
|
|
ToolCalls {
|
|
content: String,
|
|
calls: Vec<ToolCall>,
|
|
input_tokens: Option<u32>,
|
|
output_tokens: Option<u32>,
|
|
reasoning_content: Option<String>,
|
|
cache_read_tokens: Option<u32>,
|
|
cache_creation_tokens: Option<u32>,
|
|
cost: Option<f64>,
|
|
},
|
|
}
|
|
|
|
/// Stateless LLM client. Implementations hold only connection config (base URL,
|
|
/// API key). No memory, no database, no session state.
|
|
#[async_trait]
|
|
pub trait ChatbotClient: Send + Sync {
|
|
async fn chat(
|
|
&self,
|
|
messages: &[Message],
|
|
options: &ChatOptions,
|
|
) -> anyhow::Result<ChatResponse>;
|
|
|
|
/// Extracts the request cost in USD from a provider's raw JSON response,
|
|
/// when the provider reports it. OpenRouter (and other OpenAI-compatible
|
|
/// gateways) return it under `usage.cost`; the default reads that path and
|
|
/// yields None when absent. Providers with a different shape override this.
|
|
fn extract_cost(&self, response: &Value) -> Option<f64> {
|
|
response["usage"]["cost"].as_f64()
|
|
}
|
|
|
|
/// Chat with tool support. Default implementation ignores tools and falls
|
|
/// back to `chat()`.
|
|
async fn chat_with_tools(
|
|
&self,
|
|
messages: &[Value],
|
|
tools: &[Value],
|
|
options: &ChatOptions,
|
|
) -> anyhow::Result<LlmTurn> {
|
|
let simple: Vec<Message> = messages
|
|
.iter()
|
|
.filter_map(|m| {
|
|
let role = m["role"].as_str()?;
|
|
let content = m["content"].as_str().unwrap_or("").to_string();
|
|
match role {
|
|
"system" => Some(Message::system(content)),
|
|
"user" => Some(Message::user(content)),
|
|
"assistant" => Some(Message::assistant(content)),
|
|
_ => None,
|
|
}
|
|
})
|
|
.collect();
|
|
let _ = tools;
|
|
let resp = self.chat(&simple, options).await?;
|
|
Ok(LlmTurn::Message(resp))
|
|
}
|
|
|
|
/// Like `chat_with_tools` but also returns raw HTTP metadata for logging.
|
|
/// Providers that make real HTTP calls should override this.
|
|
async fn chat_with_tools_raw(
|
|
&self,
|
|
messages: &[Value],
|
|
tools: &[Value],
|
|
options: &ChatOptions,
|
|
) -> anyhow::Result<(LlmTurn, Option<LlmRawMeta>)> {
|
|
self.chat_with_tools(messages, tools, options).await.map(|t| (t, None))
|
|
}
|
|
|
|
/// Like `chat_with_tools_raw`, but the provider may push incremental
|
|
/// [`StreamDelta`]s into `delta_tx` as tokens arrive (SSE streaming).
|
|
/// Senders should use `try_send` and drop deltas when the channel is full —
|
|
/// streaming is best-effort UI feedback and must never backpressure the
|
|
/// HTTP read. The returned `LlmTurn` is always the complete, authoritative
|
|
/// result. The default ignores the channel and falls back to the buffered
|
|
/// call, so providers without streaming behave exactly as before.
|
|
async fn chat_with_tools_raw_streaming(
|
|
&self,
|
|
messages: &[Value],
|
|
tools: &[Value],
|
|
options: &ChatOptions,
|
|
delta_tx: mpsc::Sender<StreamDelta>,
|
|
) -> anyhow::Result<(LlmTurn, Option<LlmRawMeta>)> {
|
|
let _ = delta_tx;
|
|
self.chat_with_tools_raw(messages, tools, options).await
|
|
}
|
|
}
|