cognee-llm 0.1.1

LLM client abstraction (OpenAI-compatible) for the cognee AI-memory pipeline.
Documentation
1
2
3
4
5
6
7
8
//! LLM provider adapters.
//!
//! This module contains concrete implementations of the `Llm` trait
//! for various providers (OpenAI, Anthropic, Ollama, local models, etc.).

pub mod openai;

pub use openai::OpenAIAdapter;