- Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathmain.go
88 lines (74 loc) · 2.9 KB
/
main.go
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
77
78
79
80
81
82
83
84
85
86
87
88
package main
import (
"context"
"encoding/json"
"fmt"
"github.com/invopop/jsonschema"
"github.com/openai/openai-go"
)
// A struct that will be converted to a Structured Outputs response schema
typeHistoricalComputerstruct {
OriginOrigin`json:"origin" jsonschema_description:"The origin of the computer"`
Namestring`json:"full_name" jsonschema_description:"The name of the device model"`
Legacystring`json:"legacy" jsonschema:"enum=positive,enum=neutral,enum=negative" jsonschema_description:"Its influence on the field of computing"`
NotableFacts []string`json:"notable_facts" jsonschema_description:"A few key facts about the computer"`
}
typeOriginstruct {
YearBuiltint64`json:"year_of_construction" jsonschema_description:"The year it was made"`
Organizationstring`json:"organization" jsonschema_description:"The organization that was in charge of its development"`
}
funcGenerateSchema[Tany]() interface{} {
// Structured Outputs uses a subset of JSON schema
// These flags are necessary to comply with the subset
reflector:= jsonschema.Reflector{
AllowAdditionalProperties: false,
DoNotReference: true,
}
varvT
schema:=reflector.Reflect(v)
returnschema
}
// Generate the JSON schema at initialization time
varHistoricalComputerResponseSchema=GenerateSchema[HistoricalComputer]()
funcmain() {
client:=openai.NewClient()
ctx:=context.Background()
question:="What computer ran the first neural network?"
print("> ")
println(question)
schemaParam:= openai.ResponseFormatJSONSchemaJSONSchemaParam{
Name: "historical_computer",
Description: openai.String("Notable information about a computer"),
Schema: HistoricalComputerResponseSchema,
Strict: openai.Bool(true),
}
// Query the Chat Completions API
chat, err:=client.Chat.Completions.New(ctx, openai.ChatCompletionNewParams{
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage(question),
},
ResponseFormat: openai.ChatCompletionNewParamsResponseFormatUnion{
OfJSONSchema: &openai.ResponseFormatJSONSchemaParam{JSONSchema: schemaParam},
},
// Only certain models can perform structured outputs
Model: openai.ChatModelGPT4o2024_08_06,
})
iferr!=nil {
panic(err.Error())
}
// The model responds with a JSON string, so parse it into a struct
varhistoricalComputerHistoricalComputer
err=json.Unmarshal([]byte(chat.Choices[0].Message.Content), &historicalComputer)
iferr!=nil {
panic(err.Error())
}
// Use the model's structured response with a native Go struct
fmt.Printf("Name: %v\n", historicalComputer.Name)
fmt.Printf("Year: %v\n", historicalComputer.Origin.YearBuilt)
fmt.Printf("Org: %v\n", historicalComputer.Origin.Organization)
fmt.Printf("Legacy: %v\n", historicalComputer.Legacy)
fmt.Printf("Facts:\n")
fori, fact:=rangehistoricalComputer.NotableFacts {
fmt.Printf("%v. %v\n", i+1, fact)
}
}