Type alias GoogleGeminiEmbedResponse

GoogleGeminiEmbedResponse: {
    model: string;
    predictions: [{
        embeddings: {
            values: number[];
        };
    }];
}

GoogleGeminiEmbedResponse: Structure for handling responses from the Google Gemini API embedding requests.

Type declaration

  • model: string
  • predictions: [{
        embeddings: {
            values: number[];
        };
    }]

Export