Skip to content

Commit

Permalink
Update AzureAIServices.java
Browse files Browse the repository at this point in the history
  • Loading branch information
chtrembl committed Jan 4, 2024
1 parent 07b91ee commit 0a121ac
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public DPResponse search(String text, Classification classification) {
DPResponse dpResponse = new DPResponse();
dpResponse.setClassification(classification);

String dpResponseText = "We have some products, a ";
String dpResponseText = "I found some information on our products. We have some a ";

String filter = "";

Expand Down Expand Up @@ -263,7 +263,7 @@ public DPResponse search(String text, Classification classification) {
// this should become a content card with a carousel of product(s) for now just display description if there is 1 product and override the stuff above
if(products.size() == 1 || classification.equals(Classification.MORE_PRODUCT_INFORMATION))
{
dpResponseText = "We have some products. Here is a description of the " + products.get(0).getName() + ". " + products.get(0).getDescription();
dpResponseText = "I found some information on our products. Here is a description of the " + products.get(0).getName() + ". " + products.get(0).getDescription();
dpResponse.setDpResponseText(dpResponseText);
}
else
Expand Down

0 comments on commit 0a121ac

Please sign in to comment.