Skip to content

Commit 106d762

Browse files
authored
Refactor library (#1)
Seeks to re-factor the original repo w/ many breaking changes. Major goals: - Use more idiomatic go style. (Rename the package, accept and return pointers, shorter variable names, etc.) - Much better documentation. Add comments to all exported types, fields, methods, packages, etc. (from OpenAI's documentation). - Make option fields who's go default value is a valid parameter value (and also does not match the API's default) pointers, so omitempty does not strip explicitly set values. (See sashabaranov/go-openai#9 for more). - Have a consistent style throughout. Most endpoints in the original library were implemented independently (and thus their usages feel inconsistent). - Implement all endpoints. Reviewer: neilmadsen
1 parent 81b5788 commit 106d762

34 files changed

+1734
-778
lines changed

.github/workflows/pr.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ jobs:
1111
- name: Setup Go
1212
uses: actions/setup-go@v2
1313
with:
14-
go-version: '1.18'
14+
go-version: '1.19'
1515
- name: Run vet
1616
run: |
1717
go vet .
1818
- name: Run golangci-lint
1919
uses: golangci/golangci-lint-action@v3
2020
with:
2121
version: latest
22-
# # Run testing on the code
23-
# - name: Run testing
24-
# run: cd test && go test -v
22+
- name: Run testing
23+
run: go test -v

.golangci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ linters:
188188
- gomodguard # Allow and block list linter for direct Go module dependencies. This is different from depguard where there are different block types for example version constraints and module recommendations.
189189
- goprintffuncname # Checks that printf-like functions are named with f at the end
190190
- gosec # Inspects source code for security problems
191-
- lll # Reports long lines
191+
# - lll # Reports long lines
192192
- makezero # Finds slice declarations with non-zero initial length
193193
# - nakedret # Finds naked returns in functions greater than a specified function length
194194
- nestif # Reports deeply nested if statements
@@ -205,7 +205,7 @@ linters:
205205
- sqlclosecheck # Checks that sql.Rows and sql.Stmt are closed.
206206
- stylecheck # Stylecheck is a replacement for golint
207207
- tenv # tenv is analyzer that detects using os.Setenv instead of t.Setenv since Go1.17
208-
- testpackage # linter that makes you use a separate _test package
208+
# - testpackage # linter that makes you use a separate _test package
209209
- tparallel # tparallel detects inappropriate usage of t.Parallel() method in your Go test codes
210210
- unconvert # Remove unnecessary type conversions
211211
- unparam # Reports unused function parameters

README.md

+15-16
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
# go-gpt3
2-
[![GoDoc](http://img.shields.io/badge/GoDoc-Reference-blue.svg)](https://godoc.org/github.com/sashabaranov/go-gpt3)
3-
[![Go Report Card](https://goreportcard.com/badge/github.com/sashabaranov/go-gpt3)](https://goreportcard.com/report/github.com/sashabaranov/go-gpt3)
1+
# openai
2+
[![GoDoc](http://img.shields.io/badge/GoDoc-Reference-blue.svg)](https://godoc.org/github.com/fabiustech/openai)
3+
[![Go Report Card](https://goreportcard.com/badge/github.com/sashabaranov/go-gpt3)](https://goreportcard.com/report/github.com/fabiustech/openai)
44

5-
6-
[OpenAI GPT-3](https://beta.openai.com/) API wrapper for Go
5+
Zero dependency Go Client for [OpenAI](https://beta.openai.com/) API endpoints. Built upon the great work done [here](https://github.com/sashabaranov/go-gpt3).
76

87
Installation:
98
```
10-
go get github.com/sashabaranov/go-gpt3
9+
go get github.com/fabiustech/openai
1110
```
1211

13-
1412
Example usage:
1513

1614
```go
@@ -19,22 +17,23 @@ package main
1917
import (
2018
"context"
2119
"fmt"
22-
gogpt "github.com/sashabaranov/go-gpt3"
20+
21+
"github.com/fabiustech/openai"
22+
"github.com/fabiustech/openai/models"
2323
)
2424

2525
func main() {
26-
c := gogpt.NewClient("your token")
27-
ctx := context.Background()
28-
29-
req := gogpt.CompletionRequest{
30-
Model: gogpt.GPT3Ada,
31-
MaxTokens: 5,
26+
var c = openai.NewClient("your token")
27+
28+
var resp, err = c.CreateCompletion(context.Background(), &openai.CompletionRequest{
29+
Model: models.TextDavinci003,
30+
MaxTokens: 100,
3231
Prompt: "Lorem ipsum",
33-
}
34-
resp, err := c.CreateCompletion(ctx, req)
32+
})
3533
if err != nil {
3634
return
3735
}
36+
3837
fmt.Println(resp.Choices[0].Text)
3938
}
4039
```

answers.go

-51
This file was deleted.

api.go

-85
This file was deleted.

0 commit comments

Comments
 (0)