langchainrust 0.2.17

A LangChain-inspired framework for building LLM applications in Rust. Supports OpenAI, Agents, Tools, Memory, Chains, RAG, BM25, Hybrid Retrieval, LangGraph, HyDE, Reranking, MultiQuery, and native Function Calling.
1
2
3
4
5
6
7
8
// src/prompts/mod.rs
//! Prompt template module.

mod chat_prompt_template;
mod prompt_template;

pub use chat_prompt_template::ChatPromptTemplate;
pub use prompt_template::PromptTemplate;