- Co-Authored-By
- Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Add Vercel AI Gateway model fallback list.
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
- pushed
- by user · WAL seq 370 · 2026-08-25T12:29:31.477618Z
Changed files
-
modified
INVARIANTS.md -
modified
config/config.exs -
modified
config/test.exs -
modified
lib/openagents/providers/vercel_gateway.ex -
modified
test/openagents/providers/vercel_gateway_test.exs
Diff
5 files changed, +62 -20
INVARIANTS.md modified +4 -4
@@ -1184,10 +1184,10 @@ A third lane, `OpenAgents.Providers.VercelGateway`, reaches models through
| 1184 | 1184 |
|
| 1185 | 1185 |
|
| 1186 | 1186 |
|
| 1187 |
|
|
| 1188 |
|
|
| 1189 |
|
|
| 1190 |
|
|
| 1187 |
|
|
| 1188 |
|
|
| 1189 |
|
|
| 1190 |
|
|
| 1191 | 1191 |
|
| 1192 | 1192 |
|
| 1193 | 1193 |
|
config/config.exs modified +9 -4
@@ -194,11 +194,16 @@ config :openagents,
| 194 | 194 |
|
| 195 | 195 |
|
| 196 | 196 |
|
| 197 |
|
|
| 198 |
|
|
| 199 |
|
|
| 200 |
|
|
| 197 |
|
|
| 198 |
|
|
| 199 |
|
|
| 200 |
|
|
| 201 | 201 |
|
| 202 |
|
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
|
| 202 | 207 |
|
| 203 | 208 |
|
| 204 | 209 |
|
config/test.exs modified +1
@@ -57,6 +57,7 @@ config :openagents,
| 57 | 57 |
|
| 58 | 58 |
|
| 59 | 59 |
|
| 60 |
|
|
| 60 | 61 |
|
| 61 | 62 |
|
| 62 | 63 |
|
lib/openagents/providers/vercel_gateway.ex modified +19 -5
@@ -21,9 +21,10 @@ defmodule OpenAgents.Providers.VercelGateway do
| 21 | 21 |
|
| 22 | 22 |
|
| 23 | 23 |
|
| 24 |
|
|
| 24 |
|
|
| 25 | 25 |
|
| 26 |
|
|
| 26 |
|
|
| 27 |
|
|
| 27 | 28 |
|
| 28 | 29 |
|
| 29 | 30 |
|
@@ -82,9 +83,22 @@ defmodule OpenAgents.Providers.VercelGateway do
| 82 | 83 |
|
| 83 | 84 |
|
| 84 | 85 |
|
| 85 |
|
|
| 86 |
|
|
| 87 |
|
|
| 86 |
|
|
| 87 |
|
|
| 88 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 97 |
|
|
| 88 | 98 |
|
| 89 | 99 |
|
| 100 |
|
|
| 101 |
|
|
| 102 |
|
|
| 103 |
|
|
| 90 | 104 |
|
test/openagents/providers/vercel_gateway_test.exs modified +29 -7
@@ -3,24 +3,46 @@ defmodule OpenAgents.Providers.VercelGatewayTest do
| 3 | 3 |
|
| 4 | 4 |
|
| 5 | 5 |
|
| 6 |
|
|
| 7 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 | 8 |
|
| 9 | 9 |
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 | 13 |
|
| 14 | 14 |
|
| 15 |
|
|
| 15 |
|
|
| 16 | 16 |
|
| 17 | 17 |
|
| 18 | 18 |
|
| 19 | 19 |
|
| 20 |
|
|
| 20 |
|
|
| 21 | 21 |
|
| 22 | 22 |
|
| 23 | 23 |
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 24 | 46 |
|
| 25 | 47 |
|
| 26 | 48 |
|