mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-14 20:41:15 +08:00
30 lines
687 B
Go
30 lines
687 B
Go
package ai_dto
|
|
|
|
type Provider struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Config string `json:"config"`
|
|
GetAPIKeyUrl string `json:"get_apikey_url"`
|
|
}
|
|
|
|
type ProviderItem struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
DefaultLLM string `json:"default_llm"`
|
|
Logo string `json:"logo"`
|
|
Configured bool `json:"configured"`
|
|
}
|
|
|
|
type SimpleProviderItem struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Logo string `json:"logo"`
|
|
Configured bool `json:"configured"`
|
|
}
|
|
|
|
type LLMItem struct {
|
|
Id string `json:"id"`
|
|
Logo string `json:"logo"`
|
|
Scopes []string `json:"scopes"`
|
|
}
|