gemini-ai 0.1.1689

A Rust based Gemini AI API, enabling access to advanced natural language processing and multimodal models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// use core::fmt;
// use std::{error, fmt::write};

// #[derive(Debug)]
// pub enum Error {
//     Text,
// }

// impl fmt::Display for Error {
//     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
//         match self {
//             Error::Text => write!(f, "text error Occurred"),
//         }
//     }
// }
// impl std::error::Error for Error {}