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

31 lines
776 B
JSON
Raw Permalink Normal View History

2026-01-09 09:48:03 +08:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Open_clip Embedding Function Schema",
"description": "Schema for the open_clip embedding function configuration",
"version": "1.0.0",
"type": "object",
"properties": {
"model_name": {
"type": "string",
"description": "Parameter model_name for the open_clip embedding function"
},
"checkpoint": {
"type": "string",
"description": "Parameter checkpoint for the open_clip embedding function"
},
"device": {
"type": [
"string",
"null"
],
"description": "Parameter device for the open_clip embedding function"
}
},
"required": [
"model_name",
"checkpoint",
"device"
],
"additionalProperties": false
}