-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
47 lines (40 loc) · 1.11 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
package main
import (
"context"
"fmt"
"io"
sashabaranov "github.com/sashabaranov/go-openai"
"github.com/emikhalev/chatgpt-golang-examples/utils"
)
func main() {
ctx := context.Background()
apiKey := utils.APIKey()
{ // otiai10
// not supported, but here is a pull request to add such support:
// https://github.com/otiai10/openaigo/pull/14
}
{ // sashabaranov
client := sashabaranov.NewClient(apiKey)
completionStream, err := client.CreateChatCompletionStream(ctx, sashabaranov.ChatCompletionRequest{
Model: "gpt-3.5-turbo",
Messages: []sashabaranov.ChatCompletionMessage{
{
Role: "user",
Content: "Hello!",
},
},
})
resp := sashabaranov.ChatCompletionStreamResponse{}
for {
resp, err = completionStream.Recv()
if err == io.EOF {
fmt.Printf("sashabaranov ChatCompletionResponse streamReader.Recv(): EOF\n")
break
} else if err != nil {
fmt.Printf("sashabaranov ChatCompletionResponse streamReader.Recv() error: %v\n", err)
break
}
fmt.Printf("sashabaranov ChatCompletionResponse streamReader.Recv(): \n%v\n\n", utils.SPrintStruct(resp))
}
}
}