Amirhossein Yousefiramandi
Amirhossein Yousefiramandi
I tried to use the following code: lm = dspy.AzureOpenAI(model='gpt-3.5-turbo-16k', temperature=0.5, api_provider='azure', api_key='', api_base='', api_version="", deployment_id='') dspy.configure(lm=lm) gpt4T = dspy.AzureOpenAI(model='gpt-4-32k', model_type='chat', api_provider='azure', api_key='', api_base='', api_version="")
I tried with openai 0.28.1 and it is working now
the thing is, I just want to work with betas, and I think there must be a scale factor for these parameters, could you kindly help me with how can...