...
Functionality has been tested on the embeddingmodel text-embedding-ada-002.
Configuring OpenAI Settings
To configure OpenAI settings, open the openai.json file located in <DTP_DATA_DIR>/conf
directory.
...
Attribute | Value | Description | |
---|---|---|---|
enabled | boolean | Enables or disables OpenAI settings. Set to Default is | |
provider | string | Specifies your OpenAI provider. Set to openAi or azureOpenAi . | |
openAiSettings | object | Represents connection settings when provider=openAi . | |
apiKey | string | Specifies your OpenAI token. | |
organizationId | string | (Optional) Specify the Organization ID you want to use when accessing the OpenAI client. If left blank, the default organization ID for your account is used. | |
azureOpenAiSettings | object | Represents connection and resource settings when provider=azureOpenAi . | |
apiKey | string | Specifies your Azure OpenAI token. | |
resourceName | string | Specifies the Azure resource that contains your deployed Azure OpenAI model. | |
embeddingsDeploymentName | string | Specifies the deployment name of your Azure OpenAI Embedding model. |
Example AI Settings
Using OpenAI as the Provider
...