talon-core 0.4.2

Core retrieval engine for Talon: hybrid search (BM25 + semantic + reranker), indexing, and graph-aware ranking over markdown corpora.
Documentation
1
2
3
4
5
6
7
8
9
//! Shared OpenAI-compatible chat-completions client.

mod client;
mod error;
mod types;

pub use client::{ChatClient, DEFAULT_CHAT_TIMEOUT, strip_code_fences};
pub use error::ChatError;
pub use types::{ChatCompletionOutput, ChatMessage, ReasoningEffort};