Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python: Fix pydantic alias issue (#10027)
### Motivation and Context fix #10026 ### Description This PR removes the alias as pydantic requires the usage of the alias when initializing the class not the original name which prevents this code from working. ```py cosmosdb_settings = AzureCosmosDBSettings.create( env_file_path=env_file_path, connection_string=cosmos_connstr, ) ``` ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [x] The code builds clean without any errors or warnings - [x] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [x] All unit tests pass, and I have added new tests where possible - [x] I didn't break anyone 😄
- Loading branch information