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

25 lines
706 B
JSON
Raw Permalink Normal View History

2026-01-09 09:48:03 +08:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "HuggingFace Embedding Server Schema",
"description": "Schema for the HuggingFace embedding server configuration",
"version": "1.0.0",
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The URL of the HuggingFace Embedding Server"
},
"api_key_env_var": {
"type": [
"string",
"null"
],
"description": "The environment variable name that contains your API key for the HuggingFace API"
}
},
"required": [
"url"
],
"additionalProperties": false
}