group-wbl/.venv/lib/python3.13/site-packages/schemas/embedding_functions/instructor.json
2026-01-09 09:12:25 +08:00

30 lines
765 B
JSON

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