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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
//! Python LiteLLM compatible embedding API
//!
//! This module provides a Python LiteLLM-style API for generating embeddings.
//! It serves as the main entry point for embedding functionality, providing a unified
//! interface to call embedding APIs from multiple providers.
//!
//! # Example
//!
//! ```rust,no_run
//! use litellm_rs::core::embedding::{embedding, embed_text, embed_texts, cosine_similarity, EmbeddingOptions};
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! // Simple embedding with default options
//! let response = embedding(
//! "openai/text-embedding-ada-002",
//! "Hello, world!",
//! None,
//! ).await?;
//!
//! // Get embeddings for a single text
//! let vector = embed_text("text-embedding-3-small", "Hello").await?;
//!
//! // Get embeddings for multiple texts
//! let vectors = embed_texts("text-embedding-3-small", &["Hello", "World"]).await?;
//!
//! // Calculate similarity
//! let similarity = cosine_similarity(&vectors[0], &vectors[1]);
//!
//! // With custom options
//! let options = EmbeddingOptions::new()
//! .with_dimensions(256)
//! .with_api_key("sk-...");
//!
//! let response = embedding(
//! "text-embedding-3-small",
//! vec!["text1", "text2"],
//! Some(options),
//! ).await?;
//! # Ok(())
//! # }
//! ```
// Re-export main types
pub use ;
pub use EmbeddingOptions;
pub use ;
pub use EmbeddingInput;
// Re-export response types from core types
pub use crate;
/// LiteLLM Error type alias
pub type LiteLLMError = crateGatewayError;
/// Create embeddings using any supported provider
///
/// This is the main entry point for generating embeddings. It supports multiple
/// providers through model prefixes (e.g., "openai/text-embedding-ada-002").
///
/// # Arguments
///
/// * `model` - Model identifier, optionally prefixed with provider (e.g., "openai/text-embedding-3-small")
/// * `input` - Input text(s) to embed (can be a single string, &str, or Vec of strings)
/// * `options` - Optional configuration for the embedding request
///
/// # Returns
///
/// Returns an `EmbeddingResponse` containing the embedding vectors and usage information.
///
/// # Errors
///
/// Returns an error if:
/// - No provider is configured for the specified model
/// - The API request fails
/// - The response cannot be parsed
///
/// # Example
///
/// ```rust,no_run
/// use litellm_rs::core::embedding::{embedding, EmbeddingOptions};
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// // Simple usage
/// let response = embedding("text-embedding-3-small", "Hello, world!", None).await?;
///
/// // With options
/// let options = EmbeddingOptions::new().with_dimensions(256);
/// let response = embedding("text-embedding-3-small", "Hello", Some(options)).await?;
///
/// // Multiple texts
/// let response = embedding("text-embedding-3-small", vec!["Hello", "World"], None).await?;
/// # Ok(())
/// # }
/// ```
pub async
/// Async version of embedding (for compatibility, all Rust async is the same)
pub async
/// Embed a single text and return the embedding vector
///
/// This is a convenience function for embedding a single text and extracting
/// the embedding vector directly.
///
/// # Arguments
///
/// * `model` - Model identifier
/// * `text` - Text to embed
///
/// # Returns
///
/// Returns the embedding vector as `Vec<f32>`.
///
/// # Example
///
/// ```rust,no_run
/// use litellm_rs::core::embedding::embed_text;
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let vector = embed_text("text-embedding-3-small", "Hello, world!").await?;
/// println!("Embedding dimension: {}", vector.len());
/// # Ok(())
/// # }
/// ```
pub async
/// Embed multiple texts and return their embedding vectors
///
/// This is a convenience function for embedding multiple texts at once
/// and extracting the embedding vectors directly.
///
/// # Arguments
///
/// * `model` - Model identifier
/// * `texts` - Slice of texts to embed
///
/// # Returns
///
/// Returns a vector of embedding vectors, one for each input text.
///
/// # Example
///
/// ```rust,no_run
/// use litellm_rs::core::embedding::{embed_texts, cosine_similarity};
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let vectors = embed_texts("text-embedding-3-small", &["Hello", "World"]).await?;
/// let similarity = cosine_similarity(&vectors[0], &vectors[1]);
/// println!("Similarity: {}", similarity);
/// # Ok(())
/// # }
/// ```
pub async
/// Embed texts with custom options and return embedding vectors
///
/// Like `embed_texts` but allows passing custom options.
///
/// # Arguments
///
/// * `model` - Model identifier
/// * `texts` - Slice of texts to embed
/// * `options` - Embedding options (dimensions, encoding format, etc.)
///
/// # Returns
///
/// Returns a vector of embedding vectors, one for each input text.
pub async