self.llm = AzureOpenAI( model=self.deployment_model, engine=self.deployment_name, temperature=self.temperature, max_tokens=self.num_output) ............ agent = OpenAIAgent.from_tools( tools=tools, llm=self.llm, verbose=True)