diff --git a/README.md b/README.md index 99414bd..ec6c4a3 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ func main() { if err != nil { panic(err.Error()) } + println(completion.Choices[0].Message.Content) } ``` @@ -75,7 +76,7 @@ func main() { param := openai.ChatCompletionNewParams{ Messages: openai.F([]openai.ChatCompletionMessageParamUnion{ openai.UserMessage("What kind of houseplant is easy to take care of?"), - }), + }), Seed: openai.Int(1), Model: openai.F(openai.ChatModelGPT4o), }