You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String key ="sk-YOUR KEY HERE"; // TODO Add your open ai key here
35
-
36
-
// Create the initial prompt, we will reuse it later.
37
-
String initialPrompt ="You are a customer support chat-bot. Write brief summaries of the user's questions so that agents can easily find the answer in a database.";
// ChatCompletionRequest copies the list, so let's modify the request's
43
-
// copy of the list.
44
-
messages = request.getMessages();
45
32
33
+
// This is the prompt that the bot will refer back to for every message.
34
+
ChatMessage prompt =ChatMessage.toSystemMessage("You are a customer support chat-bot. Write brief summaries of the user's questions so that agents can easily find the answer in a database.");
35
+
36
+
// Use a mutable (modifiable) list! Always! You should be reusing the
37
+
// ChatRequest variable, so in order for a conversation to continue
0 commit comments