b 
 bge-base-en-v1.5
Text Embeddings • baaiBAAI general embedding (Base) model that transforms any given text into a 768-dimensional vector
Parameters
Input
-  textone of-  0string min 1The text to embed 
-  1arrayBatch of text values to embed -  itemsstring min 1The text to embed 
 
-  
 
-  
Output
-  shapearray-  itemsnumber
 
-  
-  dataarrayEmbeddings of the requested text values -  itemsarrayFloating point embedding representation shaped by the embedding model -  itemsnumber
 
-  
 
-  
API Schemas
The following schemas are based on JSON Schema
{    "type": "object",    "properties": {        "text": {            "oneOf": [                {                    "type": "string",                    "description": "The text to embed",                    "minLength": 1                },                {                    "type": "array",                    "description": "Batch of text values to embed",                    "items": {                        "type": "string",                        "description": "The text to embed",                        "minLength": 1                    },                    "maxItems": 100                }            ]        }    },    "required": [        "text"    ]}{    "type": "object",    "contentType": "application/json",    "properties": {        "shape": {            "type": "array",            "items": {                "type": "number"            }        },        "data": {            "type": "array",            "description": "Embeddings of the requested text values",            "items": {                "type": "array",                "description": "Floating point embedding representation shaped by the embedding model",                "items": {                    "type": "number"                }            }        }    }}