forked from openai/openai-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStructuredOutputsExample.java
More file actions
76 lines (59 loc) · 2.54 KB
/
StructuredOutputsExample.java
File metadata and controls
76 lines (59 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.openai.example;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.ChatModel;
import com.openai.models.chat.completions.ChatCompletionCreateParams;
import com.openai.models.chat.completions.StructuredChatCompletionCreateParams;
import io.swagger.v3.oas.annotations.media.ArraySchema;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.List;
public final class StructuredOutputsExample {
public static class Person {
@JsonPropertyDescription("The first name and surname of the person.")
public String name;
public int birthYear;
@JsonPropertyDescription("The year the person died, or 'present' if the person is living.")
public String deathYear;
@Override
public String toString() {
return name + " (" + birthYear + '-' + deathYear + ')';
}
}
public static class Book {
public String title;
public Person author;
@JsonPropertyDescription("The year in which the book was first published.")
@Schema(minimum = "1500")
public int publicationYear;
public String genre;
@JsonIgnore
public String isbn;
@Override
public String toString() {
return '"' + title + "\" (" + publicationYear + ") [" + genre + "] by " + author;
}
}
public static class BookList {
@ArraySchema(maxItems = 100)
public List<Book> books;
}
private StructuredOutputsExample() {}
public static void main(String[] args) {
// Configures using one of:
// - The `OPENAI_API_KEY` environment variable
// - The `OPENAI_BASE_URL` and `AZURE_OPENAI_KEY` environment variables
OpenAIClient client = OpenAIOkHttpClient.fromEnv();
StructuredChatCompletionCreateParams<BookList> createParams = ChatCompletionCreateParams.builder()
.model(ChatModel.GPT_4O_MINI)
.maxCompletionTokens(2048)
.responseFormat(BookList.class)
.addUserMessage("List some famous late twentieth century novels.")
.build();
client.chat().completions().create(createParams).choices().stream()
.flatMap(choice -> choice.message().content().stream())
.flatMap(bookList -> bookList.books.stream())
.forEach(book -> System.out.println(" - " + book));
}
}