| 185 | } |
| 186 | |
| 187 | export interface EmbeddingResponse { |
| 188 | data: { embedding: number[]; index: number; object: string }[]; |
| 189 | model: string; |
| 190 | object: string; |
| 191 | usage: { |
| 192 | prompt_tokens: number; |
| 193 | total_tokens: number; |
| 194 | }; |
| 195 | } |
| 196 | |
| 197 | const OptionalStringZod = z.optional(z.string()); |
| 198 |
nothing calls this directly
no outgoing calls
no test coverage detected