Commit 7a079ee8e7f2

Vincent Demeester <vincent@sbr.pm>
2026-07-28 22:51:10
feat(pi): restructure gpt and gemini modes
Replaced the codex modes with sol, terra and luna gpt tiers, added a haiku based super fast copilot mode, moved gemini to the latest pro and flash releases, and dropped the unused local and vertex haiku modes.
1 parent 35c65a2
Changed files (1)
dots
pi
dots/pi/agent/modes.json
@@ -21,13 +21,13 @@
     },
     "wide": {
       "provider": "google",
-      "modelId": "gemini-3-pro-preview",
+      "modelId": "gemini-3.1-pro-preview",
       "thinkingLevel": "low",
       "color": "#4285f4"
     },
     "flash": {
       "provider": "google",
-      "modelId": "gemini-2.5-flash",
+      "modelId": "gemini-3.6-flash",
       "thinkingLevel": "minimal",
       "color": "#34a853"
     },
@@ -55,29 +55,35 @@
       "thinkingLevel": "low",
       "color": "#f97316"
     },
-    "codex-oss": {
+    "super-fast-oss": {
       "provider": "github-copilot",
-      "modelId": "gpt-5.3-codex",
+      "modelId": "claude-haiku-4.5",
+      "thinkingLevel": "off",
+      "color": "#67e8f9"
+    },
+    "code-oss-gpt": {
+      "provider": "github-copilot",
+      "modelId": "gpt-5.6-sol",
+      "thinkingLevel": "low",
+      "color": "#fbbf24"
+    },
+    "fast-oss-gpt": {
+      "provider": "github-copilot",
+      "modelId": "gpt-5.6-terra",
       "thinkingLevel": "low",
       "color": "#a3e635"
     },
-    "codex-oss-premium": {
+    "super-fast-oss-gpt": {
       "provider": "github-copilot",
-      "modelId": "gpt-5.5",
-      "thinkingLevel": "low",
-      "color": "#fbbf24"
+      "modelId": "gpt-5.6-luna",
+      "thinkingLevel": "off",
+      "color": "#a3e635"
     },
     "free-code": {
       "provider": "openrouter",
       "modelId": "qwen/qwen3-coder:free",
       "thinkingLevel": "off",
       "color": "#f59e0b"
-    },
-    "local": {
-      "provider": "llama-cpp",
-      "modelId": "Qwen/Qwen3-Coder-Next-GGUF:Q3_K_M",
-      "thinkingLevel": "off",
-      "color": "#ef4444"
     }
   }
 }