{ "$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 }