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 c6f3499 commit 1c63b4bCopy full SHA for 1c63b4b
openai-java-example/src/main/java/com/openai/example/Main.java
@@ -11,7 +11,7 @@ private Main() {}
11
public static void main(String[] args) {
12
OpenAIClient client = OpenAIOkHttpClient.fromEnv();
13
CompletionCreateParams completionCreateParams = CompletionCreateParams.builder()
14
- .model(CompletionCreateParams.Model.Preset.GPT_3_5_TURBO_INSTRUCT)
+ .model(CompletionCreateParams.Model.GPT_3_5_TURBO_INSTRUCT)
15
.maxTokens(1024)
16
.prompt("Tell me a story about building the best SDK!")
17
.build();
0 commit comments