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

28 lines
836 B
JSON
Raw Permalink Normal View History

2026-01-09 09:48:03 +08:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Transformers Embedding Function Schema",
"description": "Schema for the Transformers embedding function configuration",
"version": "1.0.0",
"type": "object",
"properties": {
"model": {
"type": "string",
"description": "Identifier of the SentenceTransformer model"
},
"revision": {
"type": "string",
"description": "Specific model version to use (can be a branch, tag name, or commit id)"
},
"quantized": {
"type": "boolean",
"description": "Whether to load the 8-bit quantized version of the model"
}
},
"required": [
"model",
"revision",
"quantized"
],
"additionalProperties": false
}