-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathembedding_model.rs
More file actions
138 lines (117 loc) · 4.52 KB
/
Copy pathembedding_model.rs
File metadata and controls
138 lines (117 loc) · 4.52 KB
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
//! The `EmbeddingModel` trait — the provider-facing interface for text embeddings.
//!
//! Aligned with Vercel AI SDK `EmbeddingModelV4`
//! (`reference/ai/packages/provider/src/embedding-model/v4/`).
//!
//! Providers implement [`EmbeddingModel::do_embed`]; users never call it
//! directly.
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use ts_rs::TS;
use crate::error::AiMuxError;
use crate::shared::{
AbortSignal, SharedHeaders, SharedProviderMetadata, SharedProviderOptions, Warning,
};
/// A single embedding vector.
///
/// The TS spec types this as `Array<number>`; we use `f32` because that is the
/// de-facto precision returned by every major embedding provider (OpenAI,
/// Voyage, Cohere, …) and halves the memory footprint of `f64`.
pub type Embedding = Vec<f32>;
/// Options passed to [`EmbeddingModel::do_embed`].
///
/// Aligned with V4 `EmbeddingModelV4CallOptions`.
#[derive(Debug, Clone, Serialize, Deserialize, TS)]
#[ts(export)]
pub struct EmbeddingCallOptions {
/// List of text values to generate embeddings for.
pub values: Vec<String>,
/// Abort signal for cancelling the operation.
#[serde(skip)]
#[ts(skip)]
pub abort_signal: Option<AbortSignal>,
/// Additional provider-specific options, keyed by provider name.
pub provider_options: Option<SharedProviderOptions>,
/// Additional HTTP headers to send with the request.
pub headers: Option<SharedHeaders>,
}
impl EmbeddingCallOptions {
/// Create options for a single value with everything else unset.
pub fn new(value: impl Into<String>) -> Self {
Self {
values: vec![value.into()],
abort_signal: None,
provider_options: None,
headers: None,
}
}
}
/// Token usage for an embedding call. Embeddings only report input tokens.
#[derive(Debug, Clone, Default, Serialize, Deserialize, TS)]
#[ts(export)]
pub struct EmbeddingUsage {
/// Number of input tokens consumed.
pub tokens: u32,
}
/// The result of [`EmbeddingModel::do_embed`].
///
/// Aligned with V4 `EmbeddingModelV4Result`.
#[derive(Debug, Clone, Serialize, Deserialize, TS)]
#[ts(export)]
pub struct EmbeddingResult {
/// Generated embeddings, in the same order as the input `values`.
pub embeddings: Vec<Embedding>,
/// Token usage (input tokens only).
pub usage: Option<EmbeddingUsage>,
/// Additional provider-specific metadata.
pub provider_metadata: Option<SharedProviderMetadata>,
/// Optional response information for debugging.
pub response: Option<EmbeddingResponse>,
/// Warnings for the call, e.g. unsupported settings.
pub warnings: Vec<Warning>,
}
/// Debugging response info specific to embedding calls.
#[derive(Debug, Clone, Default, Serialize, Deserialize, TS)]
#[ts(export)]
pub struct EmbeddingResponse {
/// Response headers.
pub headers: Option<SharedHeaders>,
/// The response body (opaque JSON).
pub body: Option<serde_json::Value>,
}
/// The unified embedding model trait (provider-facing).
///
/// Aligned with V4 `EmbeddingModelV4`. Specific to text embeddings.
///
/// # Implementation notes
///
/// - `do_embed` is **not** user-facing API.
/// - `embeddings` in the result must be in the same order as the input
/// `values`.
/// - Providers that cannot serve a request in a single call because
/// `values.len() > max_embeddings_per_call()` should batch internally only
/// when [`supports_parallel_calls`](Self::supports_parallel_calls) returns
/// `true`; otherwise they should return an error.
#[async_trait]
pub trait EmbeddingModel: Send + Sync {
/// Specification version (always `"v4"`).
fn specification_version(&self) -> &'static str {
"v4"
}
/// Provider name, e.g. `"openai"`.
fn provider(&self) -> &str;
/// Provider-specific model ID, e.g. `"text-embedding-3-small"`.
fn model_id(&self) -> &str;
/// Limit of how many embeddings can be generated in a single API call.
///
/// `None` means the model has no fixed limit. The TS spec allows this to
/// be a promise/function; in Rust we resolve it to a plain `Option<u32>`.
fn max_embeddings_per_call(&self) -> Option<u32>;
/// `true` if the model can handle multiple embedding calls in parallel.
fn supports_parallel_calls(&self) -> bool;
/// Generate a list of embeddings for the given input text.
///
/// Naming: the `do_` prefix prevents accidental direct usage by users.
async fn do_embed(&self, options: &EmbeddingCallOptions)
-> Result<EmbeddingResult, AiMuxError>;
}