| 192 | } |
| 193 | |
| 194 | type Provider struct { |
| 195 | id string |
| 196 | name string |
| 197 | logo string |
| 198 | helpUrl string |
| 199 | registry *ModelRegistry |
| 200 | maskKeys []string |
| 201 | uri IProviderURI |
| 202 | sort int |
| 203 | recommend bool |
| 204 | modelConfig ModelConfig |
| 205 | IConfig |
| 206 | } |
| 207 | |
| 208 | type ModelRegistry struct { |
| 209 | models eosc.Untyped[string, IModel] |
nothing calls this directly
no outgoing calls
no test coverage detected