langchainrust 0.2.2

A LangChain-inspired framework for building LLM applications in Rust. Supports OpenAI, Agents, Tools, Memory, Chains, and RAG.
1
2
3
4
5
6
7
8
9
10
// src/schema/messages/mod.rs
//! Message types for LangChain
//!
//! Based on Python: langchain/libs/core/langchain_core/messages/
//!
//! Messages are the inputs and outputs of chat models.

mod message;

pub use message::{Message, MessageType};