-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
47 lines (40 loc) · 1.06 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
}
{ // sashabaranov
client := sashabaranov.NewClient(apiKey)
completionStream, err := client.CreateCompletionStream(ctx, sashabaranov.CompletionRequest{
Model: "text-davinci-003",
Prompt: "Say this is a test",
MaxTokens: 7,
Temperature: 0,
TopP: 1,
N: 1,
Stream: false,
Stop: []string{"\n"},
})
resp := sashabaranov.CompletionResponse{}
for {
resp, err = completionStream.Recv()
if err == io.EOF {
fmt.Printf("sashabaranov CreateCompletionStream streamReader.Recv(): EOF\n")
break
} else if err != nil {
fmt.Printf("sashabaranov CreateCompletionStream streamReader.Recv() error: %v\n", err)
break
}
fmt.Printf("sashabaranov CreateCompletionStream streamReader.Recv(): \n%v\n\n", utils.SPrintStruct(resp))
}
}
}