-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...storeassistant/src/main/java/com/chtrembl/petstoreassistant/service/IAzureAIServices.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
package com.chtrembl.petstoreassistant.service; | ||
|
||
import com.chtrembl.petstoreassistant.model.AzurePetStoreSessionInfo; | ||
import com.chtrembl.petstoreassistant.model.DPResponse; | ||
import com.chtrembl.petstoreassistant.service.AzureAIServices.Classification; | ||
|
||
public interface IAzureAIServices { | ||
public DPResponse classification(String text, String sessionID); | ||
public DPResponse completion(String text, Classification classification, String sessionID); | ||
public DPResponse classification(String text, AzurePetStoreSessionInfo azurePetStoreSessionInfo); | ||
public DPResponse completion(String text, Classification classification, AzurePetStoreSessionInfo azurePetStoreSessionInfo); | ||
public DPResponse search(String text,Classification classification); | ||
} |