-
Notifications
You must be signed in to change notification settings - Fork 953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Azure OpenAI APIs? #96
Comments
Is this how you set it up? I also got the same error. Moreover, I can't find the model name config parameter for Agent, even the ModelSettings class can't be found.
|
Yes it does: external_client = AsyncOpenAI(
api_key="EXTERNAL_API_KEY",
base_url="https://api.external.com/v1/",
)
spanish_agent = Agent(
name="Spanish agent",
instructions="You only speak Spanish.",
model=OpenAIChatCompletionsModel(
model="EXTERNAL_MODEL_NAME",
openai_client=external_client,
),
model_settings=ModelSettings(temperature=0.5),
) |
I am attempting to get the following approach to work: from agents import Agent, InputGuardrail,GuardrailFunctionOutput, Runner, AsyncOpenAI, OpenAIChatCompletionsModel, set_default_openai_client AZURE_OPENAI_API_KEY = "key" AZURE_OPENAI_ENDPOINT = f"https://{AZURE_OPENAI_RESOURCE_NAME}.openai.azure.com" custom_client = AsyncOpenAI( set_default_openai_client(custom_client, use_for_tracing=False) class HomeworkOutput(BaseModel): guardrail_agent = Agent( However, this setup does not seem to be functioning as expected. The same API calls work successfully using curl, so the issue may be related to the SDK. Any insights or suggestions on what might be causing this discrepancy would be greatly appreciated. This is the error code: Error code: 404 - {'error': {'code': '404', 'message': 'Resource not found'}} OPENAI_API_KEY is not set, skipping trace export |
I will followup on this, thanks for reporting. |
I added a PR #110 that I was able to test with a non-Azure provider. I think it should just work with Azure if you swap it out for |
It seems it does not work. My sample as below: import asyncio from agents import ( load_dotenv() os.environ["OPENAI_API_TYPE"] = "azure" openai_client = AsyncAzureOpenAI( agent = Agent(name="Assistant", result = Runner.run_sync(agent, "Write a haiku about recursion in programming.") I got the below error: Tracing client error 401: { @rm-openai , any suggestion? |
pull repo again, just fixed by #112 |
@huqianghui, you'll need to disable tracing. Added a note for that here: https://openai.github.io/openai-agents-python/models/#using-other-llm-providers |
This worked for me (see here): from openai import AsyncAzureOpenAI
from agents import set_default_openai_client, set_default_openai_api
client = AsyncAzureOpenAI(
api_key='xxxxxx',
base_url='https://xxxx.openai.azure.com/',
api_version="2024-05-01-preview",
)
set_default_openai_client(client, use_for_tracing=False)
set_default_openai_api("chat_completions") |
Here's the working code for configuring AsyncOpenAI to use Azure OpenAI models:
|
@triple4t @axelsodergard The above code works for me as well. Setting tracing to false in order to use a : is this a bug? When I set tracing to True, the agent returns a response generated by LLM, but post generation, I get a 401 error.
Error:
I'll try and dig in. But to get some pointers, it is failing while generating the traces? Is Response API the default mode for Agent SDK? |
Thank a lot. This is really helpful . I am able to run Ollama, Deepseek models as well. |
This issue is stale because it has been open for 7 days with no activity. |
This issue was closed because it has been inactive for 3 days since being marked as stale. |
I am trying to configure an OpenAI client using Azure OpenAI API, but I keep encountering 404 Not Found and 401 Invalid API Key errors. Despite following the documentation, I am unable to get the client to authenticate and make successful requests.
Could you provide a working example of correctly configuring AsyncOpenAI for Azure OpenAI models? Any guidance on proper base_url structure and authentication would be greatly appreciated.
Thanks in advance!
The text was updated successfully, but these errors were encountered: