-
Notifications
You must be signed in to change notification settings - Fork 6
Description
0.1.3 Adding JSON with async true results in the following error; the same JSON can be added successfully with async false.
{"args":{},"error_type":"ToolProviderCredentialValidationError","message":"BaseEmbedderConfig.init() got an unexpected keyword argument 'base_url'"}
{
"provider": "azure_openai",
"config": {
"model": "your-deployment-name",
"temperature": 0.1,
"max_tokens": 256,
"azure_kwargs": {
"azure_deployment": "your-deployment-name",
"api_version": "version-to-use",
"azure_endpoint": "your-api-base-url",
"api_key": "your-api-key",
"default_headers": {
"CustomHeader": "your-custom-header"
}
}
}
}
{
"provider": "azure_openai",
"config": {
"model": "your-deployment-name",
"azure_kwargs": {
"api_version": "version-to-use",
"azure_deployment": "your-deployment-name",
"azure_endpoint": "your-api-base-url",
"api_key": "your-api-key",
"default_headers": {
"CustomHeader": "your-custom-header"
}
}
}
}
Is the source code of version 0.1.3 not open source?