liyp
13483b9643
在config.toml中添加了OPENAI_API_KEY、OPENAI_BaseURL和MODEL配置项,以支持OpenAI API的集成。 同时,优化了PrintConfig函数,使其能够递归打印嵌套的配置结构,提高了配置管理的可读性和易用性。
17 lines
344 B
Modula-2
17 lines
344 B
Modula-2
module go-bot
|
|
|
|
go 1.22.2
|
|
|
|
require github.com/BurntSushi/toml v1.3.2
|
|
|
|
require (
|
|
github.com/goccy/go-json v0.10.2
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
)
|
|
|
|
require (
|
|
github.com/moul/http2curl v1.0.0 // indirect
|
|
github.com/parnurzeal/gorequest v0.3.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
golang.org/x/net v0.26.0 // indirect
|
|
)
|