mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-26 08:00:55 +00:00
17 lines
491 B
Go
17 lines
491 B
Go
package model
|
|
|
|
type Agent struct {
|
|
BaseModel
|
|
Name string `json:"name" gorm:"not null;unique"`
|
|
Provider string `json:"provider"`
|
|
Model string `json:"model"`
|
|
BaseURL string `json:"baseUrl"`
|
|
APIKey string `json:"apiKey"`
|
|
Token string `json:"token"`
|
|
Status string `json:"status"`
|
|
Message string `json:"message"`
|
|
AppInstallID uint `json:"appInstallId"`
|
|
AccountID uint `json:"accountId"`
|
|
ConfigPath string `json:"configPath"`
|
|
}
|