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

28 lines
731 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Amazon Bedrock Embedding Function Schema",
"description": "Schema for the Amazon Bedrock embedding function configuration",
"version": "1.0.0",
"type": "object",
"properties": {
"session_args": {
"type": "object",
"description": "The arguments to pass to the boto3 session"
},
"model_name": {
"type": "string",
"description": "The name of the model to use for embeddings"
},
"kwargs": {
"type": "object",
"description": "Additional arguments to pass to the Amazon Bedrock client"
}
},
"required": [
"session_args",
"model_name",
"kwargs"
],
"additionalProperties": false
}