fix(data): fix default models

Andrey Nering created

Change summary

cmd/copilot/main.go                     | 2 +-
cmd/nebius/main.go                      | 2 +-
internal/providers/configs/copilot.json | 2 +-
internal/providers/configs/nebius.json  | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)

Detailed changes

cmd/copilot/main.go 🔗

@@ -123,7 +123,7 @@ func run() error {
 		Models:              catwalkModels,
 		APIEndpoint:         "https://api.githubcopilot.com",
 		Type:                catwalk.TypeOpenAICompat,
-		DefaultLargeModelID: "claude-opus-4.6",
+		DefaultLargeModelID: "claude-sonnet-4.6",
 		DefaultSmallModelID: "claude-haiku-4.5",
 	}
 	data, err := json.MarshalIndent(provider, "", "  ")

cmd/nebius/main.go 🔗

@@ -96,7 +96,7 @@ func main() {
 		APIKey:              "$NEBIUS_API_KEY",
 		APIEndpoint:         "https://api.tokenfactory.nebius.com/v1", // this is their default region, eu-north1
 		Type:                catwalk.TypeOpenAICompat,
-		DefaultLargeModelID: "Qwen/Qwen3-Coder-30B-A3B-Instruct",
+		DefaultLargeModelID: "moonshotai/Kimi-K2.5",
 		DefaultSmallModelID: "nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B",
 	}
 

internal/providers/configs/copilot.json 🔗

@@ -3,7 +3,7 @@
   "id": "copilot",
   "api_endpoint": "https://api.githubcopilot.com",
   "type": "openai-compat",
-  "default_large_model_id": "claude-opus-4.6",
+  "default_large_model_id": "claude-sonnet-4.6",
   "default_small_model_id": "claude-haiku-4.5",
   "models": [
     {

internal/providers/configs/nebius.json 🔗

@@ -4,7 +4,7 @@
   "api_key": "$NEBIUS_API_KEY",
   "api_endpoint": "https://api.tokenfactory.nebius.com/v1",
   "type": "openai-compat",
-  "default_large_model_id": "Qwen/Qwen3-Coder-30B-A3B-Instruct",
+  "default_large_model_id": "moonshotai/Kimi-K2.5",
   "default_small_model_id": "nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B",
   "models": [
     {