group-wbl/.venv/lib/python3.13/site-packages/schemas/embedding_functions/base_schema.json

27 lines
734 B
JSON
Raw Normal View History

2026-01-09 09:48:03 +08:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Embedding Function Base Schema",
"description": "Base schema for all embedding functions in Chroma",
"type": "object",
"properties": {
"version": {
"type": "string",
"description": "Schema version for the embedding function"
},
"name": {
"type": "string",
"description": "Name of the embedding function"
},
"config": {
"type": "object",
"description": "Configuration parameters for the embedding function"
}
},
"required": [
"version",
"name",
"config"
],
"additionalProperties": false
}