We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2178b99 commit 083c3e3Copy full SHA for 083c3e3
build.gradle.kts
@@ -34,6 +34,10 @@ tasks.withType<JavaExec> {
34
jvmArgs = listOf("-Dfile.encoding=UTF-8", "-Dconsole.encoding=UTF-8")
35
}
36
37
+tasks.withType<Javadoc> {
38
+ options.encoding = "UTF-8"
39
+}
40
+
41
tasks.compileJava {
42
options.encoding = "UTF-8"
43
src/main/java/examples/ExampleChatGPT.java
@@ -35,7 +35,7 @@ public static void main(String[] args) {
System.setProperty("console.encoding", "UTF-8");
//The first message that we want to send
- String message1 = "こんにちは";
+ String message1 = "Hello ChatGPT!";
//The second message that we want to send
String message2 = "What was the first thing I said?";
0 commit comments