adk-gemini 0.7.0

Rust client for Google Gemini API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Embedding Module
//!
//! This module provides functionality for generating text embeddings using the Gemini API.
//! It includes support for both single and batch embedding operations with various task types
//! for optimization.

pub mod builder;
pub mod model;

pub use builder::EmbedBuilder;
pub use model::{
    BatchContentEmbeddingResponse, BatchEmbedContentsRequest, ContentEmbedding,
    ContentEmbeddingResponse, EmbedContentRequest, TaskType,
};