18 lines
451 B
JSON
18 lines
451 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Text2vec Embedding Function Schema",
|
|
"description": "Schema for the text2vec embedding function configuration",
|
|
"version": "1.0.0",
|
|
"type": "object",
|
|
"properties": {
|
|
"model_name": {
|
|
"type": "string",
|
|
"description": "Parameter model_name for the text2vec embedding function"
|
|
}
|
|
},
|
|
"required": [
|
|
"model_name"
|
|
],
|
|
"additionalProperties": false
|
|
}
|