rig-core 0.35.0

An opinionated library for building LLM powered applications.
Documentation
//! Together AI API client and Rig integration
//!
//! # Example
//! ```
//! use rig::providers::together_ai;
//!
//! let client = together_ai::Client::new("YOUR_API_KEY");
//!
//! let together_embedding_model = client.embedding_model(together_ai::EMBEDDING_V1);
//! ```

pub mod client;
pub mod completion;
pub mod embedding;
pub mod streaming;

pub use client::Client;
pub use completion::*;
pub use embedding::*;