meme 0.7.0

Long term memory for AI agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! LLM client abstraction — OpenAI-compatible async interface.

mod client;
mod json;
pub(crate) mod prompt;
mod schema;

pub(crate) use client::{ChatOptions, LlmClient, Message};
pub(crate) use schema::{
    AnswerResponse, CompletenessResponse, ExtractedEntry, ExtractionResponse,
    MissingQueriesResponse, QueryPlan, ReExtractResponse, ReconcileResponse,
};