Helicone · Schema
HeliconeEventVectorDB
AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management
Properties
| Name | Type | Description |
|---|---|---|
| _type | string | |
| operation | string | |
| text | string | |
| vector | array | |
| topK | number | |
| filter | object | |
| databaseName | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HeliconeEventVectorDB",
"title": "HeliconeEventVectorDB",
"properties": {
"_type": {
"type": "string",
"enum": [
"vector_db"
],
"nullable": false
},
"operation": {
"type": "string",
"enum": [
"search",
"insert",
"delete",
"update"
]
},
"text": {
"type": "string"
},
"vector": {
"items": {
"type": "number",
"format": "double"
},
"type": "array"
},
"topK": {
"type": "number",
"format": "double"
},
"filter": {
"additionalProperties": false,
"type": "object"
},
"databaseName": {
"type": "string"
}
},
"required": [
"_type",
"operation"
],
"type": "object",
"additionalProperties": {}
}