mod_instantmodel.go 431 B

1234567891011121314151617181920212223
  1. package llm
  2. import (
  3. "yunion.io/x/onecloud/pkg/mcclient/modulebase"
  4. "yunion.io/x/onecloud/pkg/mcclient/modules"
  5. )
  6. var (
  7. LLMInstantModel LLMInstantModelManager
  8. )
  9. func init() {
  10. LLMInstantModel = LLMInstantModelManager{
  11. modules.NewLLMManager("llm_instant_model", "llm_instant_models",
  12. []string{},
  13. []string{}),
  14. }
  15. modules.Register(&LLMInstantModel)
  16. }
  17. type LLMInstantModelManager struct {
  18. modulebase.ResourceManager
  19. }