group-wbl/.venv/lib/python3.13/site-packages/schemas/embedding_functions/text2vec.json
2026-01-09 09:48:03 +08:00

18 lines
451 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Text2vec Embedding Function Schema",
"description": "Schema for the text2vec embedding function configuration",
"version": "1.0.0",
"type": "object",
"properties": {
"model_name": {
"type": "string",
"description": "Parameter model_name for the text2vec embedding function"
}
},
"required": [
"model_name"
],
"additionalProperties": false
}