go.mod 468 B

123456789101112131415161718
  1. module github.com/eryajf/chatgpt-dingtalk
  2. go 1.18
  3. require (
  4. github.com/avast/retry-go v2.7.0+incompatible
  5. github.com/go-resty/resty/v2 v2.7.0
  6. github.com/patrickmn/go-cache v2.1.0+incompatible
  7. github.com/solywsh/chatgpt v0.0.14
  8. )
  9. require (
  10. github.com/sashabaranov/go-openai v1.5.1 // indirect
  11. github.com/stretchr/testify v1.8.2 // indirect
  12. golang.org/x/net v0.0.0-20211029224645-99673261e6eb // indirect
  13. )
  14. replace github.com/solywsh/chatgpt => ./pkg/chatgpt