coai/globals/interface.go
2023-12-02 11:08:39 +08:00

12 lines
238 B
Go

package globals
type ChannelConfig interface {
GetType() string
GetModelReflect(model string) string
GetRetry() int
GetRandomSecret() string
SplitRandomSecret(num int) []string
GetEndpoint() string
ProcessError(err error) error
}