1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! # Gemini Rust SDK Prelude
//!
//! This module provides convenient imports for the most commonly used types
//! in the Gemini Rust SDK. Import everything with:
//!
//! ```rust
//! use adk_gemini::prelude::*;
//! ```
//!
//! This prelude includes only the essential types that most users will need.
//! For more specialized types, import them directly from the crate root or
//! their respective modules.
// Core client types
pub use crate::;
// Builders for creating requests
pub use crate::;
// Core data types for messages and content
pub use crate::;
// Main response types
pub use crate::;
// Configuration types
pub use crate::;
// Safety settings
pub use crate::;
// Function calling
pub use crate::;
// Batch and file handles (commonly used for async operations)
pub use crate::;
// Model discovery
pub use crate;