Yash N. Shah

Results 1 comments of Yash N. Shah

@mehulambastha Use "model" key instead of "model_name". It will work. llm_config = { "deployment_name": self.settings.azure_openai_chat_deployment, "api_key": self.settings.azure_openai_api_key, "azure_endpoint": self.settings.azure_openai_endpoint, "api_version": self.settings.azure_openai_api_version, "temperature": 0.1, "max_tokens": 4000, "model": self.settings.azure_openai_chat_deployment } print(llm_config) return...