go.mod 416 B

1234567891011121314151617
  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.3.0 // indirect
  11. golang.org/x/net v0.0.0-20211029224645-99673261e6eb // indirect
  12. )
  13. replace github.com/solywsh/chatgpt => ./pkg/chatgpt