We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f16286c commit 39c178bCopy full SHA for 39c178b
README.md
@@ -81,8 +81,7 @@ Chatbot bot = new Chatbot(apiKey, "openai");
81
// 2- prepare the chat history by calling addMessage.
82
String mode = "You are a helpful astronomy assistant.";
83
ChatModelInput input = new ChatGPTInput.Builder(mode)
84
- .addUserMessage("what is the space between moon and earth")
85
- .build();
+ .addUserMessage("what is the space between moon and earth").build();
86
87
// 3- call chat!
88
List<String> resValues = bot.chat(input);
0 commit comments