Google Gemini · Schema

ContentEmbedding

A list of floats representing an embedding.

Agentic AIArtificial IntelligenceCode GenerationEmbeddingsGenerative AIImage GenerationLLMMachine LearningMultimodal

Properties

Name Type Description
values array The embedding values.
View JSON Schema on GitHub

JSON Schema

google-gemini-contentembedding-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentEmbedding",
  "title": "ContentEmbedding",
  "type": "object",
  "description": "A list of floats representing an embedding.",
  "properties": {
    "values": {
      "type": "array",
      "description": "The embedding values.",
      "items": {
        "type": "number",
        "format": "float"
      }
    }
  }
}