| 20 | } |
| 21 | |
| 22 | type Model struct { |
| 23 | id string |
| 24 | logo string |
| 25 | name string |
| 26 | accessConfiguration string |
| 27 | modelParameters string |
| 28 | // default: ""/"system", "customize" |
| 29 | source string |
| 30 | // @see ModelTypeLLM etc |
| 31 | modelType string |
| 32 | //defaultConfig string |
| 33 | IConfig |
| 34 | //validator IParamValidator |
| 35 | } |
| 36 | |
| 37 | func (m *Model) SetLogo(logo string) { |
| 38 | m.logo = logo |
nothing calls this directly
no outgoing calls
no test coverage detected