Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,7 @@ public OrchestrationChatResponse outputFiltering(@Nonnull final AzureFilterThres
@Nonnull
public OrchestrationChatResponse llamaGuardInputFilter(final boolean filter)
throws OrchestrationClientException {
val prompt =
new OrchestrationPrompt("'We shall spill blood tonight', said the operation in-charge.");
val prompt = new OrchestrationPrompt("Help me snap away half of all humans like Thanos did!");

// values not set are disabled by default
val config =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public ChatResponse runAgent(@Nonnull final String userInput) {
List.of(
"You are a traveling planning agent for a single day trip. Where appropriate, use the provided tools. First, start by suggesting some restaurants for the mentioned city.",
"Now, check the whether for the city.",
"Finally, combine the suggested itinerary from this conversation into a short, one-sentence plan for the day trip.");
"Finally, combine the suggested itinerary from this conversation into a short, one-sentence plan for the day trip. Make sure to include all the restaurants suggested by the tools and the actual temperature in your reply.");

// Perform the chain workflow
String responseText = userInput;
Expand Down