gemini_crate 0.1.0

A robust Rust client library for Google's Gemini AI API with built-in error handling, retry logic, and comprehensive model support
Documentation
//! A Rust client for the Google Gemini API.
#![warn(missing_docs)]

pub mod client;
pub mod config;
pub mod errors;
pub mod types;

#[cfg(test)]
mod tests {
    mod client_tests;
    mod integration_tests;

    #[test]
    fn it_works() {
        let result = 4;
        assert_eq!(result, 4);
    }
}