mirror of
https://github.com/coaidev/coai.git
synced 2025-05-20 05:20:15 +09:00
12 lines
238 B
Go
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
|
|
}
|