-
Notifications
You must be signed in to change notification settings - Fork 741
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
huangyanming
committed
Mar 27, 2023
1 parent
8436681
commit 090fbf4
Showing
4 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,40 @@ | ||
module github.com/869413421/chatgpt-web | ||
|
||
go 1.17 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/alecthomas/kong v0.7.1 | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible | ||
github.com/gin-gonic/gin v1.7.7 | ||
github.com/glebarez/sqlite v1.7.0 | ||
github.com/sashabaranov/go-gpt3 v1.3.0 | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 | ||
golang.org/x/net v0.8.0 | ||
gorm.io/driver/sqlite v1.4.4 | ||
gorm.io/gorm v1.24.6 | ||
) | ||
|
||
require ( | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/glebarez/go-sqlite v1.20.3 // indirect | ||
github.com/go-playground/locales v0.13.0 // indirect | ||
github.com/go-playground/universal-translator v0.17.0 // indirect | ||
github.com/go-playground/validator/v10 v10.4.1 // indirect | ||
github.com/golang/protobuf v1.3.3 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/jinzhu/inflection v1.0.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/json-iterator/go v1.1.9 // indirect | ||
github.com/leodido/go-urn v1.2.0 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.16 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect | ||
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230126093431-47fa9a501578 // indirect | ||
github.com/ugorji/go/codec v1.1.7 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
modernc.org/libc v1.22.2 // indirect | ||
modernc.org/mathutil v1.5.0 // indirect | ||
modernc.org/memory v1.5.0 // indirect | ||
modernc.org/sqlite v1.20.3 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters