-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
How to use Tools with Azure OpenAI #104
Comments
The following worked for me. csv_tool = CSVSearchTool(
config=dict(
llm=dict(
provider="azure_openai", # or google, openai, anthropic, llama2, ...
config=dict(
model="gpt-4-32k",
deployment_name="gpt-4-32k"
),
),
embedder=dict(
provider="azure_openai", # or openai, ollama, ...
config=dict(
model="text-embedding-3-large",
deployment_name="text-embedding-3-large"
),
),
),
csv='./process_conn_incr_1000.csv'
) But assuming you have Azure OpenAI env var setup correctly as well as in the Azure Portal.
|
Can you give more details on this setup? |
This issue is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
This issue was closed because it has been stale for 5 days with no activity. |
If I want to use the following tool with Azure OpenAI, what would be config values? Please add detail example as it's not clear from the following code. I have GPT4 deployment in Azure named
gpt4-128k
and text embedding deployment namedembedding-ada-002
The text was updated successfully, but these errors were encountered: