tdln-brain 0.2.0

Deterministic cognitive layer for LogLine OS: context → strictly-parsed TDLN intent.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! LLM provider implementations.
//!
//! Each provider implements [`NeuralBackend`] for different LLM services.

pub mod local;

#[cfg(feature = "providers-openai")]
#[cfg_attr(docsrs, doc(cfg(feature = "providers-openai")))]
pub mod openai;

#[cfg(feature = "providers-anthropic")]
#[cfg_attr(docsrs, doc(cfg(feature = "providers-anthropic")))]
pub mod anthropic;