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

18 lines
478 B
JSON
Raw Normal View History

2026-01-09 09:48:03 +08:00
{
"$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
}