mirror of
https://github.com/router-for-me/CLIProxyAPIPlus.git
synced 2026-03-08 06:43:41 +00:00
22 lines
685 B
Go
22 lines
685 B
Go
// Package registry provides model definitions for various AI service providers.
|
|
package registry
|
|
|
|
// GetKiloModels returns the Kilo model definitions
|
|
func GetKiloModels() []*ModelInfo {
|
|
return []*ModelInfo{
|
|
// --- Base Models ---
|
|
{
|
|
ID: "kilo/auto",
|
|
Object: "model",
|
|
Created: 1732752000,
|
|
OwnedBy: "kilo",
|
|
Type: "kilo",
|
|
DisplayName: "Kilo Auto",
|
|
Description: "Automatic model selection by Kilo",
|
|
ContextLength: 200000,
|
|
MaxCompletionTokens: 64000,
|
|
Thinking: &ThinkingSupport{Min: 1024, Max: 32000, ZeroAllowed: true, DynamicAllowed: true},
|
|
},
|
|
}
|
|
}
|