Skip to content

Commit

Permalink
Update AzureAIServices.java
Browse files Browse the repository at this point in the history
  • Loading branch information
chtrembl authored Aug 27, 2024
1 parent 2996ead commit d1306bd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ public class AzureAIServices implements IAzureAIServices {
@Value("classpath:json/azurerequests/classificationRequestBody.txt")
private Resource classificationRequestBodyResource;
String classificationRequestBodyString;
String CLASSIFICATION_URI = "/openai/deployments/azurepetstoreshoppingassistant/chat/completions?api-version=2024-02-15-preview";
String CLASSIFICATION_URI = "/openai/deployments/azurepetstoreshoppingassistant/chat/completions?api-version=2024-06-01";

@Value("classpath:json/azurerequests/azurepetstoredataCompletionRequestBody.txt")
private Resource azurepetstoredataCompletionRequestBodyResource;
String azurepetstoredataCompletionRequestBodyString;
String COMPLETION_URI = "/openai/deployments/azurepetstoreshoppingassistant/extensions/chat/completions?api-version=2024-02-15-preview";
String COMPLETION_URI = "/openai/deployments/azurepetstoreshoppingassistant/extensions/chat/completions?api-version=2024-06-01";

@Value("classpath:json/azurerequests/chatgpt4completionRequestBody.txt")
private Resource chatgpt4CompletionRequestBodyResource;
String chatgpt4CompletionRequestBodyString;
String CHATGPT4_COMPLETION_URI = "/openai/deployments/azurepetstoreshoppingassistant/chat/completions?api-version=2024-02-15-preview";
String CHATGPT4_COMPLETION_URI = "/openai/deployments/azurepetstoreshoppingassistant/chat/completions?api-version=2024-06-01";

@Value("classpath:json/azurerequests/semanticSearchRequestBody.txt")
private Resource semanticSearchRequestBodyBodyResource;
Expand Down

0 comments on commit d1306bd

Please sign in to comment.