Skip to content

Commit

Permalink
Add readme example of ChatGPT streaming completion (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuichi-maeda committed Mar 19, 2023
1 parent a6b35c3 commit d529d13
Showing 1 changed file with 56 additions and 1 deletion.
57 changes: 56 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,61 @@ func main() {

Other examples:

<details>
<summary>ChatGPT streaming completion</summary>

```go
package main

import (
"context"
"errors"
"fmt"
"io"
openai "github.com/sashabaranov/go-openai"
)

func main() {
c := openai.NewClient("your token")
ctx := context.Background()

req := openai.ChatCompletionRequest{
Model: openai.GPT3Dot5Turbo,
MaxTokens: 20,
Messages: []openai.ChatCompletionMessage{
{
Role: openai.ChatMessageRoleUser,
Content: "Lorem ipsum",
},
},
Stream: true,
}
stream, err := c.CreateChatCompletionStream(ctx, req)
if err != nil {
fmt.Printf("ChatCompletionStream error: %v\n", err)
return
}
defer stream.Close()

fmt.Printf("Stream response: ")
for {
response, err := stream.Recv()
if errors.Is(err, io.EOF) {
fmt.Println("\nStream finished")
return
}

if err != nil {
fmt.Printf("\nStream error: %v\n", err)
return
}

fmt.Printf(response.Choices[0].Delta.Content)
}
}
```
</details>

<details>
<summary>GPT-3 completion</summary>

Expand Down Expand Up @@ -327,4 +382,4 @@ func main() {
}
}
```
</details>
</details>

0 comments on commit d529d13

Please sign in to comment.