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

18 lines
478 B
JSON

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