codex-autorunner 1.1.0__py3-none-any.whl → 1.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- codex_autorunner/agents/opencode/client.py +113 -4
- codex_autorunner/agents/opencode/supervisor.py +4 -0
- codex_autorunner/agents/registry.py +17 -7
- codex_autorunner/bootstrap.py +219 -1
- codex_autorunner/core/__init__.py +17 -1
- codex_autorunner/core/about_car.py +124 -11
- codex_autorunner/core/app_server_threads.py +6 -0
- codex_autorunner/core/config.py +238 -3
- codex_autorunner/core/context_awareness.py +39 -0
- codex_autorunner/core/docs.py +0 -122
- codex_autorunner/core/filebox.py +265 -0
- codex_autorunner/core/flows/controller.py +71 -1
- codex_autorunner/core/flows/reconciler.py +4 -1
- codex_autorunner/core/flows/runtime.py +22 -0
- codex_autorunner/core/flows/store.py +61 -9
- codex_autorunner/core/flows/transition.py +23 -16
- codex_autorunner/core/flows/ux_helpers.py +18 -3
- codex_autorunner/core/flows/worker_process.py +32 -6
- codex_autorunner/core/hub.py +198 -41
- codex_autorunner/core/lifecycle_events.py +253 -0
- codex_autorunner/core/path_utils.py +2 -1
- codex_autorunner/core/pma_audit.py +224 -0
- codex_autorunner/core/pma_context.py +683 -0
- codex_autorunner/core/pma_dispatch_interceptor.py +284 -0
- codex_autorunner/core/pma_lifecycle.py +527 -0
- codex_autorunner/core/pma_queue.py +367 -0
- codex_autorunner/core/pma_safety.py +221 -0
- codex_autorunner/core/pma_state.py +115 -0
- codex_autorunner/core/ports/agent_backend.py +2 -5
- codex_autorunner/core/ports/run_event.py +1 -4
- codex_autorunner/core/prompt.py +0 -80
- codex_autorunner/core/prompts.py +56 -172
- codex_autorunner/core/redaction.py +0 -4
- codex_autorunner/core/review_context.py +11 -9
- codex_autorunner/core/runner_controller.py +35 -33
- codex_autorunner/core/runner_state.py +147 -0
- codex_autorunner/core/runtime.py +829 -0
- codex_autorunner/core/sqlite_utils.py +13 -4
- codex_autorunner/core/state.py +7 -10
- codex_autorunner/core/state_roots.py +5 -0
- codex_autorunner/core/templates/__init__.py +39 -0
- codex_autorunner/core/templates/git_mirror.py +234 -0
- codex_autorunner/core/templates/provenance.py +56 -0
- codex_autorunner/core/templates/scan_cache.py +120 -0
- codex_autorunner/core/ticket_linter_cli.py +17 -0
- codex_autorunner/core/ticket_manager_cli.py +154 -92
- codex_autorunner/core/time_utils.py +11 -0
- codex_autorunner/core/types.py +18 -0
- codex_autorunner/core/utils.py +34 -6
- codex_autorunner/flows/review/service.py +23 -25
- codex_autorunner/flows/ticket_flow/definition.py +43 -1
- codex_autorunner/integrations/agents/__init__.py +2 -0
- codex_autorunner/integrations/agents/backend_orchestrator.py +18 -0
- codex_autorunner/integrations/agents/codex_backend.py +19 -8
- codex_autorunner/integrations/agents/runner.py +3 -8
- codex_autorunner/integrations/agents/wiring.py +8 -0
- codex_autorunner/integrations/telegram/adapter.py +1 -1
- codex_autorunner/integrations/telegram/config.py +1 -1
- codex_autorunner/integrations/telegram/doctor.py +228 -6
- codex_autorunner/integrations/telegram/handlers/commands/execution.py +236 -74
- codex_autorunner/integrations/telegram/handlers/commands/files.py +314 -75
- codex_autorunner/integrations/telegram/handlers/commands/flows.py +346 -58
- codex_autorunner/integrations/telegram/handlers/commands/workspace.py +498 -37
- codex_autorunner/integrations/telegram/handlers/commands_runtime.py +202 -45
- codex_autorunner/integrations/telegram/handlers/commands_spec.py +18 -7
- codex_autorunner/integrations/telegram/handlers/messages.py +34 -3
- codex_autorunner/integrations/telegram/helpers.py +1 -3
- codex_autorunner/integrations/telegram/runtime.py +9 -4
- codex_autorunner/integrations/telegram/service.py +30 -0
- codex_autorunner/integrations/telegram/state.py +38 -0
- codex_autorunner/integrations/telegram/ticket_flow_bridge.py +10 -4
- codex_autorunner/integrations/telegram/transport.py +10 -3
- codex_autorunner/integrations/templates/__init__.py +27 -0
- codex_autorunner/integrations/templates/scan_agent.py +312 -0
- codex_autorunner/server.py +2 -2
- codex_autorunner/static/agentControls.js +21 -5
- codex_autorunner/static/app.js +115 -11
- codex_autorunner/static/archive.js +274 -81
- codex_autorunner/static/archiveApi.js +21 -0
- codex_autorunner/static/chatUploads.js +137 -0
- codex_autorunner/static/constants.js +1 -1
- codex_autorunner/static/docChatCore.js +185 -13
- codex_autorunner/static/fileChat.js +68 -40
- codex_autorunner/static/fileboxUi.js +159 -0
- codex_autorunner/static/hub.js +46 -81
- codex_autorunner/static/index.html +303 -24
- codex_autorunner/static/messages.js +82 -4
- codex_autorunner/static/notifications.js +288 -0
- codex_autorunner/static/pma.js +1167 -0
- codex_autorunner/static/settings.js +3 -0
- codex_autorunner/static/streamUtils.js +57 -0
- codex_autorunner/static/styles.css +9141 -6742
- codex_autorunner/static/templateReposSettings.js +225 -0
- codex_autorunner/static/terminalManager.js +22 -3
- codex_autorunner/static/ticketChatActions.js +165 -3
- codex_autorunner/static/ticketChatStream.js +17 -119
- codex_autorunner/static/ticketEditor.js +41 -13
- codex_autorunner/static/ticketTemplates.js +798 -0
- codex_autorunner/static/tickets.js +69 -19
- codex_autorunner/static/turnEvents.js +27 -0
- codex_autorunner/static/turnResume.js +33 -0
- codex_autorunner/static/utils.js +28 -0
- codex_autorunner/static/workspace.js +258 -44
- codex_autorunner/static/workspaceFileBrowser.js +6 -4
- codex_autorunner/surfaces/cli/cli.py +1465 -155
- codex_autorunner/surfaces/cli/pma_cli.py +817 -0
- codex_autorunner/surfaces/web/app.py +253 -49
- codex_autorunner/surfaces/web/routes/__init__.py +4 -0
- codex_autorunner/surfaces/web/routes/analytics.py +29 -22
- codex_autorunner/surfaces/web/routes/archive.py +197 -0
- codex_autorunner/surfaces/web/routes/file_chat.py +297 -36
- codex_autorunner/surfaces/web/routes/filebox.py +227 -0
- codex_autorunner/surfaces/web/routes/flows.py +219 -29
- codex_autorunner/surfaces/web/routes/messages.py +70 -39
- codex_autorunner/surfaces/web/routes/pma.py +1652 -0
- codex_autorunner/surfaces/web/routes/repos.py +1 -1
- codex_autorunner/surfaces/web/routes/shared.py +0 -3
- codex_autorunner/surfaces/web/routes/templates.py +634 -0
- codex_autorunner/surfaces/web/runner_manager.py +2 -2
- codex_autorunner/surfaces/web/schemas.py +81 -18
- codex_autorunner/tickets/agent_pool.py +27 -0
- codex_autorunner/tickets/files.py +33 -16
- codex_autorunner/tickets/lint.py +50 -0
- codex_autorunner/tickets/models.py +3 -0
- codex_autorunner/tickets/outbox.py +41 -5
- codex_autorunner/tickets/runner.py +350 -69
- {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.1.dist-info}/METADATA +15 -19
- {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.1.dist-info}/RECORD +132 -101
- codex_autorunner/core/adapter_utils.py +0 -21
- codex_autorunner/core/engine.py +0 -3302
- {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.1.dist-info}/WHEEL +0 -0
- {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.1.dist-info}/entry_points.txt +0 -0
- {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.1.dist-info}/licenses/LICENSE +0 -0
- {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.1.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
codex_autorunner/__init__.py,sha256=EyZQrh8IKtssHmoNafaN7--MNRG4DhLA-w7T7-AJqhk,205
|
|
2
2
|
codex_autorunner/__main__.py,sha256=Qd-f8z2Q2vpiEP2x6PBFsJrpACWDVxFKQk820MhFmHo,59
|
|
3
3
|
codex_autorunner/api.py,sha256=1QIExNBqoNfND7ldsa36E65MGaBstutrr7j6Dgs5W74,705
|
|
4
|
-
codex_autorunner/bootstrap.py,sha256=
|
|
4
|
+
codex_autorunner/bootstrap.py,sha256=rvUj4RLEhDFoEbNmtOTOEQKUlYDdak2kwVx_VgBPRt8,12558
|
|
5
5
|
codex_autorunner/cli.py,sha256=UKTukqhpK2pSJeFdVT1ESAGgjR_VGAtfHaovpwydf0k,222
|
|
6
6
|
codex_autorunner/codex_cli.py,sha256=SkIFfNx7-sJB2QXa9Sy3r0MjovkGTFe8zM96vVxCA9E,384
|
|
7
7
|
codex_autorunner/codex_runner.py,sha256=P0yHlZZjVYWLVH1O4b5VUwQs_mkJspPPG3-nULWt4Cw,362
|
|
@@ -9,98 +9,114 @@ codex_autorunner/discovery.py,sha256=8vwGq5YKAZpyTFY-mcv2L7oZY1ECkgqeeu-jD3SBGaI
|
|
|
9
9
|
codex_autorunner/housekeeping.py,sha256=1Jk3-vIDfYfXf1N63Dqz7C-i0ACGYTzRcgYHcYDjsZo,12826
|
|
10
10
|
codex_autorunner/manifest.py,sha256=-1pQfCNFeAei9r-Z5wqJV2_EmJ6jNhYZ4y1aIc__w-8,6545
|
|
11
11
|
codex_autorunner/plugin_api.py,sha256=o-87FVzjSbC1od55aGF3O3pp-NkKX9hDKOcEeh0J5BU,664
|
|
12
|
-
codex_autorunner/server.py,sha256=
|
|
12
|
+
codex_autorunner/server.py,sha256=BINEzCpVBJW0gXMe2jBmnwpuaFy36Ukp5YWXK72seKA,451
|
|
13
13
|
codex_autorunner/agents/__init__.py,sha256=6xEQXHkZ40kHadHB9Is5fK9dGGVsgryasoRllIN8_ho,418
|
|
14
14
|
codex_autorunner/agents/base.py,sha256=UiYYYvSYrEjTHy0tjs8O8hcTwrgMtmuyrhoVW9EkiYY,1643
|
|
15
|
-
codex_autorunner/agents/registry.py,sha256=
|
|
15
|
+
codex_autorunner/agents/registry.py,sha256=n9snnwQapd426vtoeDyOnIlfpC-97vpI-xbaIadzolE,8516
|
|
16
16
|
codex_autorunner/agents/types.py,sha256=3dzkr0Rvn2EgSiJ1k65f6MF0ZEXifGK7GhUF4Nr2GBs,727
|
|
17
17
|
codex_autorunner/agents/codex/__init__.py,sha256=GQ9KHMVT2ggOe1jT1kHEPfJLRDzfH0doGJCNwO4a2o0,92
|
|
18
18
|
codex_autorunner/agents/codex/harness.py,sha256=Eva1uR-QuWpMk07VuDLXVpterpqOHls5WadbnpJnnOs,8440
|
|
19
19
|
codex_autorunner/agents/opencode/__init__.py,sha256=nTTukw5TzOKURCTyF7CJsbx-rh-9sue79XvqsOVTTNc,478
|
|
20
20
|
codex_autorunner/agents/opencode/agent_config.py,sha256=VO3qske0X75S8eoK6XR3NUNJq_WzGLJu1KsZdOFF-MY,2922
|
|
21
|
-
codex_autorunner/agents/opencode/client.py,sha256=
|
|
21
|
+
codex_autorunner/agents/opencode/client.py,sha256=G32-WeoN7D4dO9GO4ymqCg_XTMxa5Kjwb_ylzy1ApJo,23738
|
|
22
22
|
codex_autorunner/agents/opencode/constants.py,sha256=h9rywpj-Lqio-pRVZ74CEbq8TOVI11oEEIXwY9hQ9FA,85
|
|
23
23
|
codex_autorunner/agents/opencode/events.py,sha256=c0OxtbfYtmYRwMyt4UOgRiAmunfT76huXBDQuybB0jg,1828
|
|
24
24
|
codex_autorunner/agents/opencode/harness.py,sha256=djALbaAhEi3coX4oSqhIne_9JHC19Gf-VcBca-a9R9I,10788
|
|
25
25
|
codex_autorunner/agents/opencode/logging.py,sha256=pbIS4xG84fkLrdNKiX2Y4zMTqj-ADzXOCNNPlnw1-z0,8423
|
|
26
26
|
codex_autorunner/agents/opencode/run_prompt.py,sha256=b4sZcuRgyHrM2jouEGZGeCw-nOwqUFX6OPy92e64kJ4,8656
|
|
27
27
|
codex_autorunner/agents/opencode/runtime.py,sha256=CTeARdmkCfyp2TB193vG4GeXB1MNPZ4S83OMMqGProE,63958
|
|
28
|
-
codex_autorunner/agents/opencode/supervisor.py,sha256=
|
|
29
|
-
codex_autorunner/core/__init__.py,sha256=
|
|
30
|
-
codex_autorunner/core/about_car.py,sha256=
|
|
31
|
-
codex_autorunner/core/adapter_utils.py,sha256=o1AUZVhyQTMF-DaaWNVINnXJ_8HAyjaj6mqfDABYW9Q,728
|
|
28
|
+
codex_autorunner/agents/opencode/supervisor.py,sha256=KJ-Zz4nE12NsL5QZSMSejPFCiOHKDePVmAnthVwRaFU,18625
|
|
29
|
+
codex_autorunner/core/__init__.py,sha256=tLqdoJBO1Xvr9umB50rLnn7z-GzMF1VKc-2ZzW7FUTQ,535
|
|
30
|
+
codex_autorunner/core/about_car.py,sha256=iLQOJgkMWPz2naTUKM20grUz-YC3qYbm_cd_WqCC9As,11483
|
|
32
31
|
codex_autorunner/core/app_server_ids.py,sha256=hn1AOx5RXN2gKtxdgfhFYGaYFAHxOJdgcvp1yqQyRMg,1839
|
|
33
32
|
codex_autorunner/core/app_server_logging.py,sha256=bXmc03VfpBRX0_WYW6QYJ7XLWpd-hnkJB_EnSr1WFOY,7792
|
|
34
33
|
codex_autorunner/core/app_server_prompts.py,sha256=Sjx22i7bxb8qFBBvkcFgyvHLEqFbz3IuGKTALRzsfjo,4222
|
|
35
|
-
codex_autorunner/core/app_server_threads.py,sha256=
|
|
34
|
+
codex_autorunner/core/app_server_threads.py,sha256=8cHq4Z5SpMNntF1BWrI2z8r3PHOQu0ARyT2PQXIPoII,6645
|
|
36
35
|
codex_autorunner/core/app_server_utils.py,sha256=We3SjezC4FFfYcQc8t8g40GWZlJft_1CFt1LCSgs298,5148
|
|
37
36
|
codex_autorunner/core/archive.py,sha256=CyUiGChq9LrbnDOWAi8LgHllcHd79ZxbBIm5O7m_wjk,10415
|
|
38
37
|
codex_autorunner/core/circuit_breaker.py,sha256=DL8lUrZPluzvNHgCMDUJjWuYytgmVzhL30va8M3TPQ4,6205
|
|
39
38
|
codex_autorunner/core/codex_runner.py,sha256=iteZnbPnsvfYBopCvvhyWIbnx_eVUJWu6A-gilVGVcw,3353
|
|
40
|
-
codex_autorunner/core/config.py,sha256=
|
|
41
|
-
codex_autorunner/core/
|
|
39
|
+
codex_autorunner/core/config.py,sha256=A3L7po_ojBKIbxaEF5DnLwulw2A_tSbVNhIjjAe3fHo,117533
|
|
40
|
+
codex_autorunner/core/context_awareness.py,sha256=lTV_37vAGtnnMlkCmKyUTmJOAp55mUJMEyHyx_ftU2E,1877
|
|
41
|
+
codex_autorunner/core/docs.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
42
|
codex_autorunner/core/drafts.py,sha256=VeHfBmUpQDFmVZH2RSbZHCi7lIiMVrCFRf0iENlreEY,4202
|
|
43
|
-
codex_autorunner/core/engine.py,sha256=Xr6t5SEhpQHeXsHIgTnLhZNB3AugkEjUl43vNYxG37c,127524
|
|
44
43
|
codex_autorunner/core/exceptions.py,sha256=CJAOtYagbVSieCxJiP3ndp-sBvjcQVYBz6LLKzKKaWA,1600
|
|
44
|
+
codex_autorunner/core/filebox.py,sha256=XS0fu9k4q-V2BTO5OFDmTZ9BGq87ua_wJTF8b1y_-aE,8104
|
|
45
45
|
codex_autorunner/core/git_utils.py,sha256=hOxXp41FDO6U0x0fOjSdW8-x1IXj6rJ_EvgXXre6a3c,8570
|
|
46
|
-
codex_autorunner/core/hub.py,sha256=
|
|
46
|
+
codex_autorunner/core/hub.py,sha256=JeFndESVPUYDARB7MZIU_sdyEL20DRSVL1cpKisnpX8,44847
|
|
47
47
|
codex_autorunner/core/injected_context.py,sha256=HQ1VTO7E0TccBkRMQM3f0ihiGS4FNM-aCW35QX7_CXs,301
|
|
48
|
+
codex_autorunner/core/lifecycle_events.py,sha256=QLpBJ1OjbGxY3rvzmYrlu-ZmoDicXNSiwO8RB5Qc4cE,8515
|
|
48
49
|
codex_autorunner/core/locks.py,sha256=MWPGf7-4QTcQass9O5M7OlI1pHAqomep3-7pr3aA8qU,8324
|
|
49
50
|
codex_autorunner/core/logging_utils.py,sha256=fQ9rIshtE-S02-xcFJOUOAXFTrFIcv_TkHzBXU4fxHs,5063
|
|
50
51
|
codex_autorunner/core/notifications.py,sha256=XHhnhN6nJpJlbnNVrapMiXr8Y4El7l7x9s3ZCqTAjqM,18043
|
|
51
52
|
codex_autorunner/core/optional_dependencies.py,sha256=sBuSnQrRhV6_JA2tVLlVnDBsED79kY81cOyWcRiynUM,1271
|
|
52
53
|
codex_autorunner/core/patch_utils.py,sha256=H5IPB5X4EJmXw7dNV3hj6m-vV2yXNY4PMuvq12msV7o,7635
|
|
53
|
-
codex_autorunner/core/path_utils.py,sha256=
|
|
54
|
-
codex_autorunner/core/
|
|
55
|
-
codex_autorunner/core/
|
|
56
|
-
codex_autorunner/core/
|
|
54
|
+
codex_autorunner/core/path_utils.py,sha256=2TwtUY8YvIbc4fyqVcZalzBVTmk5uDMpeUg7ZDAt0h4,3492
|
|
55
|
+
codex_autorunner/core/pma_audit.py,sha256=QtDbR6yD4kdk8JV67fjeidNjOga8S2rLUsUNX7BSxJE,8022
|
|
56
|
+
codex_autorunner/core/pma_context.py,sha256=QH3cRL4OdJXIbH8daOyy8ppVIhJzWpYnr2B-BSrWaSA,24631
|
|
57
|
+
codex_autorunner/core/pma_dispatch_interceptor.py,sha256=WZZfNJKAciqLdpJm02tE1t3WndU7nLO4z9xQcOb0wJk,9203
|
|
58
|
+
codex_autorunner/core/pma_lifecycle.py,sha256=p60VgkpXxY0evLNPJj4-OhWIG6BXP4IepLyins4lhNE,16997
|
|
59
|
+
codex_autorunner/core/pma_queue.py,sha256=R7AvfqWWxpER3lkhuP1d1eLD_LK-94oJyVmF7TKP4CM,12464
|
|
60
|
+
codex_autorunner/core/pma_safety.py,sha256=Xf648Q044O_Gx8GZYVybBFaPy9fZwExWqGZciNMTgmk,7619
|
|
61
|
+
codex_autorunner/core/pma_state.py,sha256=dN-nRhUrZVPqlTsaEOfDn6s7eoN12zMTBqmW2HJrS4M,3722
|
|
62
|
+
codex_autorunner/core/prompt.py,sha256=TUkZr5wYVHNtgxUpXeiSK_d_nxf412idEtjjoaXcDWM,177
|
|
63
|
+
codex_autorunner/core/prompts.py,sha256=rPC7nIyA0QbQZDhTuqO3--_pf64wzPOCxKstwRalkGQ,5857
|
|
64
|
+
codex_autorunner/core/redaction.py,sha256=bm7KhtSVJ24GwTOkJBRSZjCzCG-uHerqFtZN-KemhJ0,738
|
|
57
65
|
codex_autorunner/core/request_context.py,sha256=FVQtn67zJffRET9TBy48jk23ZonAjONOeFwZiizyfxc,997
|
|
58
66
|
codex_autorunner/core/retry.py,sha256=n31DM84oIW0PwWPipNd5TH2H6H5ej8I2JxikfX-FIQs,1725
|
|
59
|
-
codex_autorunner/core/review_context.py,sha256=
|
|
67
|
+
codex_autorunner/core/review_context.py,sha256=kCRjuzHLyf3weUh2uycn0EgHzrvTco1bino0fV0StOU,5107
|
|
60
68
|
codex_autorunner/core/run_index.py,sha256=feOG5JNtJoqH57vfRuIeVtb111zokgpDsHMj3cgz4TE,7794
|
|
61
|
-
codex_autorunner/core/runner_controller.py,sha256=
|
|
69
|
+
codex_autorunner/core/runner_controller.py,sha256=uIT_Kt2OBgKVCbk_8otN1zwCCnqCQFoUXnalI1Euoxs,7521
|
|
62
70
|
codex_autorunner/core/runner_process.py,sha256=G_O_kzo6sv_oWl0FuCzUXW28kZGXh7OdZOBWBKR5kBk,1503
|
|
63
|
-
codex_autorunner/core/
|
|
64
|
-
codex_autorunner/core/
|
|
65
|
-
codex_autorunner/core/
|
|
71
|
+
codex_autorunner/core/runner_state.py,sha256=WzkAGaf3OA3jLSSmVAtxwuoYoQkvpUPLOa_BulJ8Yds,5014
|
|
72
|
+
codex_autorunner/core/runtime.py,sha256=6DKC7Onpb4nxGoCTJXlgI3rwrQWxtPg4iM3KlwjSGTs,26626
|
|
73
|
+
codex_autorunner/core/sqlite_utils.py,sha256=1fvF2SZ6bx0yI7fgm-obik6x7RwofymgWZbpQuatf_M,1069
|
|
74
|
+
codex_autorunner/core/state.py,sha256=xfcbAYr6RRMNCUDbfde_qOGp_cS28XjKRORyfUs5kn4,14379
|
|
75
|
+
codex_autorunner/core/state_roots.py,sha256=q0UO8-prWErKP0MmSRPQKAXQH3hacdnXPHB-ZrO5iQ4,1887
|
|
66
76
|
codex_autorunner/core/supervisor_protocol.py,sha256=5mF7krSfH82zU6smopJKamzqrcs2t2Uz-GU-vuCk2oc,364
|
|
67
77
|
codex_autorunner/core/supervisor_utils.py,sha256=Cb20PgcJzRWVCrJZt3SkCocoijQOuOwkKzsIFEIaHYY,2060
|
|
68
78
|
codex_autorunner/core/text_delta_coalescer.py,sha256=hNHupQpbE6YVDioNmuehcQZosGI9fhvNLFTm_5xtNMs,3086
|
|
69
|
-
codex_autorunner/core/ticket_linter_cli.py,sha256=
|
|
70
|
-
codex_autorunner/core/ticket_manager_cli.py,sha256
|
|
79
|
+
codex_autorunner/core/ticket_linter_cli.py,sha256=PQ3Ir_EOEMAV-qGMw_mf4FWl1sByZb7NJWxY43R7KEU,7260
|
|
80
|
+
codex_autorunner/core/ticket_manager_cli.py,sha256=-knJiuWIu9qmwz8FKuZjqY-rCFA7MVMbWz8NNBadTQs,16598
|
|
81
|
+
codex_autorunner/core/time_utils.py,sha256=XUnwf8G33GXC41BC04ofjVgy-BXQPvBBlaPNgAk1wjk,206
|
|
82
|
+
codex_autorunner/core/types.py,sha256=azj_41SVrmarROn0EKSGmCzBeNgJcx7F1k-pqadBSkI,440
|
|
71
83
|
codex_autorunner/core/update.py,sha256=Nw0o6QlsqIiRmiKhQ7ScRHa_H7U7zs2DbN-2PjBC4zA,17839
|
|
72
84
|
codex_autorunner/core/update_paths.py,sha256=ECTr-8YUr85Shg_HKHgYHcsgZP5eOcmZsEOQbiYgeZE,796
|
|
73
85
|
codex_autorunner/core/update_runner.py,sha256=mimPqchmRD-Rv2TIX67Z-ShfH3ytzS_Lozw0m6IdBsc,1484
|
|
74
86
|
codex_autorunner/core/usage.py,sha256=BpttMKXZaPADFhjBxlhIExY6vTr2tmwUK7v6u_vSwfg,74815
|
|
75
|
-
codex_autorunner/core/utils.py,sha256=
|
|
87
|
+
codex_autorunner/core/utils.py,sha256=F4vvnOeduINC500_N6Uil0_xWZHiWVLElO2uYKwOF6w,11892
|
|
76
88
|
codex_autorunner/core/flows/__init__.py,sha256=AVQh2yts_kjo1zA91HwBc4uoMkfSRl8E_2b-gnxdvHM,503
|
|
77
|
-
codex_autorunner/core/flows/controller.py,sha256=
|
|
89
|
+
codex_autorunner/core/flows/controller.py,sha256=2OYAVzIuRvCdEkD5Cx0OS7AxCbOje0sS3JwQqfQgULY,9814
|
|
78
90
|
codex_autorunner/core/flows/definition.py,sha256=5rkczvPA2dW0PdgSYQIFxu4ItUPu2Q9_8ATeZiKGEpY,2725
|
|
79
91
|
codex_autorunner/core/flows/models.py,sha256=Pny0f6fFXKX7tCuwUCYKRJPit8orqLIfjkfhLd_8zWA,2428
|
|
80
92
|
codex_autorunner/core/flows/reasons.py,sha256=hT_NXIl-7Ry8n7xk289iUnbL_5i-SAOeBjo5AJikqA4,1565
|
|
81
|
-
codex_autorunner/core/flows/reconciler.py,sha256=
|
|
82
|
-
codex_autorunner/core/flows/runtime.py,sha256=
|
|
83
|
-
codex_autorunner/core/flows/store.py,sha256=
|
|
84
|
-
codex_autorunner/core/flows/transition.py,sha256=
|
|
85
|
-
codex_autorunner/core/flows/ux_helpers.py,sha256
|
|
86
|
-
codex_autorunner/core/flows/worker_process.py,sha256=
|
|
93
|
+
codex_autorunner/core/flows/reconciler.py,sha256=Ta3mUFfOmFZIgVoc-fpkIM9FAK19HzIbCnibHWfvQmM,4292
|
|
94
|
+
codex_autorunner/core/flows/runtime.py,sha256=mMyWJR63sZjhPsmiQRLwakoKSxR-OFjIexNP1n2cfO4,14495
|
|
95
|
+
codex_autorunner/core/flows/store.py,sha256=G6M17Wf3jO3fXCjwW9PfvI-Ak2kYjOJf9ZhNjZZh7wQ,20434
|
|
96
|
+
codex_autorunner/core/flows/transition.py,sha256=o-LDTz5aL5jQ-owNAVq1Xe6Su8lZ7GCGdX_NWus2V6U,5056
|
|
97
|
+
codex_autorunner/core/flows/ux_helpers.py,sha256=-508f_gGLq1J-owUziCSTXV14dIjZOAqWvV3NuK7oG0,8620
|
|
98
|
+
codex_autorunner/core/flows/worker_process.py,sha256=kTg9yzxlD5UnQ0veDjP8_v6mi1UXADNnPm4zrcZei7c,7471
|
|
87
99
|
codex_autorunner/core/ports/__init__.py,sha256=FAfpDuugMaknY8LSIqqGqsfCXgnh3kbBQlux5Z6Xez4,490
|
|
88
|
-
codex_autorunner/core/ports/agent_backend.py,sha256=
|
|
100
|
+
codex_autorunner/core/ports/agent_backend.py,sha256=LAqXqhjs482Al6S4Tx_6h4yiFgRl3VXlAkzFTS9yZOs,4304
|
|
89
101
|
codex_autorunner/core/ports/backend_orchestrator.py,sha256=3VZpeW078WqcLJotf5zXArs4O6dU79Kfz3e9iZcgvuc,1113
|
|
90
|
-
codex_autorunner/core/ports/run_event.py,sha256=
|
|
102
|
+
codex_autorunner/core/ports/run_event.py,sha256=inttfYvHRxQG06mv0iQIjLEuSuMTLauWwZlyhFk_0sc,1410
|
|
103
|
+
codex_autorunner/core/templates/__init__.py,sha256=g5g9IGdQoJerPat7cOUtIEpWbW3EGvpnToifKDGf9vQ,840
|
|
104
|
+
codex_autorunner/core/templates/git_mirror.py,sha256=7xcR1M8HU_6Khm5rL4ziZXlEPPCiLXFF2mul4e6y4K8,6639
|
|
105
|
+
codex_autorunner/core/templates/provenance.py,sha256=mayi07_J2pED_rKxxXvds9zWSLWJ_wn-IVVq0k-T3xs,1638
|
|
106
|
+
codex_autorunner/core/templates/scan_cache.py,sha256=i_jABUdRoV4AvYm3fHSb3Ex-z2JHQmIc--rd7ckt-6E,3790
|
|
91
107
|
codex_autorunner/flows/review/__init__.py,sha256=aUkSaVLBDjgbC72hfIM1t-ZzE0hLWmtjlNjlhJb0ktk,320
|
|
92
|
-
codex_autorunner/flows/review/service.py,sha256=
|
|
108
|
+
codex_autorunner/flows/review/service.py,sha256=MiO496yk-XhTmt-DgDWKmGMHuZQxtIR_CZYj6rbELZY,30600
|
|
93
109
|
codex_autorunner/flows/ticket_flow/__init__.py,sha256=bSji9VcWwd_Ow6hdBlLOlpvoEcieEwcfswJ0DI-SWPA,97
|
|
94
|
-
codex_autorunner/flows/ticket_flow/definition.py,sha256=
|
|
110
|
+
codex_autorunner/flows/ticket_flow/definition.py,sha256=zQyxoWQ02QX32_Ipx28rckK3ZtKk5UfRW78nPdG1_Vg,5509
|
|
95
111
|
codex_autorunner/integrations/__init__.py,sha256=_6PZ2Hq6DzApW4d0rrmJY05vftGmHXpHe9SOxq0J2hM,28
|
|
96
|
-
codex_autorunner/integrations/agents/__init__.py,sha256=
|
|
97
|
-
codex_autorunner/integrations/agents/backend_orchestrator.py,sha256=
|
|
112
|
+
codex_autorunner/integrations/agents/__init__.py,sha256=9SiyMj-Ud1rtfOWrvpzxEIZRn8vLuix6G186AiXDht0,610
|
|
113
|
+
codex_autorunner/integrations/agents/backend_orchestrator.py,sha256=KdGNhI6kbMhpBypJQqDRsPek8PXSuGhiyss1MdRz5mU,10269
|
|
98
114
|
codex_autorunner/integrations/agents/codex_adapter.py,sha256=V6OtHb3poUB67nrIdnHwnCN4lmUaTFTCfR9XPkRxRDM,3886
|
|
99
|
-
codex_autorunner/integrations/agents/codex_backend.py,sha256=
|
|
115
|
+
codex_autorunner/integrations/agents/codex_backend.py,sha256=D53HdjyHL7bL2SPi7DVY7dRRtRT_4NCU-yd910wS_v8,17882
|
|
100
116
|
codex_autorunner/integrations/agents/opencode_adapter.py,sha256=yOG3WfwRborZ6pKgABG7P7W9EG-QkkH3g9-49m_u1oM,4051
|
|
101
117
|
codex_autorunner/integrations/agents/opencode_backend.py,sha256=kSPuAcb2DuZnKyf-0ZFEhLLKLoEQKKA9NKD2qFYpWMs,22307
|
|
102
|
-
codex_autorunner/integrations/agents/runner.py,sha256=
|
|
103
|
-
codex_autorunner/integrations/agents/wiring.py,sha256=
|
|
118
|
+
codex_autorunner/integrations/agents/runner.py,sha256=JyytAeuSBpJPA75jWmIoFlON9jyKgfvXmg-ZJSXm_uk,2690
|
|
119
|
+
codex_autorunner/integrations/agents/wiring.py,sha256=UVnBHoOvDNlGK5U3sqPfggaWlPxr-Ai7Xfk508zrAzc,12326
|
|
104
120
|
codex_autorunner/integrations/app_server/__init__.py,sha256=Ro2hRhH9wzxQJThz1Kyo-SADxCFtyF2ZfhHNureykGk,201
|
|
105
121
|
codex_autorunner/integrations/app_server/client.py,sha256=S6zRzbSryU9YrZ3j_1Azu7dO6NQ9ZbY40HuaN_xkoR4,70827
|
|
106
122
|
codex_autorunner/integrations/app_server/env.py,sha256=S0qP_hPFlRL-IHJCoRQoGJBWrkjnngiI4vGRCuimpx4,130
|
|
@@ -109,47 +125,49 @@ codex_autorunner/integrations/app_server/supervisor.py,sha256=7VAXeyufWRkqHrcaV4
|
|
|
109
125
|
codex_autorunner/integrations/github/__init__.py,sha256=mLMQATB-B_LbgebPRCdWqUDS-cMxXfuALGh_RsWbWBk,224
|
|
110
126
|
codex_autorunner/integrations/github/service.py,sha256=484jkhg_lnDap0jMatspuMNn04cg7uVqAG2GctF17Co,39015
|
|
111
127
|
codex_autorunner/integrations/telegram/__init__.py,sha256=oAEE1Yb-7Ybgb79NLWqNErkSXOGBJDgcvlI7gfHlpDA,36
|
|
112
|
-
codex_autorunner/integrations/telegram/adapter.py,sha256=
|
|
128
|
+
codex_autorunner/integrations/telegram/adapter.py,sha256=mQmkKwiEoKLKjfAXw_a4gLmnifS_MS6XHP_KeWOAB4c,56821
|
|
113
129
|
codex_autorunner/integrations/telegram/api_schemas.py,sha256=IXwB17Y4wL0lborU8HHssgNgOtHUJYLoMAcyb3Jv7_8,3402
|
|
114
130
|
codex_autorunner/integrations/telegram/commands_registry.py,sha256=C5T6KeTUq4DmhmSe9FwNRg_kNJWKcYB4hxthVu7MbAQ,3153
|
|
115
|
-
codex_autorunner/integrations/telegram/config.py,sha256=
|
|
131
|
+
codex_autorunner/integrations/telegram/config.py,sha256=xxTQY4foUyWMYdEPZkdb7DV2E-ucCqXUhQGH-8RUocA,32313
|
|
116
132
|
codex_autorunner/integrations/telegram/constants.py,sha256=16-CnkenzOrXAslfFXKYAMBmBUVPltAHfSuBWqq0Eag,6741
|
|
117
133
|
codex_autorunner/integrations/telegram/dispatch.py,sha256=dgh95aYuvveqS7TGvbYHKbtT2RYFx1qGq7mGYyRY2xI,6916
|
|
118
|
-
codex_autorunner/integrations/telegram/doctor.py,sha256=
|
|
119
|
-
codex_autorunner/integrations/telegram/helpers.py,sha256=
|
|
134
|
+
codex_autorunner/integrations/telegram/doctor.py,sha256=uZNxQsnRGaQnu6GpoHVve5ELkSDO6FPCN4_byj6XbQo,9667
|
|
135
|
+
codex_autorunner/integrations/telegram/helpers.py,sha256=vfsrdiaAILyOAqSbDikakhlfYFS23Kqb9lYO2sixocA,73389
|
|
120
136
|
codex_autorunner/integrations/telegram/notifications.py,sha256=XvUdRUq5gfD9JA30PclVLrDL5Azw0Sin8Oj0i1fcVx4,23430
|
|
121
137
|
codex_autorunner/integrations/telegram/outbox.py,sha256=U3qve8pTSRakeqMMWgWqkSvL1e7zoz_aWqhLNH2eZEk,13954
|
|
122
138
|
codex_autorunner/integrations/telegram/overflow.py,sha256=LUbPTwA2BxFV1w0sF1XAhIu_ft_eieSVYmjuftiVyO0,5384
|
|
123
139
|
codex_autorunner/integrations/telegram/progress_stream.py,sha256=jphPyvF1ka_ppEK66spAbcSDkEcNNXuJ2Y6p89VC4ks,7756
|
|
124
140
|
codex_autorunner/integrations/telegram/rendering.py,sha256=uBhymMUQuiKJJZ0ZxSl01sC4dYFVJqoIMMMFlm1XGZc,3531
|
|
125
141
|
codex_autorunner/integrations/telegram/retry.py,sha256=GIdMSSCVa2Sjd6-t2FC1O6AwPPSEM342rjjuI1Y7Tpk,1349
|
|
126
|
-
codex_autorunner/integrations/telegram/runtime.py,sha256=
|
|
127
|
-
codex_autorunner/integrations/telegram/service.py,sha256=
|
|
128
|
-
codex_autorunner/integrations/telegram/state.py,sha256=
|
|
129
|
-
codex_autorunner/integrations/telegram/ticket_flow_bridge.py,sha256=
|
|
130
|
-
codex_autorunner/integrations/telegram/transport.py,sha256=
|
|
142
|
+
codex_autorunner/integrations/telegram/runtime.py,sha256=yyELUr2b-H3qosqWFnkhqCgaG5Cvf1i4hv3CClVHChg,10625
|
|
143
|
+
codex_autorunner/integrations/telegram/service.py,sha256=vBXVyhtXTBUtMmG2hjw36ql6iK4NpglwpMRJALFhN8E,59505
|
|
144
|
+
codex_autorunner/integrations/telegram/state.py,sha256=FxdZVz8JNGyM5MAOBYXBHGcKJj4dxiNX6SrF_2ktrgw,85694
|
|
145
|
+
codex_autorunner/integrations/telegram/ticket_flow_bridge.py,sha256=UkRMloBZx-amYf2M4xRZG35-Zyz7ecu8uBEDY3dyeJA,21308
|
|
146
|
+
codex_autorunner/integrations/telegram/transport.py,sha256=zvNMR2hhwTgxLyf0dS0gDxFVIVEMoiGYkeiPQwblD2o,15082
|
|
131
147
|
codex_autorunner/integrations/telegram/trigger_mode.py,sha256=bDGQUMUbnUNq4u25c-zmBUAOlFvnl5a8YyWgTN2Y8h8,1531
|
|
132
148
|
codex_autorunner/integrations/telegram/types.py,sha256=SjeVaus_YtWz-06GqkSWl99cHTdu0YKd5egdlYY3tMI,1707
|
|
133
149
|
codex_autorunner/integrations/telegram/voice.py,sha256=I3XD-Uc-egA2UVfby210-kCLhL_pBfekyaaGLf359Qs,14784
|
|
134
150
|
codex_autorunner/integrations/telegram/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
151
|
codex_autorunner/integrations/telegram/handlers/approvals.py,sha256=G8-FwRSyyBs9emb9eJjf4a0kD2rdqnFf25SldfHCKZ4,9365
|
|
136
152
|
codex_autorunner/integrations/telegram/handlers/callbacks.py,sha256=wyF8Kmg69KHpKdlPj1DOhp3EEQ3rZ0sjxHnomApSAKw,3754
|
|
137
|
-
codex_autorunner/integrations/telegram/handlers/commands_runtime.py,sha256=
|
|
138
|
-
codex_autorunner/integrations/telegram/handlers/commands_spec.py,sha256=
|
|
139
|
-
codex_autorunner/integrations/telegram/handlers/messages.py,sha256=
|
|
153
|
+
codex_autorunner/integrations/telegram/handlers/commands_runtime.py,sha256=b935T6ML8lG8VUjAZQQ5M1nDR0rDU-1rq-u9HWez7oY,108920
|
|
154
|
+
codex_autorunner/integrations/telegram/handlers/commands_spec.py,sha256=B9nzbALNmcxCzgz6MSHJgYy7lJgt4xgT9E41XrxVlqk,5629
|
|
155
|
+
codex_autorunner/integrations/telegram/handlers/messages.py,sha256=lC6VAoY_NR8uJbO5D_tKykr2vWTy0Xu2JnJ9zyuy-Vc,32904
|
|
140
156
|
codex_autorunner/integrations/telegram/handlers/questions.py,sha256=GoOZzyYPqOt9jW4T27EzjNUOQrMgf3i3F6fJ6tWILzI,15570
|
|
141
157
|
codex_autorunner/integrations/telegram/handlers/selections.py,sha256=JSg_ihLMkK1L3aH8XPEFbO5EaYY5ZWddwPztkNkA-Wc,25055
|
|
142
158
|
codex_autorunner/integrations/telegram/handlers/utils.py,sha256=T2y-2p1SNduypiNz9uq4zqRIFq47z9Lop6_s3nhUzN8,5317
|
|
143
159
|
codex_autorunner/integrations/telegram/handlers/commands/__init__.py,sha256=NjxemJCRhWUDCP0nacsBfhXMYYUstVotgUhcISTaANU,812
|
|
144
160
|
codex_autorunner/integrations/telegram/handlers/commands/approvals.py,sha256=uQsGQtSPjXZ5FyNldvVsZDImEI-G-YOMUwhlnth2wlc,6632
|
|
145
|
-
codex_autorunner/integrations/telegram/handlers/commands/execution.py,sha256=
|
|
146
|
-
codex_autorunner/integrations/telegram/handlers/commands/files.py,sha256=
|
|
147
|
-
codex_autorunner/integrations/telegram/handlers/commands/flows.py,sha256=
|
|
161
|
+
codex_autorunner/integrations/telegram/handlers/commands/execution.py,sha256=TF4d4V9SI-6qbEHTy9BZcwA3fuMh08RxYGBvJL-D084,112545
|
|
162
|
+
codex_autorunner/integrations/telegram/handlers/commands/files.py,sha256=OtWdyV_EKsyp6wJK2HlEUuBfB0ZM67NATnoZvVcVsTQ,59270
|
|
163
|
+
codex_autorunner/integrations/telegram/handlers/commands/flows.py,sha256=vJWHGNdFai8kgttOP1CybuAQPF4XfFU-mCOIXxbbP1I,64463
|
|
148
164
|
codex_autorunner/integrations/telegram/handlers/commands/formatting.py,sha256=WRJDe2jUtrGMFVsp2Hah1GDsfQUV0Dd0KLSbcrY0j0o,3139
|
|
149
165
|
codex_autorunner/integrations/telegram/handlers/commands/github.py,sha256=IKWKYttLqUei5NCzjIIqvGBcFpRBffdfvTwSMzPHzWo,68888
|
|
150
166
|
codex_autorunner/integrations/telegram/handlers/commands/shared.py,sha256=Lam8f76yQGkTBsr0QpawOBU_eIjch8C4NzW6ifSd0sQ,6581
|
|
151
167
|
codex_autorunner/integrations/telegram/handlers/commands/voice.py,sha256=y06N3ju4RjI1Y4r69Os-2BcR6erHjXyGOkoiLWepS0k,3955
|
|
152
|
-
codex_autorunner/integrations/telegram/handlers/commands/workspace.py,sha256=
|
|
168
|
+
codex_autorunner/integrations/telegram/handlers/commands/workspace.py,sha256=7sle1PCCD1WQ1vdrzQ8IWEDSgTJHBxyf-TpZdeesElc,100360
|
|
169
|
+
codex_autorunner/integrations/templates/__init__.py,sha256=zicmMosrOEOwvBqiWkYzOfkWN6v2t4hlEwVMZyyLpNw,706
|
|
170
|
+
codex_autorunner/integrations/templates/scan_agent.py,sha256=4OIrBbIzG-nxS_zXNcfBKmC2l4XHVavG2rdFA9dEHo8,9887
|
|
153
171
|
codex_autorunner/routes/__init__.py,sha256=c8w_wt0V051zbHnI9WG3HieblE_2HivnboGux25oLQA,505
|
|
154
172
|
codex_autorunner/routes/agents.py,sha256=0mrfZk4I3m0ESgD22n-hyPrSMWlrzgC-WhXqRIci1r8,103
|
|
155
173
|
codex_autorunner/routes/analytics.py,sha256=OPyGeqZVb0bDleUiAovfAOuYEpKwUNEbmC3Zhbd6_ds,110
|
|
@@ -167,51 +185,60 @@ codex_autorunner/routes/system.py,sha256=sDPU0W0XxMvPKsqUfNfryN7dTp3QNjE1d6awhsV
|
|
|
167
185
|
codex_autorunner/routes/usage.py,sha256=XbPzqbQdPMlpley43IqGCeAZ0VzQ-7Da9A2dLhpmf0Q,102
|
|
168
186
|
codex_autorunner/routes/voice.py,sha256=1Ce6A2NojspaJQ_TodOsdZRyodn4E-gDPkVnwe_rQi0,102
|
|
169
187
|
codex_autorunner/routes/workspace.py,sha256=j_-z5kSU5pMC2obOyqJj4HYW35pquVwy7swBQBDflk4,110
|
|
170
|
-
codex_autorunner/static/agentControls.js,sha256=
|
|
188
|
+
codex_autorunner/static/agentControls.js,sha256=U8c8s9ueKOBD8rgLJS5gseebKnXnxYfMnQqttY2MS8U,13745
|
|
171
189
|
codex_autorunner/static/agentEvents.js,sha256=HAQHeKJnOqj6IkcBEM1ye5p6rcIjK9c9LZfBWKowonw,8188
|
|
172
|
-
codex_autorunner/static/app.js,sha256=
|
|
173
|
-
codex_autorunner/static/archive.js,sha256=
|
|
174
|
-
codex_autorunner/static/archiveApi.js,sha256=
|
|
190
|
+
codex_autorunner/static/app.js,sha256=rxtxK_Tw4l6rXxRycE7a-rHoZaOTne901CQbmLQ0ZyU,7658
|
|
191
|
+
codex_autorunner/static/archive.js,sha256=a8R8WYBLkju_Mhzs8waX3Uf_tMahejyGbK4TvNhBCSk,40176
|
|
192
|
+
codex_autorunner/static/archiveApi.js,sha256=cvooxgTKmV_gnYl9YNKOYwYOh6KaV8QwCIjNTKcUj3k,2478
|
|
175
193
|
codex_autorunner/static/autoRefresh.js,sha256=8nsJmnIpD1Ga02kdUIFNAA3Z3-lw-7kLJMjR4Ve0aE8,6694
|
|
176
194
|
codex_autorunner/static/bootstrap.js,sha256=ZXzMfDMjiC5ReOrDbv9lqSBaTZQlM7eqEAJ4IKPhm5s,4833
|
|
177
195
|
codex_autorunner/static/bus.js,sha256=NXuNHd_43Irr-5Ood1LQ15rSwCTm5J_Pv9ybnkeGQM0,630
|
|
178
196
|
codex_autorunner/static/cache.js,sha256=idp3ISlRKjSK_eSRUmL_rWGI2qx7g-BJ1_48Mz6IWSw,1035
|
|
179
|
-
codex_autorunner/static/
|
|
197
|
+
codex_autorunner/static/chatUploads.js,sha256=oFKWPAHnESvk0aqFTH40A3-90fai78GGS9KXSr1RZsk,5174
|
|
198
|
+
codex_autorunner/static/constants.js,sha256=vmlDFXF6JYRrX3XJ0rJ_Ft1w-AMa7RdhHq8pTGhRR3Q,2036
|
|
180
199
|
codex_autorunner/static/dashboard.js,sha256=15gI7rxhtG6Ngnw_N9iNHSkALkaaGRIYCYoqEJxwOe4,30749
|
|
181
200
|
codex_autorunner/static/diffRenderer.js,sha256=AVeJ6yt8UBk6yQJWV6VCIsH9TIY5CYTCjNFD8uOWQ9U,1307
|
|
182
|
-
codex_autorunner/static/docChatCore.js,sha256=
|
|
201
|
+
codex_autorunner/static/docChatCore.js,sha256=LSn_Z7MHh7FtiRexXtxfXGdjN9mjfkdQODxgcAc90h0,22724
|
|
183
202
|
codex_autorunner/static/docChatStorage.js,sha256=OgPiNgvPVVp0kJcCVy-ILjMSo5--keyrIleWacA-k6A,2104
|
|
184
203
|
codex_autorunner/static/docChatVoice.js,sha256=YrKIf0INTke3ge9uDHLl_Fd3wFcISGyjJlQU-iyhAlU,2419
|
|
185
204
|
codex_autorunner/static/docEditor.js,sha256=w2AqcQEGIkRut2xpRiFG4ndxccv0THoh3ZdwFw2YM6s,4580
|
|
186
205
|
codex_autorunner/static/env.js,sha256=3-XgQC03WqalAg_T8dabn47uSKS7lPM874OzV7ET5jU,1813
|
|
187
206
|
codex_autorunner/static/eventSummarizer.js,sha256=PuLdLS9MIVrp97W47iAlEf8TFLNTHCigT2clYCH2sZg,5425
|
|
188
|
-
codex_autorunner/static/fileChat.js,sha256=
|
|
207
|
+
codex_autorunner/static/fileChat.js,sha256=cUdmgyUOo2VL5Oe8VK7aDFYHEoT1ldyjZx7bgY0A69E,7248
|
|
208
|
+
codex_autorunner/static/fileboxUi.js,sha256=HPNsms7jzdl8sM5eZNFkJac3mkvSRioziwIkQ16OwjQ,5600
|
|
189
209
|
codex_autorunner/static/health.js,sha256=nwB-Ofc96zTP6YLQDaIJfO7duLug9bj3CCe893M7x1I,5204
|
|
190
|
-
codex_autorunner/static/hub.js,sha256=
|
|
191
|
-
codex_autorunner/static/index.html,sha256=
|
|
210
|
+
codex_autorunner/static/hub.js,sha256=CTZRedwEwo7S3Z500doHEYrEcWpIgm-Rk2rtY6aVd1U,48852
|
|
211
|
+
codex_autorunner/static/index.html,sha256=JICjnURPfBLlmVsbpiEkzu7mJsOKUwg7NXfgF8G6Ksg,65834
|
|
192
212
|
codex_autorunner/static/liveUpdates.js,sha256=SiVWPQRp-mqmmhRqOQWPFtMBLUA89J1KYvif88ZCMOk,1950
|
|
193
213
|
codex_autorunner/static/loader.js,sha256=2Xyg_D43sSsH3fmm93-utyPJJSQ7KpvebbhNrM79ljo,1065
|
|
194
|
-
codex_autorunner/static/messages.js,sha256=
|
|
214
|
+
codex_autorunner/static/messages.js,sha256=xLjw2LJMy6ng1cgEsCcZZ7SN4PXeNSFEVkJycQVhe8Y,35287
|
|
195
215
|
codex_autorunner/static/mobileCompact.js,sha256=cDXLGeFLj5_knH-9qOXfbR5IXjCttyQ3-jclL4k1ouo,9473
|
|
216
|
+
codex_autorunner/static/notifications.js,sha256=R8h9DhW5Tzr6X4A4fYFacI6Y--zvB7eJgJBRFRWVmW4,10430
|
|
217
|
+
codex_autorunner/static/pma.js,sha256=eA_jyCXjaLetVQ02-jacfLN813xYSM4yaGIesCJ9ssc,42857
|
|
196
218
|
codex_autorunner/static/preserve.js,sha256=cOB-kcPQPHYDZqwkJFi69n6LhT51BHNWGL6zLRPsJyM,437
|
|
197
|
-
codex_autorunner/static/settings.js,sha256=
|
|
219
|
+
codex_autorunner/static/settings.js,sha256=ouKultNn5PUXt4tFr9CkkQdTMDwC_RtSTIbyuz-12Vs,9989
|
|
198
220
|
codex_autorunner/static/smartRefresh.js,sha256=0BovWNSXgeqkcawiF0JfZf7Zu81Nqr2Ni4qCj0EeJ6I,1713
|
|
199
|
-
codex_autorunner/static/
|
|
221
|
+
codex_autorunner/static/streamUtils.js,sha256=EXbXeDUKUry953W3noyWo-2dpZxVVkfgbwiFT3eAXLQ,2128
|
|
222
|
+
codex_autorunner/static/styles.css,sha256=jlZFD_nch9AJvYjNSw-_5havgbN9aGNrjeGYh2vC49w,254138
|
|
200
223
|
codex_autorunner/static/tabs.js,sha256=SgebpOJIxzkD307VQ1NmXBpLY40b1g8RvNIcf2fmVlI,8429
|
|
224
|
+
codex_autorunner/static/templateReposSettings.js,sha256=w-YmI-zbSpiVE_MHew3Ly2kJRF81_QbV-GMl8MAfq9E,7121
|
|
201
225
|
codex_autorunner/static/terminal.js,sha256=EEnwfA8rcOt1vOQngXdOTpymdqsYoBA-XPmFoksaHcs,1621
|
|
202
|
-
codex_autorunner/static/terminalManager.js,sha256=
|
|
203
|
-
codex_autorunner/static/ticketChatActions.js,sha256=
|
|
226
|
+
codex_autorunner/static/terminalManager.js,sha256=muOWh9CU66YN74sVSogINLStt25EgBM4p7J7adm1XtE,139931
|
|
227
|
+
codex_autorunner/static/ticketChatActions.js,sha256=4BsA_eUb3fV0qqK7GO1s7BvZiVIH1F7ggm773x5BS9E,18026
|
|
204
228
|
codex_autorunner/static/ticketChatEvents.js,sha256=9Y1CA4t--bxqXRHrsE4O4Dx5Td9KAFAAZwLXXj_y1yM,536
|
|
205
229
|
codex_autorunner/static/ticketChatStorage.js,sha256=lEg2zKJfEA34ZS0azwCmGPW8CPpX3wqCmyNcCafP9Yw,621
|
|
206
|
-
codex_autorunner/static/ticketChatStream.js,sha256=
|
|
207
|
-
codex_autorunner/static/ticketEditor.js,sha256=
|
|
230
|
+
codex_autorunner/static/ticketChatStream.js,sha256=vv5hqpmvUPINVEZB5PKPBviLqB5ZHdLb3N-UhARxhiA,5987
|
|
231
|
+
codex_autorunner/static/ticketEditor.js,sha256=BYWz8Avwux-rfuEZ-_uObokzGVBXYEnZAGPd8gElfU0,31420
|
|
232
|
+
codex_autorunner/static/ticketTemplates.js,sha256=jk8LWKnMHPoLoD7QCQ-88NDdQWwrHZj12RGtFkTbkjk,26465
|
|
208
233
|
codex_autorunner/static/ticketVoice.js,sha256=CVRumgn6kc9uwEqvRxh5bdHx4C1DTOv-SEP_fJgeLxM,320
|
|
209
|
-
codex_autorunner/static/tickets.js,sha256=
|
|
210
|
-
codex_autorunner/static/
|
|
234
|
+
codex_autorunner/static/tickets.js,sha256=c57keSCtTObCY4XXVcTkqBhUdjRJqFc_86tTTly2_B4,79904
|
|
235
|
+
codex_autorunner/static/turnEvents.js,sha256=AmZZ3Bt-A1hg4QwaY9-tiwxnUEvDJvwdbrq7OF8wK5s,1152
|
|
236
|
+
codex_autorunner/static/turnResume.js,sha256=eAXZLyyEYr-mCuDjItxRJkdCUBbdXZGzQEH_lTx2CHk,776
|
|
237
|
+
codex_autorunner/static/utils.js,sha256=oWEmfn2JFSYDIcKpBNVu4kcSHnqbaxm42AxP1Ns7OBA,23200
|
|
211
238
|
codex_autorunner/static/voice.js,sha256=QfQvDQK-AkyO1nNtYxq04dKolfyWHiLHG5uihGV9hpU,20209
|
|
212
|
-
codex_autorunner/static/workspace.js,sha256=
|
|
239
|
+
codex_autorunner/static/workspace.js,sha256=xqdf9T_0Cy_iFECMREIZ-WwmKL0jUfz2aM4f2Cm_DKg,37220
|
|
213
240
|
codex_autorunner/static/workspaceApi.js,sha256=kZ79wHLBocaoFQwMN09XoQ8HM2rBKucqa_NQx5FPOlM,2015
|
|
214
|
-
codex_autorunner/static/workspaceFileBrowser.js,sha256=
|
|
241
|
+
codex_autorunner/static/workspaceFileBrowser.js,sha256=qgn3AXtSym3nIY4d7RQxLW3JLuD3iOjlwPymXsP3Eus,20961
|
|
215
242
|
codex_autorunner/static/vendor/LICENSE.xterm,sha256=R1kKvILKKMOnUg07hzusejoAsCy8Mik-HxQdzNJpgIc,1186
|
|
216
243
|
codex_autorunner/static/vendor/xterm-addon-fit.js,sha256=EPMZTF8XwXhvt9XbhlweyFObZzajGAY_04var3xGhI8,1503
|
|
217
244
|
codex_autorunner/static/vendor/xterm.css,sha256=gy8_LGA7Q61DUf8ElwFQzHqHMBQnbbEmpgZcbdgeSHI,5383
|
|
@@ -237,48 +264,52 @@ codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-600-vietnamese
|
|
|
237
264
|
codex_autorunner/static/vendor/fonts/jetbrains-mono/OFL.txt,sha256=p2q_ACxJCX0UboZ0CjEFpdAEULFZLoIKEQmoxWgM1pc,4399
|
|
238
265
|
codex_autorunner/surfaces/__init__.py,sha256=qZrxvu7IX7s-SgSSIugNSc1JBE566tYz0zCX0hDhoUs,117
|
|
239
266
|
codex_autorunner/surfaces/cli/__init__.py,sha256=TPjzXRVfCb4BIDdNkHovX9nhW31VGTQGy7V7oYvEVF4,211
|
|
240
|
-
codex_autorunner/surfaces/cli/cli.py,sha256=
|
|
267
|
+
codex_autorunner/surfaces/cli/cli.py,sha256=vKlQSC0MPXVeQNjEj3eY94iTzUglA3uk3YScyynNiHQ,92443
|
|
241
268
|
codex_autorunner/surfaces/cli/codex_cli.py,sha256=4DJIaw63ohYlxsXWTG7Ikux8_zwgWYOyQqXtRWE7rMc,386
|
|
269
|
+
codex_autorunner/surfaces/cli/pma_cli.py,sha256=7Id9_KpG2UBQoz7_201vZib-4C3DJyCKxjJ7fiHyARU,30315
|
|
242
270
|
codex_autorunner/surfaces/telegram/__init__.py,sha256=esNRNjA4D3fsYSNsR-x2C18iUQpnyYWY0CQT7hrUx3k,66
|
|
243
271
|
codex_autorunner/surfaces/web/__init__.py,sha256=fDDDTYL26__wwaWd7xtI6axymkOgYntcrlHeHptDb8I,29
|
|
244
|
-
codex_autorunner/surfaces/web/app.py,sha256=
|
|
272
|
+
codex_autorunner/surfaces/web/app.py,sha256=WpE-jiYok1t_Qnvr0HNra1VJO211s3Y19pWXePCbDiQ,87990
|
|
245
273
|
codex_autorunner/surfaces/web/hub_jobs.py,sha256=L_ba698fms2YdlZLUl6erLha-_-t3MJE5jsL9JcP3pw,6059
|
|
246
274
|
codex_autorunner/surfaces/web/middleware.py,sha256=4mh4EikDLWWByLx3O5nQvMcqHOUFpORrNSWagHWLweE,21455
|
|
247
275
|
codex_autorunner/surfaces/web/pty_session.py,sha256=K1_hJFYy-xh90o1hDezmsC3euP7ifsgHMzAg1E9HZA8,12791
|
|
248
276
|
codex_autorunner/surfaces/web/review.py,sha256=70KXs1-b15f1CXuRfWHgHpriHzcyPbpMkEFY25AOzNo,166
|
|
249
|
-
codex_autorunner/surfaces/web/runner_manager.py,sha256=
|
|
250
|
-
codex_autorunner/surfaces/web/schemas.py,sha256=
|
|
277
|
+
codex_autorunner/surfaces/web/runner_manager.py,sha256=V1oA0e8qFpVz1wNGr-67lEMoe4jTo5x7DULgOrp2bx8,665
|
|
278
|
+
codex_autorunner/surfaces/web/schemas.py,sha256=nNMkBt4mSfH2U7ea8NJVIiazh3qnN-SfkdVKyvbH7EA,10961
|
|
251
279
|
codex_autorunner/surfaces/web/static_assets.py,sha256=Mo0FJ0ALM-NlUpkWJIMKC2Vq5JX6ZeOe3w_h_VK5uys,15178
|
|
252
280
|
codex_autorunner/surfaces/web/static_refresh.py,sha256=Rv40lPd3eRDqcwnF6CXlwRaV5kNPkcXund7zjY7YqGM,3145
|
|
253
281
|
codex_autorunner/surfaces/web/terminal_sessions.py,sha256=uol4tWorQ-EcJHLWNS6MQb8otpGFR1CaXuzutGMOgO0,2651
|
|
254
|
-
codex_autorunner/surfaces/web/routes/__init__.py,sha256=
|
|
282
|
+
codex_autorunner/surfaces/web/routes/__init__.py,sha256=laWu7u2pF5Xelmsaap-WVMCYj4puekaI-xCqpEiv-RI,3154
|
|
255
283
|
codex_autorunner/surfaces/web/routes/agents.py,sha256=w3yC3KxNMy16015YFS9FNRLLiIq9CvFM7culln7ByqA,5541
|
|
256
|
-
codex_autorunner/surfaces/web/routes/analytics.py,sha256=
|
|
284
|
+
codex_autorunner/surfaces/web/routes/analytics.py,sha256=1P4TP_icwWYY2ddLYHaCTTxgkc_1QrRch12nakOtCrY,10140
|
|
257
285
|
codex_autorunner/surfaces/web/routes/app_server.py,sha256=vPy0nsw7wqQpK_4Iquffa6Aox4ksuyBx1hHfvrek040,5351
|
|
258
|
-
codex_autorunner/surfaces/web/routes/archive.py,sha256=
|
|
286
|
+
codex_autorunner/surfaces/web/routes/archive.py,sha256=hH5U7wnBAeUFyE99dKbmAKTbYBd2zwBjzW-tokJQzJw,19702
|
|
259
287
|
codex_autorunner/surfaces/web/routes/base.py,sha256=JV8kpXuaPkoJh9DBq--k9CdEM2VZwqfBDTEUE8EqGRg,26662
|
|
260
|
-
codex_autorunner/surfaces/web/routes/file_chat.py,sha256=
|
|
261
|
-
codex_autorunner/surfaces/web/routes/
|
|
262
|
-
codex_autorunner/surfaces/web/routes/
|
|
263
|
-
codex_autorunner/surfaces/web/routes/
|
|
288
|
+
codex_autorunner/surfaces/web/routes/file_chat.py,sha256=IN_fy7AoWKvfnJFwSz8C64u-JG-Hv3bueG9V6p7un6s,40630
|
|
289
|
+
codex_autorunner/surfaces/web/routes/filebox.py,sha256=HdRRAjh80o4IfDkUbsuPUXflQ96fcJ6KBDQHmq42mcA,8084
|
|
290
|
+
codex_autorunner/surfaces/web/routes/flows.py,sha256=C9SpQwmnVb5t3xfxluNTrhG1fHlUkRTrV-evzxptUB4,50327
|
|
291
|
+
codex_autorunner/surfaces/web/routes/messages.py,sha256=XEIH24jfHUN3e00hopDmiXnADLo0h6Shw9Ie-nHAdPs,18070
|
|
292
|
+
codex_autorunner/surfaces/web/routes/pma.py,sha256=1hLNmFkSWbZxhVMkf-IUAs0AhoajUVLW-z1j7S4mbGU,65690
|
|
293
|
+
codex_autorunner/surfaces/web/routes/repos.py,sha256=peJku6GMqMuF4mHVo-jC8cooeIRbNDpW5Hd_caGqmYs,8000
|
|
264
294
|
codex_autorunner/surfaces/web/routes/review.py,sha256=kFUxZ27PSc89VR1V4-2m6iyL5EbTJ5TV60WmAnKKccY,5510
|
|
265
295
|
codex_autorunner/surfaces/web/routes/sessions.py,sha256=TdUdMFp8AWJJ2GQpNUvHN9SJ2kFTpTFFITWWXmKcixA,6535
|
|
266
296
|
codex_autorunner/surfaces/web/routes/settings.py,sha256=uqSGmXp_jdrKnwMsJ_hYp18beTzKQULeTNE5nicAXVk,7347
|
|
267
|
-
codex_autorunner/surfaces/web/routes/shared.py,sha256=
|
|
297
|
+
codex_autorunner/surfaces/web/routes/shared.py,sha256=y3svPKfYPaCiY66VHdVj_AoqfefIBRjZNmT34I4mfzs,8988
|
|
268
298
|
codex_autorunner/surfaces/web/routes/system.py,sha256=fvU-5umRh8bxgdiNmfs_5ObUGibMLHqDQpvasU-0m80,7580
|
|
299
|
+
codex_autorunner/surfaces/web/routes/templates.py,sha256=43lGtI9vRS6zQV3Ioung_zojaLvLDEIopuUQZaJE0mY,21760
|
|
269
300
|
codex_autorunner/surfaces/web/routes/terminal_images.py,sha256=0wNAIHRcN_iIzeXuVN6nqe9E7OYEoQ6C84Tcx93r1XI,3299
|
|
270
301
|
codex_autorunner/surfaces/web/routes/usage.py,sha256=p4olpgUXSbV7Nn4DQPZPYCxPNzmFQdC_5gUYUSPMJuU,2737
|
|
271
302
|
codex_autorunner/surfaces/web/routes/voice.py,sha256=sfws5BPrz9GWH_CEqrtNgO0H4wV1Ys-FNQSH5okQ_os,4858
|
|
272
303
|
codex_autorunner/surfaces/web/routes/workspace.py,sha256=nbBUXX35h6QI0HkC0SLliDj1v43pKFBoWsqojylg0lA,11258
|
|
273
304
|
codex_autorunner/tickets/__init__.py,sha256=2_OD0c3RHdRgCoi-T5Xacw9_gKqu5BBbUxQRMTZgsNw,607
|
|
274
|
-
codex_autorunner/tickets/agent_pool.py,sha256=
|
|
275
|
-
codex_autorunner/tickets/files.py,sha256=
|
|
305
|
+
codex_autorunner/tickets/agent_pool.py,sha256=wweHSG6_LDYRDdlLbTt-y-HlyKOs22Ycz9nOxlpRLH4,17617
|
|
306
|
+
codex_autorunner/tickets/files.py,sha256=DQDa4A9o_QRgAJ7P2MHB1jTdLlosr-XlJ5x8D0y-vQY,3303
|
|
276
307
|
codex_autorunner/tickets/frontmatter.py,sha256=zsv6Y-csjpL_jtzNPk3d34oOqrg-6EjnAlN98BEtF_g,1547
|
|
277
|
-
codex_autorunner/tickets/lint.py,sha256=
|
|
278
|
-
codex_autorunner/tickets/models.py,sha256=
|
|
279
|
-
codex_autorunner/tickets/outbox.py,sha256=
|
|
308
|
+
codex_autorunner/tickets/lint.py,sha256=RFwVqodHaq7PO-PSWw-XUhtqABgFupQXO4W9ggdeOTE,4462
|
|
309
|
+
codex_autorunner/tickets/models.py,sha256=X8zmzWjRhJyBrSMzUca-4lH3H-4JjL5159bfIjfsJ4c,2854
|
|
310
|
+
codex_autorunner/tickets/outbox.py,sha256=uUI_EkNiqs9lm9lSwSViPKAR8xSCHMFMN0CL-cOEmIY,8179
|
|
280
311
|
codex_autorunner/tickets/replies.py,sha256=R_eeg55s8dQ4VBcIpjPI1up4jCQvG8l_c0uV4LUa5Gs,4841
|
|
281
|
-
codex_autorunner/tickets/runner.py,sha256=
|
|
312
|
+
codex_autorunner/tickets/runner.py,sha256=1pvA6WBDOUOo35SaqqBNEn1gbBxWzoxjHRUywgjF-4o,47725
|
|
282
313
|
codex_autorunner/tickets/spec_ingest.py,sha256=PmCYdGFeKVN6C9tae3j1zt8WXvISunlFpVHimycaMpo,2507
|
|
283
314
|
codex_autorunner/voice/__init__.py,sha256=Z2ziy5TP4NCgNi4xld1FfRIbSJL9hpgkggYhbEtGOgQ,991
|
|
284
315
|
codex_autorunner/voice/capture.py,sha256=UzvQvu3KaKpL4RoyXT-mq24uohAXvHIZ8vi6wObEJgQ,11435
|
|
@@ -300,9 +331,9 @@ codex_autorunner/web/static_refresh.py,sha256=4QY5FK5T8ymsBIuSeuLWcx9yXL8LyO4Usc
|
|
|
300
331
|
codex_autorunner/web/terminal_sessions.py,sha256=8Pa4gKd-ZUjwqEDUInAgEPRP14CouBEZqgvXRKzNjEg,119
|
|
301
332
|
codex_autorunner/workspace/__init__.py,sha256=yTql6_7BVZG0tirPMhbmMEVkk_j7Q8Wvb89eIZ0K7o8,977
|
|
302
333
|
codex_autorunner/workspace/paths.py,sha256=mScZQpKPyFYvxEmyr_51PfWP_7aTAWkRT4AZWqGnME4,10785
|
|
303
|
-
codex_autorunner-1.1.
|
|
304
|
-
codex_autorunner-1.1.
|
|
305
|
-
codex_autorunner-1.1.
|
|
306
|
-
codex_autorunner-1.1.
|
|
307
|
-
codex_autorunner-1.1.
|
|
308
|
-
codex_autorunner-1.1.
|
|
334
|
+
codex_autorunner-1.2.1.dist-info/licenses/LICENSE,sha256=gfYghezUeimFKy0hTmkOiAAwBY_QdRSXDTypbMtZU0k,1068
|
|
335
|
+
codex_autorunner-1.2.1.dist-info/METADATA,sha256=5vxuxvkrCjyAPljglJZNqKAi1-Xph2ARbDChMturQeg,8914
|
|
336
|
+
codex_autorunner-1.2.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
337
|
+
codex_autorunner-1.2.1.dist-info/entry_points.txt,sha256=iPTzENG1MGBhxWF4x8W7VWk3iq4XurmGXMnIch7AVTs,93
|
|
338
|
+
codex_autorunner-1.2.1.dist-info/top_level.txt,sha256=fc2h9rEENr-ZdyLemPJbMcWmsWlz4JuyD1UOkPLLVSQ,17
|
|
339
|
+
codex_autorunner-1.2.1.dist-info/RECORD,,
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
|
|
3
|
-
from typing import Any, Callable
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
def handle_agent_output(
|
|
7
|
-
log_app_server_output: Callable[[int, list[str]], None],
|
|
8
|
-
write_run_artifact: Callable[[int, str, str], Any],
|
|
9
|
-
merge_run_index_entry: Callable[[int, dict[str, Any]], None],
|
|
10
|
-
run_id: int,
|
|
11
|
-
output: str | list[str],
|
|
12
|
-
) -> None:
|
|
13
|
-
if isinstance(output, str):
|
|
14
|
-
messages = [output]
|
|
15
|
-
else:
|
|
16
|
-
messages = output
|
|
17
|
-
log_app_server_output(run_id, messages)
|
|
18
|
-
output_text = "\n\n".join(messages).strip() if messages else ""
|
|
19
|
-
if output_text:
|
|
20
|
-
output_path = write_run_artifact(run_id, "output.txt", output_text)
|
|
21
|
-
merge_run_index_entry(run_id, {"artifacts": {"output_path": str(output_path)}})
|