rig-core 0.37.0

An opinionated library for building LLM powered applications.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Model metadata returned by providers with model listing support.
//!
//! Use [`ModelList`] for provider responses and [`Model`] for each advertised
//! model entry. Provider clients expose listing through
//! [`ModelListingClient`](crate::client::ModelListingClient) when their
//! capabilities declare support.

pub mod listing;

pub use listing::{Model, ModelList, ModelListingError};