go.mod 464 B

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