MCPcopy Create free account
hub / github.com/Superflows-AI/superflows / EmbeddingResponse

Interface EmbeddingResponse

lib/models.ts:187–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187export 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
197const OptionalStringZod = z.optional(z.string());
198

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected