models_dev/
lib.rs

1//! Simple models.dev API client.
2//!
3//! A minimal Rust client for interacting with the models.dev API,
4//! focusing on essential functionality with clean architecture.
5
6pub mod client;
7pub mod error;
8pub mod traits;
9pub mod types;
10
11// Re-export main types
12pub use client::ModelsDevClient;
13pub use error::ModelsDevError;
14pub use traits::ModelsDevAware;
15pub use types::{ModelsDevResponse, Provider, Model, ModelCost, ModelLimit, Modalities};