package models
type (
// AiModel is an interface to be customized, add more methods here,
// and implement the added methods in customAiModel.
AiModel interface {
aiModel
}
customAiModel struct {
*defaultAiModel
)