rainy-sdk 0.6.14

Official Rust SDK for Rainy API by Enosis Labs v0.6.14 - OpenAI/GPT-5 parity, native streaming events, and legacy static model cleanup
Documentation
//! # API Endpoints
//!
//! This module contains the various API endpoints that the `RainyClient` can interact with.
//! Each submodule corresponds to a specific area of the Rainy API.

/// Endpoint for chat completions.
pub mod chat;
/// Endpoint for checking the health of the API.
pub mod health;
/// Endpoint for managing API keys.
#[cfg(feature = "legacy")]
pub mod keys;
/// Endpoint for web search via Tavily.
pub mod search;
/// Endpoint for retrieving usage statistics.
#[cfg(feature = "legacy")]
pub mod usage;
/// Endpoint for managing user information.
#[cfg(feature = "legacy")]
pub mod user;