rig/providers/together/mod.rs
1//! Together AI API client and Rig integration
2//!
3//! # Example
4//! ```
5//! use rig::providers::together_ai;
6//!
7//! let client = together_ai::Client::new("YOUR_API_KEY");
8//!
9//! let together_embedding_model = client.embedding_model(together_ai::EMBEDDING_V1);
10//! ```
11
12pub mod client;
13pub mod completion;
14pub mod embedding;
15pub mod streaming;
16
17pub use client::Client;
18pub use completion::*;
19pub use embedding::*;