├── .gitignore ├── README.md ├── go.mod ├── go.sum ├── handler └── message.go ├── logicerr ├── chat_completion.go └── config.go ├── main.go └── model ├── chat_completion.go └── config.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | config.yml 3 | wechat_cache.json 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotiaWang/WeeChatGPT/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotiaWang/WeeChatGPT/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotiaWang/WeeChatGPT/HEAD/go.sum -------------------------------------------------------------------------------- /handler/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotiaWang/WeeChatGPT/HEAD/handler/message.go -------------------------------------------------------------------------------- /logicerr/chat_completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotiaWang/WeeChatGPT/HEAD/logicerr/chat_completion.go -------------------------------------------------------------------------------- /logicerr/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotiaWang/WeeChatGPT/HEAD/logicerr/config.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotiaWang/WeeChatGPT/HEAD/main.go -------------------------------------------------------------------------------- /model/chat_completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotiaWang/WeeChatGPT/HEAD/model/chat_completion.go -------------------------------------------------------------------------------- /model/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotiaWang/WeeChatGPT/HEAD/model/config.go --------------------------------------------------------------------------------