Run with:
# AZURE: OPENAI_CLIENT_TYPE=AZURE_OPEN_AI \ AZURE_OPEN_AI_KEY="my-key" \ AZURE_OPEN_AI_ENDPOINT="endpoint url" \ ../../mvnw clean package exec:java -Dsample=Example04_CombineLLMPromptsAndNativeCode # OPENAI: OPENAI_CLIENT_TYPE=OPENAI \ OPEN_AI_KEY="my-key" \ OPEN_AI_ORGANIZATION_ID="organisation id" \ ../../mvnw clean package exec:java -Dsample=Example04_CombineLLMPromptsAndNativeCode
These samples can be compiled via:
../../mvnw clean package
They can then be run by:
../../mvnw exec:java -Dsample=Example04_CombineLLMPromptsAndNativeCode
You can define the provider of Open AI by setting the OPENAI_CLIENT_TYPE
property or environment variable to either OPENAI
or AZURE_OPEN_AI
. By default, the samples will use the Open AI client.
OPENAI_CLIENT_TYPE=OPEN_AI ../../mvnw exec:java -Dsample=Example04_CombineLLMPromptsAndNativeCode OR ../../mvnw exec:java -DOPENAI_CLIENT_TYPE=AZURE_OPEN_AI -Dsample=Example04_CombineLLMPromptsAndNativeCode
The samples search for the client settings in the following order:
- Properties file whose location is defined by the
CONF_PROPERTIES
property or environment variable. - System properties defined on the command line.
- Environment variables.
- Properties file at
java/samples/conf.properties
. - Properties file at
~/.sk/conf.properties
.
You can set the location of a properties file, by setting the CONF_PROPERTIES
property or environment variable, ie:
CONF_PROPERTIES=my.properties \ OPENAI_CLIENT_TYPE=OPEN_AI \ ../../mvnw exec:java -Dsample=Example04_CombineLLMPromptsAndNativeCode OR ../../mvnw exec:java \ -DCONF_PROPERTIES=my.properties \ -DOPENAI_CLIENT_TYPE=AZURE_OPEN_AI \ -Dsample=Example04_CombineLLMPromptsAndNativeCode
A properties file looks as follows:
# If using openai.com client.openai.key:"my-key" client.openai.organizationid:"my-org-id"# if using Azure Open AI client.azureopenai.key:"my-key" client.azureopenai.endpoint:"url of azure openai endpoint" client.azureopenai.deploymentname:"deployment name"
As an alternative to providing the key/endpoint properties via a file, you can set them directly via system properties, ie:
# OpenAI ../../mvnw exec:java \ -DOPENAI_CLIENT_TYPE=AZURE_OPEN_AI \ -Dclient.openai.key="my-key" \ -Dclient.openai.organizationid="my-org-id" \ -Dsample=Example04_CombineLLMPromptsAndNativeCode # Azure ../../mvnw exec:java \ -DOPENAI_CLIENT_TYPE=AZURE_OPEN_AI \ -Dclient.azureopenai.key="my-key" \ -Dclient.azureopenai.endpoint="url of azure openai endpoint" \ -Dsample=Example04_CombineLLMPromptsAndNativeCode
Alternative to properties, you can set environment variables as follows:
# AZURE: OPENAI_CLIENT_TYPE=AZURE_OPEN_AI \ AZURE_OPEN_AI_KEY="my-key" \ AZURE_OPEN_AI_ENDPOINT="endpoint url" \ ../../mvnw clean package exec:java -Dsample=Example04_CombineLLMPromptsAndNativeCode # OPENAI: OPENAI_CLIENT_TYPE=OPEN_AI \ OPEN_AI_KEY="my-key" \ OPEN_AI_ORGANIZATION_ID="organisation id" \ ../../mvnw clean package exec:java -Dsample=Example04_CombineLLMPromptsAndNativeCode