rig/providers/openrouter/mod.rs
1//! OpenRouter Inference API client and Rig integration
2//!
3//! # Example
4//! ```
5//! use rig::providers::openrouter;
6//!
7//! let client = openrouter::Client::new("YOUR_API_KEY");
8//!
9//! let llama_3_1_8b = client.completion_model(openrouter::LLAMA_3_1_8B);
10//! ```
11
12pub mod client;
13pub mod completion;
14pub mod streaming;
15
16pub use client::*;
17pub use completion::*;