mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-21 06:09:39 +08:00
* feat(llm): add probed-package * feat(llm): add llm-save-instant-app * feat(llm): add some llm-instant-app options * fix(llm): change app to model * fix(llm): rename origin model to sku * feat(llm): add llm-quick-models * fix(llm): saved paths for instant model * fix(llm): fix quick-install-model --------- Co-authored-by: Zexi Li <zexi.li@icloud.com>
24 lines
431 B
Go
24 lines
431 B
Go
package llm
|
|
|
|
import (
|
|
"yunion.io/x/onecloud/pkg/mcclient/modulebase"
|
|
"yunion.io/x/onecloud/pkg/mcclient/modules"
|
|
)
|
|
|
|
var (
|
|
LLMInstantModel LLMInstantModelManager
|
|
)
|
|
|
|
func init() {
|
|
LLMInstantModel = LLMInstantModelManager{
|
|
modules.NewLLMManager("llm_instant_model", "llm_instant_models",
|
|
[]string{},
|
|
[]string{}),
|
|
}
|
|
modules.Register(&LLMInstantModel)
|
|
}
|
|
|
|
type LLMInstantModelManager struct {
|
|
modulebase.ResourceManager
|
|
}
|