Add GLM promotion and Coder changelog
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 468 · 2026-08-27T04:06:58.254039Z
- built
- 14 modules in 122.6 s
- deployed
- live · 14 modules on 3 nodes · push→live —
- deployed
- needs_rolling_replace · 14 modules on 0 nodes · push→live —
Changed files
-
modified
INVARIANTS.md -
modified
config/config.exs -
modified
config/test.exs -
modified
docs/2026-08-21-posthog-integration-runbook.md -
modified
lib/openagents/inference/models.ex -
modified
lib/openagents/inference/pricing.ex -
modified
lib/openagents_web/controllers/changelog_controller.ex -
modified
lib/openagents_web/controllers/inference_proxy_controller.ex -
added
lib/openagents_web/controllers/legacy_changelog_controller.ex -
modified
lib/openagents_web/docs_catalog.ex -
modified
lib/openagents_web/live/home_live.ex -
modified
lib/openagents_web/router.ex -
modified
priv/docs/changelog.md -
modified
priv/docs/commits.md -
modified
priv/docs/welcome.md -
modified
test/openagents/inference/models_test.exs -
modified
test/openagents/inference/pricing_test.exs -
modified
test/openagents/inference_test.exs -
modified
test/openagents/threads_test.exs -
modified
test/openagents_web/controllers/inference_proxy_controller_test.exs -
modified
test/openagents_web/controllers/thread_controller_test.exs -
modified
test/openagents_web/home_controller_test.exs -
modified
test/openagents_web/live/changelog_live_test.exs -
modified
test/openagents_web/live/home_dashboard_live_test.exs -
modified
test/openagents_web/live/home_live_updates_test.exs -
modified
test/openagents_web/live/network_status_live_test.exs -
modified
test/openagents_web/live/thread_show_live_test.exs -
modified
test/openagents_web/transparency_surface_test.exs
Diff
28 files changed, +322 -346
INVARIANTS.md modified +1 -1
@@ -4345,7 +4345,7 @@ published key set included), and `OpenAgentsWeb.NetworkStatusLiveTest`.
| 4345 | 4345 |
|
| 4346 | 4346 |
|
| 4347 | 4347 |
|
| 4348 |
|
|
| 4348 |
|
|
| 4349 | 4349 |
|
| 4350 | 4350 |
|
| 4351 | 4351 |
|
config/config.exs modified +14 -7
@@ -222,16 +222,23 @@ config :openagents,
| 222 | 222 |
|
| 223 | 223 |
|
| 224 | 224 |
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 229 | 228 |
|
| 230 |
|
|
| 231 |
|
|
| 229 |
|
|
| 230 |
|
|
| 232 | 231 |
|
| 233 | 232 |
|
| 234 |
|
|
| 233 |
|
|
| 234 |
|
|
| 235 |
|
|
| 236 |
|
|
| 237 |
|
|
| 238 |
|
|
| 239 |
|
|
| 240 |
|
|
| 241 |
|
|
| 235 | 242 |
|
| 236 | 243 |
|
| 237 | 244 |
|
config/test.exs modified +5
@@ -6,6 +6,11 @@ config :openagents, :repository_provisioner_enabled, false
| 6 | 6 |
|
| 7 | 7 |
|
| 8 | 8 |
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 9 | 14 |
|
| 10 | 15 |
|
| 11 | 16 |
|
docs/2026-08-21-posthog-integration-runbook.md modified +3
@@ -228,6 +228,9 @@ Chat and delegated work:
| 228 | 228 |
|
| 229 | 229 |
|
| 230 | 230 |
|
| 231 |
|
|
| 232 |
|
|
| 233 |
|
|
| 231 | 234 |
|
| 232 | 235 |
|
| 233 | 236 |
|
lib/openagents/inference/models.ex modified +22 -8
@@ -190,26 +190,40 @@ defmodule OpenAgents.Inference.Models do
| 190 | 190 |
|
| 191 | 191 |
|
| 192 | 192 |
|
| 193 |
|
|
| 194 |
|
|
| 193 | 195 |
|
| 194 | 196 |
|
| 195 | 197 |
|
| 196 | 198 |
|
| 197 | 199 |
|
| 198 | 200 |
|
| 199 |
|
|
| 201 |
|
|
| 200 | 202 |
|
| 201 | 203 |
|
| 202 | 204 |
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
|
| 207 |
|
|
| 208 |
|
|
| 209 |
|
|
| 205 |
|
|
| 206 |
|
|
| 207 |
|
|
| 210 | 208 |
|
| 211 | 209 |
|
| 212 | 210 |
|
| 211 |
|
|
| 212 |
|
|
| 213 |
|
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 213 | 227 |
|
| 214 | 228 |
|
| 215 | 229 |
|
lib/openagents/inference/pricing.ex modified +60 -9
@@ -7,8 +7,8 @@ defmodule OpenAgents.Inference.Pricing do
| 7 | 7 |
|
| 8 | 8 |
|
| 9 | 9 |
|
| 10 |
|
|
| 11 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 | 12 |
|
| 13 | 13 |
|
| 14 | 14 |
|
@@ -16,8 +16,9 @@ defmodule OpenAgents.Inference.Pricing do
| 16 | 16 |
|
| 17 | 17 |
|
| 18 | 18 |
|
| 19 |
|
|
| 20 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 21 | 22 |
|
| 22 | 23 |
|
| 23 | 24 |
|
@@ -43,6 +44,40 @@ defmodule OpenAgents.Inference.Pricing do
| 43 | 44 |
|
| 44 | 45 |
|
| 45 | 46 |
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 46 | 81 |
|
| 47 | 82 |
|
| 48 | 83 |
|
@@ -61,11 +96,11 @@ defmodule OpenAgents.Inference.Pricing do
| 61 | 96 |
|
| 62 | 97 |
|
| 63 | 98 |
|
| 64 |
|
|
| 99 |
|
|
| 65 | 100 |
|
| 66 | 101 |
|
| 67 | 102 |
|
| 68 |
|
|
| 103 |
|
|
| 69 | 104 |
|
| 70 | 105 |
|
| 71 | 106 |
|
@@ -84,7 +119,7 @@ defmodule OpenAgents.Inference.Pricing do
| 84 | 119 |
|
| 85 | 120 |
|
| 86 | 121 |
|
| 87 |
|
|
| 122 |
|
|
| 88 | 123 |
|
| 89 | 124 |
|
| 90 | 125 |
|
@@ -105,7 +140,7 @@ defmodule OpenAgents.Inference.Pricing do
| 105 | 140 |
|
| 106 | 141 |
|
| 107 | 142 |
|
| 108 |
|
|
| 143 |
|
|
| 109 | 144 |
|
| 110 | 145 |
|
| 111 | 146 |
|
@@ -184,10 +219,22 @@ defmodule OpenAgents.Inference.Pricing do
| 184 | 219 |
|
| 185 | 220 |
|
| 186 | 221 |
|
| 187 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
|
|
| 188 | 225 |
|
| 189 | 226 |
|
| 190 | 227 |
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
| 232 |
|
|
| 233 |
|
|
| 234 |
|
|
| 235 |
|
|
| 236 |
|
|
| 237 |
|
|
| 191 | 238 |
|
| 192 | 239 |
|
| 193 | 240 |
|
@@ -205,4 +252,8 @@ defmodule OpenAgents.Inference.Pricing do
| 205 | 252 |
|
| 206 | 253 |
|
| 207 | 254 |
|
| 255 |
|
|
| 256 |
|
|
| 257 |
|
|
| 258 |
|
|
| 208 | 259 |
|
lib/openagents_web/controllers/changelog_controller.ex modified +3 -4
@@ -1,10 +1,9 @@
| 1 | 1 |
|
| 2 | 2 |
|
| 3 | 3 |
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 8 | 7 |
|
| 9 | 8 |
|
| 10 | 9 |
|
lib/openagents_web/controllers/inference_proxy_controller.ex modified +13 -1
@@ -39,7 +39,7 @@ defmodule OpenAgentsWeb.InferenceProxyController do
| 39 | 39 |
|
| 40 | 40 |
|
| 41 | 41 |
|
| 42 |
|
|
| 42 |
|
|
| 43 | 43 |
|
| 44 | 44 |
|
| 45 | 45 |
|
@@ -289,6 +289,8 @@ defmodule OpenAgentsWeb.InferenceProxyController do
| 289 | 289 |
|
| 290 | 290 |
|
| 291 | 291 |
|
| 292 |
|
|
| 293 |
|
|
| 292 | 294 |
|
| 293 | 295 |
|
| 294 | 296 |
|
@@ -299,6 +301,16 @@ defmodule OpenAgentsWeb.InferenceProxyController do
| 299 | 301 |
|
| 300 | 302 |
|
| 301 | 303 |
|
| 304 |
|
|
| 305 |
|
|
| 306 |
|
|
| 307 |
|
|
| 308 |
|
|
| 309 |
|
|
| 310 |
|
|
| 311 |
|
|
| 312 |
|
|
| 313 |
|
|
| 302 | 314 |
|
| 303 | 315 |
|
| 304 | 316 |
|
lib/openagents_web/controllers/legacy_changelog_controller.ex added +5
lib/openagents_web/docs_catalog.ex modified +1 -1
@@ -222,7 +222,7 @@ defmodule OpenAgentsWeb.DocsCatalog do
| 222 | 222 |
|
| 223 | 223 |
|
| 224 | 224 |
|
| 225 |
|
|
| 225 |
|
|
| 226 | 226 |
|
| 227 | 227 |
|
| 228 | 228 |
|
lib/openagents_web/live/home_live.ex modified +4 -78
@@ -9,8 +9,7 @@ defmodule OpenAgentsWeb.HomeLive do
| 9 | 9 |
|
| 10 | 10 |
|
| 11 | 11 |
|
| 12 |
|
|
| 13 |
|
|
| 12 |
|
|
| 14 | 13 |
|
| 15 | 14 |
|
| 16 | 15 |
|
@@ -24,8 +23,8 @@ defmodule OpenAgentsWeb.HomeLive do
| 24 | 23 |
|
| 25 | 24 |
|
| 26 | 25 |
|
| 27 |
|
|
| 28 |
|
|
| 26 |
|
|
| 27 |
|
|
| 29 | 28 |
|
| 30 | 29 |
|
| 31 | 30 |
|
@@ -38,7 +37,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 38 | 37 |
|
| 39 | 38 |
|
| 40 | 39 |
|
| 41 |
|
|
| 42 | 40 |
|
| 43 | 41 |
|
| 44 | 42 |
|
@@ -46,8 +44,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 46 | 44 |
|
| 47 | 45 |
|
| 48 | 46 |
|
| 49 |
|
|
| 50 |
|
|
| 51 | 47 |
|
| 52 | 48 |
|
| 53 | 49 |
|
@@ -57,7 +53,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 57 | 53 |
|
| 58 | 54 |
|
| 59 | 55 |
|
| 60 |
|
|
| 61 | 56 |
|
| 62 | 57 |
|
| 63 | 58 |
|
@@ -105,7 +100,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 105 | 100 |
|
| 106 | 101 |
|
| 107 | 102 |
|
| 108 |
|
|
| 109 | 103 |
|
| 110 | 104 |
|
| 111 | 105 |
|
@@ -128,11 +122,7 @@ defmodule OpenAgentsWeb.HomeLive do
| 128 | 122 |
|
| 129 | 123 |
|
| 130 | 124 |
|
| 131 |
|
|
| 132 |
|
|
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 125 |
|
|
| 136 | 126 |
|
| 137 | 127 |
|
| 138 | 128 |
|
@@ -143,7 +133,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 143 | 133 |
|
| 144 | 134 |
|
| 145 | 135 |
|
| 146 |
|
|
| 147 | 136 |
|
| 148 | 137 |
|
| 149 | 138 |
|
@@ -178,7 +167,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 178 | 167 |
|
| 179 | 168 |
|
| 180 | 169 |
|
| 181 |
|
|
| 182 | 170 |
|
| 183 | 171 |
|
| 184 | 172 |
|
@@ -223,14 +211,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 223 | 211 |
|
| 224 | 212 |
|
| 225 | 213 |
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
| 232 |
|
|
| 233 |
|
|
| 234 | 214 |
|
| 235 | 215 |
|
| 236 | 216 |
|
@@ -239,37 +219,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 239 | 219 |
|
| 240 | 220 |
|
| 241 | 221 |
|
| 242 |
|
|
| 243 |
|
|
| 244 |
|
|
| 245 |
|
|
| 246 |
|
|
| 247 |
|
|
| 248 |
|
|
| 249 |
|
|
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 |
|
|
| 254 |
|
|
| 255 |
|
|
| 256 |
|
|
| 257 |
|
|
| 258 |
|
|
| 259 |
|
|
| 260 |
|
|
| 261 |
|
|
| 262 |
|
|
| 263 |
|
|
| 264 |
|
|
| 265 |
|
|
| 266 |
|
|
| 267 |
|
|
| 268 |
|
|
| 269 |
|
|
| 270 |
|
|
| 271 |
|
|
| 272 |
|
|
| 273 | 222 |
|
| 274 | 223 |
|
| 275 | 224 |
|
@@ -455,25 +404,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 455 | 404 |
|
| 456 | 405 |
|
| 457 | 406 |
|
| 458 |
|
|
| 459 |
|
|
| 460 |
|
|
| 461 |
|
|
| 462 |
|
|
| 463 |
|
|
| 464 |
|
|
| 465 |
|
|
| 466 |
|
|
| 467 |
|
|
| 468 |
|
|
| 469 |
|
|
| 470 |
|
|
| 471 |
|
|
| 472 |
|
|
| 473 |
|
|
| 474 |
|
|
| 475 |
|
|
| 476 |
|
|
| 477 | 407 |
|
| 478 | 408 |
|
| 479 | 409 |
|
@@ -581,9 +511,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 581 | 511 |
|
| 582 | 512 |
|
| 583 | 513 |
|
| 584 |
|
|
| 585 |
|
|
| 586 |
|
|
| 587 | 514 |
|
| 588 | 515 |
|
| 589 | 516 |
|
@@ -708,7 +635,6 @@ defmodule OpenAgentsWeb.HomeLive do
| 708 | 635 |
|
| 709 | 636 |
|
| 710 | 637 |
|
| 711 |
|
|
| 712 | 638 |
|
| 713 | 639 |
|
| 714 | 640 |
|
lib/openagents_web/router.ex modified +1 -1
@@ -186,12 +186,12 @@ defmodule OpenAgentsWeb.Router do
| 186 | 186 |
|
| 187 | 187 |
|
| 188 | 188 |
|
| 189 |
|
|
| 189 | 190 |
|
| 190 | 191 |
|
| 191 | 192 |
|
| 192 | 193 |
|
| 193 | 194 |
|
| 194 |
|
|
| 195 | 195 |
|
| 196 | 196 |
|
| 197 | 197 |
|
priv/docs/changelog.md modified +52 -22
@@ -1,24 +1,54 @@
| 1 | 1 |
|
| 2 | 2 |
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
priv/docs/commits.md modified +4 -2
@@ -11,10 +11,12 @@ hundreds of files shows the list and truncates the diffs.
| 11 | 11 |
|
| 12 | 12 |
|
| 13 | 13 |
|
| 14 |
|
|
| 14 |
|
|
| 15 |
|
|
| 15 | 16 |
|
| 16 | 17 |
|
| 17 | 18 |
|
| 18 | 19 |
|
| 19 | 20 |
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
priv/docs/welcome.md modified +3 -3
@@ -18,9 +18,9 @@ renders files and commits in repositories that you can access.
| 18 | 18 |
|
| 19 | 19 |
|
| 20 | 20 |
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 | 24 |
|
| 25 | 25 |
|
| 26 | 26 |
|
test/openagents/inference/models_test.exs modified +17 -10
@@ -1,7 +1,7 @@
| 1 | 1 |
|
| 2 | 2 |
|
| 3 | 3 |
|
| 4 |
|
|
| 4 |
|
|
| 5 | 5 |
|
| 6 | 6 |
|
| 7 | 7 |
|
@@ -157,18 +157,25 @@ defmodule OpenAgents.Inference.ModelsTest do
| 157 | 157 |
|
| 158 | 158 |
|
| 159 | 159 |
|
| 160 |
|
|
| 160 |
|
|
| 161 | 161 |
|
| 162 |
|
|
| 162 | 163 |
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 164 |
|
|
| 167 | 165 |
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 |
|
|
| 174 |
|
|
| 175 |
|
|
| 176 |
|
|
| 177 |
|
|
| 178 |
|
|
| 172 | 179 |
|
| 173 | 180 |
|
| 174 | 181 |
|
test/openagents/inference/pricing_test.exs modified +38 -2
@@ -56,6 +56,38 @@ defmodule OpenAgents.Inference.PricingTest do
| 56 | 56 |
|
| 57 | 57 |
|
| 58 | 58 |
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 87 |
|
|
| 88 |
|
|
| 89 |
|
|
| 90 |
|
|
| 59 | 91 |
|
| 60 | 92 |
|
| 61 | 93 |
|
@@ -136,16 +168,20 @@ defmodule OpenAgents.Inference.PricingTest do
| 136 | 168 |
|
| 137 | 169 |
|
| 138 | 170 |
|
| 139 |
|
|
| 171 |
|
|
| 140 | 172 |
|
| 141 | 173 |
|
| 142 | 174 |
|
| 143 | 175 |
|
| 144 | 176 |
|
| 145 |
|
|
| 177 |
|
|
| 178 |
|
|
| 179 |
|
|
| 146 | 180 |
|
| 147 | 181 |
|
| 148 | 182 |
|
| 183 |
|
|
| 184 |
|
|
| 149 | 185 |
|
| 150 | 186 |
|
| 151 | 187 |
|
test/openagents/inference_test.exs modified +4 -3
@@ -4,7 +4,7 @@ defmodule OpenAgents.InferenceTest do
| 4 | 4 |
|
| 5 | 5 |
|
| 6 | 6 |
|
| 7 |
|
|
| 7 |
|
|
| 8 | 8 |
|
| 9 | 9 |
|
| 10 | 10 |
|
@@ -108,7 +108,8 @@ defmodule OpenAgents.InferenceTest do
| 108 | 108 |
|
| 109 | 109 |
|
| 110 | 110 |
|
| 111 |
|
|
| 111 |
|
|
| 112 |
|
|
| 112 | 113 |
|
| 113 | 114 |
|
| 114 | 115 |
|
@@ -204,7 +205,7 @@ defmodule OpenAgents.InferenceTest do
| 204 | 205 |
|
| 205 | 206 |
|
| 206 | 207 |
|
| 207 |
|
|
| 208 |
|
|
| 208 | 209 |
|
| 209 | 210 |
|
| 210 | 211 |
|
test/openagents/threads_test.exs modified +26 -11
@@ -7,7 +7,7 @@ defmodule OpenAgents.ThreadsTest do
| 7 | 7 |
|
| 8 | 8 |
|
| 9 | 9 |
|
| 10 |
|
|
| 10 |
|
|
| 11 | 11 |
|
| 12 | 12 |
|
| 13 | 13 |
|
@@ -558,7 +558,10 @@ defmodule OpenAgents.ThreadsTest do
| 558 | 558 |
|
| 559 | 559 |
|
| 560 | 560 |
|
| 561 |
|
|
| 561 |
|
|
| 562 |
|
|
| 563 |
|
|
| 564 |
|
|
| 562 | 565 |
|
| 563 | 566 |
|
| 564 | 567 |
|
@@ -583,19 +586,25 @@ defmodule OpenAgents.ThreadsTest do
| 583 | 586 |
|
| 584 | 587 |
|
| 585 | 588 |
|
| 586 |
|
|
| 587 | 589 |
|
| 588 |
|
|
| 590 |
|
|
| 591 |
|
|
| 592 |
|
|
| 593 |
|
|
| 589 | 594 |
|
| 590 |
|
|
| 591 |
|
|
| 595 |
|
|
| 596 |
|
|
| 597 |
|
|
| 592 | 598 |
|
| 593 | 599 |
|
| 594 | 600 |
|
| 595 | 601 |
|
| 596 | 602 |
|
| 597 | 603 |
|
| 598 |
|
|
| 604 |
|
|
| 605 |
|
|
| 606 |
|
|
| 607 |
|
|
| 599 | 608 |
|
| 600 | 609 |
|
| 601 | 610 |
|
@@ -717,11 +726,12 @@ defmodule OpenAgents.ThreadsTest do
| 717 | 726 |
|
| 718 | 727 |
|
| 719 | 728 |
|
| 720 |
|
|
| 729 |
|
|
| 730 |
|
|
| 721 | 731 |
|
| 722 | 732 |
|
| 723 | 733 |
|
| 724 |
|
|
| 734 |
|
|
| 725 | 735 |
|
| 726 | 736 |
|
| 727 | 737 |
|
@@ -743,7 +753,9 @@ defmodule OpenAgents.ThreadsTest do
| 743 | 753 |
|
| 744 | 754 |
|
| 745 | 755 |
|
| 746 |
|
|
| 756 |
|
|
| 757 |
|
|
| 758 |
|
|
| 747 | 759 |
|
| 748 | 760 |
|
| 749 | 761 |
|
@@ -760,7 +772,10 @@ defmodule OpenAgents.ThreadsTest do
| 760 | 772 |
|
| 761 | 773 |
|
| 762 | 774 |
|
| 763 |
|
|
| 775 |
|
|
| 776 |
|
|
| 777 |
|
|
| 778 |
|
|
| 764 | 779 |
|
| 765 | 780 |
|
| 766 | 781 |
|
test/openagents_web/controllers/inference_proxy_controller_test.exs modified +5 -1
@@ -5,6 +5,7 @@ defmodule OpenAgentsWeb.InferenceProxyControllerTest do
| 5 | 5 |
|
| 6 | 6 |
|
| 7 | 7 |
|
| 8 |
|
|
| 8 | 9 |
|
| 9 | 10 |
|
| 10 | 11 |
|
@@ -130,7 +131,8 @@ defmodule OpenAgentsWeb.InferenceProxyControllerTest do
| 130 | 131 |
|
| 131 | 132 |
|
| 132 | 133 |
|
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 134 | 136 |
|
| 135 | 137 |
|
| 136 | 138 |
|
@@ -139,6 +141,8 @@ defmodule OpenAgentsWeb.InferenceProxyControllerTest do
| 139 | 141 |
|
| 140 | 142 |
|
| 141 | 143 |
|
| 144 |
|
|
| 145 |
|
|
| 142 | 146 |
|
| 143 | 147 |
|
| 144 | 148 |
|
test/openagents_web/controllers/thread_controller_test.exs modified +15 -8
@@ -11,7 +11,7 @@ defmodule OpenAgentsWeb.ThreadControllerTest do
| 11 | 11 |
|
| 12 | 12 |
|
| 13 | 13 |
|
| 14 |
|
|
| 14 |
|
|
| 15 | 15 |
|
| 16 | 16 |
|
| 17 | 17 |
|
@@ -291,12 +291,16 @@ defmodule OpenAgentsWeb.ThreadControllerTest do
| 291 | 291 |
|
| 292 | 292 |
|
| 293 | 293 |
|
| 294 |
|
|
| 294 |
|
|
| 295 |
|
|
| 296 |
|
|
| 297 |
|
|
| 295 | 298 |
|
| 296 | 299 |
|
| 297 | 300 |
|
| 298 | 301 |
|
| 299 |
|
|
| 302 |
|
|
| 303 |
|
|
| 300 | 304 |
|
| 301 | 305 |
|
| 302 | 306 |
|
@@ -1553,17 +1557,20 @@ defmodule OpenAgentsWeb.ThreadControllerTest do
| 1553 | 1557 |
|
| 1554 | 1558 |
|
| 1555 | 1559 |
|
| 1556 |
|
|
| 1560 |
|
|
| 1561 |
|
|
| 1557 | 1562 |
|
| 1558 | 1563 |
|
| 1559 | 1564 |
|
| 1560 | 1565 |
|
| 1561 |
|
|
| 1566 |
|
|
| 1562 | 1567 |
|
| 1563 | 1568 |
|
| 1564 |
|
|
| 1565 |
|
|
| 1566 |
|
|
| 1569 |
|
|
| 1570 |
|
|
| 1571 |
|
|
| 1572 |
|
|
| 1573 |
|
|
| 1567 | 1574 |
|
| 1568 | 1575 |
|
| 1569 | 1576 |
|
test/openagents_web/home_controller_test.exs modified +4 -2
@@ -24,6 +24,7 @@ defmodule OpenAgentsWeb.HomeControllerTest do
| 24 | 24 |
|
| 25 | 25 |
|
| 26 | 26 |
|
| 27 |
|
|
| 27 | 28 |
|
| 28 | 29 |
|
| 29 | 30 |
|
@@ -31,10 +32,11 @@ defmodule OpenAgentsWeb.HomeControllerTest do
| 31 | 32 |
|
| 32 | 33 |
|
| 33 | 34 |
|
| 34 |
|
|
| 35 |
|
|
| 35 | 36 |
|
| 36 | 37 |
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 38 | 40 |
|
| 39 | 41 |
|
| 40 | 42 |
|
test/openagents_web/live/changelog_live_test.exs modified +9 -40
@@ -1,11 +1,6 @@
| 1 | 1 |
|
| 2 | 2 |
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 3 |
|
|
| 9 | 4 |
|
| 10 | 5 |
|
| 11 | 6 |
|
@@ -31,44 +26,18 @@ defmodule OpenAgentsWeb.ChangelogLiveTest do
| 31 | 26 |
|
| 32 | 27 |
|
| 33 | 28 |
|
| 34 |
|
|
| 35 |
|
|
| 29 |
|
|
| 30 |
|
|
| 36 | 31 |
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 32 |
|
|
| 40 | 33 |
|
| 41 | 34 |
|
| 42 |
|
|
| 43 |
|
|
| 35 |
|
|
| 36 |
|
|
| 44 | 37 |
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 72 | 41 |
|
| 73 | 42 |
|
| 74 | 43 |
|
test/openagents_web/live/home_dashboard_live_test.exs modified +2 -72
@@ -6,8 +6,8 @@ defmodule OpenAgentsWeb.HomeDashboardLiveTest do
| 6 | 6 |
|
| 7 | 7 |
|
| 8 | 8 |
|
| 9 |
|
|
| 10 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 | 11 |
|
| 12 | 12 |
|
| 13 | 13 |
|
@@ -15,8 +15,6 @@ defmodule OpenAgentsWeb.HomeDashboardLiveTest do
| 15 | 15 |
|
| 16 | 16 |
|
| 17 | 17 |
|
| 18 |
|
|
| 19 |
|
|
| 20 | 18 |
|
| 21 | 19 |
|
| 22 | 20 |
|
@@ -25,9 +23,6 @@ defmodule OpenAgentsWeb.HomeDashboardLiveTest do
| 25 | 23 |
|
| 26 | 24 |
|
| 27 | 25 |
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 | 26 |
|
| 32 | 27 |
|
| 33 | 28 |
|
@@ -160,55 +155,6 @@ defmodule OpenAgentsWeb.HomeDashboardLiveTest do
| 160 | 155 |
|
| 161 | 156 |
|
| 162 | 157 |
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 |
|
|
| 174 |
|
|
| 175 |
|
|
| 176 |
|
|
| 177 |
|
|
| 178 |
|
|
| 179 |
|
|
| 180 |
|
|
| 181 |
|
|
| 182 |
|
|
| 183 |
|
|
| 184 |
|
|
| 185 |
|
|
| 186 |
|
|
| 187 |
|
|
| 188 |
|
|
| 189 |
|
|
| 190 |
|
|
| 191 |
|
|
| 192 |
|
|
| 193 |
|
|
| 194 |
|
|
| 195 |
|
|
| 196 |
|
|
| 197 |
|
|
| 198 |
|
|
| 199 |
|
|
| 200 |
|
|
| 201 |
|
|
| 202 |
|
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
|
| 207 |
|
|
| 208 |
|
|
| 209 |
|
|
| 210 |
|
|
| 211 |
|
|
| 212 | 158 |
|
| 213 | 159 |
|
| 214 | 160 |
|
@@ -237,22 +183,6 @@ defmodule OpenAgentsWeb.HomeDashboardLiveTest do
| 237 | 183 |
|
| 238 | 184 |
|
| 239 | 185 |
|
| 240 |
|
|
| 241 |
|
|
| 242 |
|
|
| 243 |
|
|
| 244 |
|
|
| 245 |
|
|
| 246 |
|
|
| 247 |
|
|
| 248 |
|
|
| 249 |
|
|
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 |
|
|
| 254 |
|
|
| 255 |
|
|
| 256 | 186 |
|
| 257 | 187 |
|
| 258 | 188 |
|
test/openagents_web/live/home_live_updates_test.exs modified +1 -53
@@ -24,7 +24,6 @@ defmodule OpenAgentsWeb.HomeLiveUpdatesTest do
| 24 | 24 |
|
| 25 | 25 |
|
| 26 | 26 |
|
| 27 |
|
|
| 28 | 27 |
|
| 29 | 28 |
|
| 30 | 29 |
|
@@ -39,9 +38,6 @@ defmodule OpenAgentsWeb.HomeLiveUpdatesTest do
| 39 | 38 |
|
| 40 | 39 |
|
| 41 | 40 |
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 | 41 |
|
| 46 | 42 |
|
| 47 | 43 |
|
@@ -195,41 +191,6 @@ defmodule OpenAgentsWeb.HomeLiveUpdatesTest do
| 195 | 191 |
|
| 196 | 192 |
|
| 197 | 193 |
|
| 198 |
|
|
| 199 |
|
|
| 200 |
|
|
| 201 |
|
|
| 202 |
|
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
|
| 207 |
|
|
| 208 |
|
|
| 209 |
|
|
| 210 |
|
|
| 211 |
|
|
| 212 |
|
|
| 213 |
|
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
| 232 |
|
|
| 233 | 194 |
|
| 234 | 195 |
|
| 235 | 196 |
|
@@ -346,10 +307,9 @@ defmodule OpenAgentsWeb.HomeLiveUpdatesTest do
| 346 | 307 |
|
| 347 | 308 |
|
| 348 | 309 |
|
| 349 |
|
|
| 310 |
|
|
| 350 | 311 |
|
| 351 | 312 |
|
| 352 |
|
|
| 353 | 313 |
|
| 354 | 314 |
|
| 355 | 315 |
|
@@ -403,18 +363,6 @@ defmodule OpenAgentsWeb.HomeLiveUpdatesTest do
| 403 | 363 |
|
| 404 | 364 |
|
| 405 | 365 |
|
| 406 |
|
|
| 407 |
|
|
| 408 |
|
|
| 409 |
|
|
| 410 |
|
|
| 411 |
|
|
| 412 |
|
|
| 413 |
|
|
| 414 |
|
|
| 415 |
|
|
| 416 |
|
|
| 417 |
|
|
| 418 | 366 |
|
| 419 | 367 |
|
| 420 | 368 |
|
test/openagents_web/live/network_status_live_test.exs modified +4 -1
@@ -11,7 +11,10 @@ defmodule OpenAgentsWeb.NetworkStatusLiveTest do
| 11 | 11 |
|
| 12 | 12 |
|
| 13 | 13 |
|
| 14 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 15 | 18 |
|
| 16 | 19 |
|
| 17 | 20 |
|
test/openagents_web/live/thread_show_live_test.exs modified +3 -2
@@ -144,7 +144,7 @@ defmodule OpenAgentsWeb.ThreadShowLiveTest do
| 144 | 144 |
|
| 145 | 145 |
|
| 146 | 146 |
|
| 147 |
|
|
| 147 |
|
|
| 148 | 148 |
|
| 149 | 149 |
|
| 150 | 150 |
|
@@ -160,7 +160,8 @@ defmodule OpenAgentsWeb.ThreadShowLiveTest do
| 160 | 160 |
|
| 161 | 161 |
|
| 162 | 162 |
|
| 163 |
|
|
| 163 |
|
|
| 164 |
|
|
| 164 | 165 |
|
| 165 | 166 |
|
| 166 | 167 |
|
test/openagents_web/transparency_surface_test.exs modified +3 -4
@@ -3,7 +3,7 @@ defmodule OpenAgentsWeb.TransparencySurfaceTest do
| 3 | 3 |
|
| 4 | 4 |
|
| 5 | 5 |
|
| 6 |
|
|
| 6 |
|
|
| 7 | 7 |
|
| 8 | 8 |
|
| 9 | 9 |
|
@@ -53,10 +53,9 @@ defmodule OpenAgentsWeb.TransparencySurfaceTest do
| 53 | 53 |
|
| 54 | 54 |
|
| 55 | 55 |
|
| 56 |
|
|
| 57 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 | 58 |
|
| 59 |
|
|
| 60 | 59 |
|
| 61 | 60 |
|
| 62 | 61 |
|