mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-02-13 07:25:10 -05:00
14 lines
283 B
Go
14 lines
283 B
Go
package ai
|
|
|
|
import (
|
|
"github.com/danielmiessler/fabric/common"
|
|
)
|
|
|
|
func NewVendorsModels() *VendorsModels {
|
|
return &VendorsModels{GroupsItemsSelectorString: common.NewGroupsItemsSelectorString("Available models")}
|
|
}
|
|
|
|
type VendorsModels struct {
|
|
*common.GroupsItemsSelectorString
|
|
}
|