rig-cat 0.1.2

LLM agent framework built on comp-cat-rs: typed effects, no async, categorical foundations
Documentation
1
2
3
4
5
6
7
8
//! LLM provider implementations.
//!
//! Each submodule implements `CompletionModel` and/or `EmbeddingModel`
//! for a specific provider, using `ureq` for blocking HTTP and
//! `Io::suspend` for effect wrapping.

pub mod openai;
pub mod anthropic;