Bradley Ball
Results
2
comments of
Bradley Ball
@mrvoh sorry if this is a silly question but instead of llm = AzureOpenAI( deployment_name=llm_name, model_name=llm_name, temperature=0.75, model_kwargs={"api_type": "azure", "api_version": "2022-12-01"}, ) you have self.llm is this because you are...
It may have been the first attribute. Took it out, this worked for me. Thank you @mrvoh!!! llm = AzureOpenAI(deployment_name="text-davinci-003", model_name="text-davinci-003",model_kwargs={"api_type": "azure", "api_version": "2022-12-01"})