fix(neuralwatt): update default small model ID from Devstral to Qwen3.6-35B (#279)

Joey created

Devstral-Small-24B is being deprecated from the Neuralwatt API.
Qwen3.6-35B is the designated replacement for the small model tier.
Only touches neuralwatt provider files.

Change summary

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

Detailed changes

cmd/neuralwatt/main.go 🔗

@@ -113,7 +113,7 @@ func main() {
 		APIEndpoint:         "https://api.neuralwatt.com/v1",
 		Type:                catwalk.TypeOpenAICompat,
 		DefaultLargeModelID: "zai-org/GLM-5.1-FP8",
-		DefaultSmallModelID: "mistralai/Devstral-Small-2-24B-Instruct-2512",
+		DefaultSmallModelID: "Qwen/Qwen3.6-35B-A3B",
 	}
 
 	modelsResp, err := fetchNeuralwattModels(neuralwattProvider.APIEndpoint)

internal/providers/configs/neuralwatt.json 🔗

@@ -5,7 +5,7 @@
   "api_endpoint": "https://api.neuralwatt.com/v1",
   "type": "openai-compat",
   "default_large_model_id": "zai-org/GLM-5.1-FP8",
-  "default_small_model_id": "mistralai/Devstral-Small-2-24B-Instruct-2512",
+  "default_small_model_id": "Qwen/Qwen3.6-35B-A3B",
   "models": [
     {
       "id": "mistralai/Devstral-Small-2-24B-Instruct-2512",