We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Problem Description I would like to be able to use Extract with an Azure OpenAI endpoint.
Proposed Feature It would be nice to have the ability to configure an alternative set of keys for Azure.
The text was updated successfully, but these errors were encountered:
Actually, I was able to get extract working seamlessly on a fork. All I had to do was replace this:
import OpenAI from "openai"; const openai = new OpenAI();
With this everywhere:
import { AzureOpenAI } from "openai"; const openai = new AzureOpenAI({ apiKey: process.env.AZURE_OPENAI_CREDENTIAL, endpoint: process.env.AZURE_OPENAI_ENDPOINT, apiVersion: process.env.AZURE_OPENAI_VERSION, });
Sorry, something went wrong.
I also need this feature.
nickscamara
No branches or pull requests
Problem Description
I would like to be able to use Extract with an Azure OpenAI endpoint.
Proposed Feature
It would be nice to have the ability to configure an alternative set of keys for Azure.
The text was updated successfully, but these errors were encountered: