coai/adapter/common/interface.go
2024-03-12 14:36:18 +08:00

12 lines
203 B
Go

package adaptercommon
import (
"chat/globals"
)
type Factory interface {
CreateStreamChatRequest(props *ChatProps, hook globals.Hook) error
}
type FactoryCreator func(globals.ChannelConfig) Factory