anchor-chain 0.4.2

A statically typed async framework for building LLM-based applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Contains nodes that are designed to work with various LLM models.
//!
//! The nodes in this module are designed to work with specific LLM models and
//! provide a common interface for interacting with them. This allows developers
//! to easily integrate different models into their processing chains without
//! having to worry about the specific details of each model's API.

pub mod claude_3;
pub mod embedding_model;
pub mod ollama;
pub mod openai;