@almadar/std 6.5.2 → 7.2.0
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.
- package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-agent-tool-loop",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "std-agent-tool-loop
|
|
4
|
+
"description": "std-agent-tool-loop as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentToolLoopOrbital",
|
|
@@ -66,12 +66,12 @@
|
|
|
66
66
|
{
|
|
67
67
|
"name": "iterations",
|
|
68
68
|
"type": "number",
|
|
69
|
-
"default": 0
|
|
69
|
+
"default": 0.0
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
"name": "maxIterations",
|
|
73
73
|
"type": "number",
|
|
74
|
-
"default": 10
|
|
74
|
+
"default": 10.0
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
77
|
"name": "result",
|
|
@@ -96,12 +96,12 @@
|
|
|
96
96
|
{
|
|
97
97
|
"name": "currentStep",
|
|
98
98
|
"type": "number",
|
|
99
|
-
"default": 0
|
|
99
|
+
"default": 0.0
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
102
|
"name": "totalSteps",
|
|
103
103
|
"type": "number",
|
|
104
|
-
"default": 4
|
|
104
|
+
"default": 4.0
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
107
|
"name": "steps",
|
|
@@ -141,27 +141,27 @@
|
|
|
141
141
|
{
|
|
142
142
|
"name": "tokenCount",
|
|
143
143
|
"type": "number",
|
|
144
|
-
"default": 0
|
|
144
|
+
"default": 0.0
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
"name": "maxTokens",
|
|
148
148
|
"type": "number",
|
|
149
|
-
"default": 200000
|
|
149
|
+
"default": 200000.0
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
"name": "usage",
|
|
153
153
|
"type": "number",
|
|
154
|
-
"default": 0
|
|
154
|
+
"default": 0.0
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
"name": "current",
|
|
158
158
|
"type": "number",
|
|
159
|
-
"default": 0
|
|
159
|
+
"default": 0.0
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
162
|
"name": "max",
|
|
163
163
|
"type": "number",
|
|
164
|
-
"default": 200000
|
|
164
|
+
"default": 200000.0
|
|
165
165
|
},
|
|
166
166
|
{
|
|
167
167
|
"name": "threshold",
|
|
@@ -191,15 +191,15 @@
|
|
|
191
191
|
{
|
|
192
192
|
"name": "duration",
|
|
193
193
|
"type": "number",
|
|
194
|
-
"default": 0
|
|
194
|
+
"default": 0.0
|
|
195
195
|
}
|
|
196
196
|
]
|
|
197
197
|
},
|
|
198
198
|
"traits": [
|
|
199
199
|
{
|
|
200
200
|
"name": "AgentToolLoopLoop",
|
|
201
|
-
"linkedEntity": "AgentToolLoop",
|
|
202
201
|
"category": "interaction",
|
|
202
|
+
"linkedEntity": "AgentToolLoop",
|
|
203
203
|
"stateMachine": {
|
|
204
204
|
"states": [
|
|
205
205
|
{
|
|
@@ -252,6 +252,17 @@
|
|
|
252
252
|
}
|
|
253
253
|
]
|
|
254
254
|
},
|
|
255
|
+
{
|
|
256
|
+
"key": "FAILED",
|
|
257
|
+
"name": "Failed",
|
|
258
|
+
"payload": [
|
|
259
|
+
{
|
|
260
|
+
"name": "error",
|
|
261
|
+
"type": "string",
|
|
262
|
+
"required": true
|
|
263
|
+
}
|
|
264
|
+
]
|
|
265
|
+
},
|
|
255
266
|
{
|
|
256
267
|
"key": "TOOL_RESULT",
|
|
257
268
|
"name": "Tool Result",
|
|
@@ -292,18 +303,7 @@
|
|
|
292
303
|
},
|
|
293
304
|
{
|
|
294
305
|
"key": "MAX_ITERATIONS",
|
|
295
|
-
"name": "Max Iterations
|
|
296
|
-
"payload": [
|
|
297
|
-
{
|
|
298
|
-
"name": "error",
|
|
299
|
-
"type": "string",
|
|
300
|
-
"required": true
|
|
301
|
-
}
|
|
302
|
-
]
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
"key": "FAILED",
|
|
306
|
-
"name": "Failed",
|
|
306
|
+
"name": "Max Iterations",
|
|
307
307
|
"payload": [
|
|
308
308
|
{
|
|
309
309
|
"name": "error",
|
|
@@ -328,14 +328,12 @@
|
|
|
328
328
|
"main",
|
|
329
329
|
{
|
|
330
330
|
"type": "stack",
|
|
331
|
-
"direction": "vertical",
|
|
332
331
|
"gap": "lg",
|
|
332
|
+
"direction": "vertical",
|
|
333
333
|
"children": [
|
|
334
334
|
{
|
|
335
335
|
"type": "stack",
|
|
336
|
-
"direction": "horizontal",
|
|
337
336
|
"gap": "sm",
|
|
338
|
-
"align": "center",
|
|
339
337
|
"children": [
|
|
340
338
|
{
|
|
341
339
|
"type": "icon",
|
|
@@ -343,40 +341,42 @@
|
|
|
343
341
|
"size": "lg"
|
|
344
342
|
},
|
|
345
343
|
{
|
|
346
|
-
"
|
|
344
|
+
"variant": "h2",
|
|
347
345
|
"content": "Tool Execution Loop",
|
|
348
|
-
"
|
|
346
|
+
"type": "typography"
|
|
349
347
|
}
|
|
350
|
-
]
|
|
348
|
+
],
|
|
349
|
+
"direction": "horizontal",
|
|
350
|
+
"align": "center"
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
"type": "divider"
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
|
-
"type": "card",
|
|
357
356
|
"children": [
|
|
358
357
|
{
|
|
359
358
|
"type": "stack",
|
|
360
|
-
"direction": "vertical",
|
|
361
359
|
"gap": "md",
|
|
362
360
|
"children": [
|
|
363
361
|
{
|
|
364
362
|
"type": "typography",
|
|
365
|
-
"
|
|
366
|
-
"
|
|
363
|
+
"variant": "body",
|
|
364
|
+
"content": "Describe the task to execute with tools"
|
|
367
365
|
},
|
|
368
366
|
{
|
|
369
367
|
"type": "form-section",
|
|
370
|
-
"entity": "AgentToolLoop",
|
|
371
|
-
"mode": "edit",
|
|
372
|
-
"submitEvent": "EXECUTE",
|
|
373
368
|
"fields": [
|
|
374
369
|
"task"
|
|
375
|
-
]
|
|
370
|
+
],
|
|
371
|
+
"mode": "edit",
|
|
372
|
+
"entity": "AgentToolLoop",
|
|
373
|
+
"submitEvent": "EXECUTE"
|
|
376
374
|
}
|
|
377
|
-
]
|
|
375
|
+
],
|
|
376
|
+
"direction": "vertical"
|
|
378
377
|
}
|
|
379
|
-
]
|
|
378
|
+
],
|
|
379
|
+
"type": "card"
|
|
380
380
|
}
|
|
381
381
|
]
|
|
382
382
|
}
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
[
|
|
397
397
|
"set",
|
|
398
398
|
"@entity.iterations",
|
|
399
|
-
0
|
|
399
|
+
0.0
|
|
400
400
|
],
|
|
401
401
|
[
|
|
402
402
|
"agent/generate",
|
|
@@ -420,9 +420,8 @@
|
|
|
420
420
|
"main",
|
|
421
421
|
{
|
|
422
422
|
"type": "stack",
|
|
423
|
-
"direction": "vertical",
|
|
424
|
-
"gap": "lg",
|
|
425
423
|
"align": "center",
|
|
424
|
+
"direction": "vertical",
|
|
426
425
|
"children": [
|
|
427
426
|
{
|
|
428
427
|
"type": "icon",
|
|
@@ -430,20 +429,21 @@
|
|
|
430
429
|
"size": "lg"
|
|
431
430
|
},
|
|
432
431
|
{
|
|
433
|
-
"
|
|
432
|
+
"variant": "h3",
|
|
434
433
|
"content": "Planning execution...",
|
|
435
|
-
"
|
|
434
|
+
"type": "typography"
|
|
436
435
|
},
|
|
437
436
|
{
|
|
438
437
|
"type": "spinner",
|
|
439
438
|
"size": "lg"
|
|
440
439
|
},
|
|
441
440
|
{
|
|
442
|
-
"type": "typography",
|
|
443
441
|
"content": "@entity.task",
|
|
442
|
+
"type": "typography",
|
|
444
443
|
"variant": "caption"
|
|
445
444
|
}
|
|
446
|
-
]
|
|
445
|
+
],
|
|
446
|
+
"gap": "lg"
|
|
447
447
|
}
|
|
448
448
|
]
|
|
449
449
|
]
|
|
@@ -469,7 +469,7 @@
|
|
|
469
469
|
[
|
|
470
470
|
"+",
|
|
471
471
|
"@entity.iterations",
|
|
472
|
-
1
|
|
472
|
+
1.0
|
|
473
473
|
]
|
|
474
474
|
],
|
|
475
475
|
[
|
|
@@ -481,21 +481,17 @@
|
|
|
481
481
|
"render-ui",
|
|
482
482
|
"main",
|
|
483
483
|
{
|
|
484
|
-
"type": "stack",
|
|
485
484
|
"direction": "vertical",
|
|
485
|
+
"type": "stack",
|
|
486
486
|
"gap": "lg",
|
|
487
487
|
"children": [
|
|
488
488
|
{
|
|
489
489
|
"type": "stack",
|
|
490
|
-
"direction": "horizontal",
|
|
491
|
-
"gap": "sm",
|
|
492
490
|
"align": "center",
|
|
493
|
-
"
|
|
491
|
+
"gap": "sm",
|
|
494
492
|
"children": [
|
|
495
493
|
{
|
|
496
494
|
"type": "stack",
|
|
497
|
-
"direction": "horizontal",
|
|
498
|
-
"gap": "sm",
|
|
499
495
|
"align": "center",
|
|
500
496
|
"children": [
|
|
501
497
|
{
|
|
@@ -508,40 +504,49 @@
|
|
|
508
504
|
"content": "Executing Tool",
|
|
509
505
|
"variant": "h2"
|
|
510
506
|
}
|
|
511
|
-
]
|
|
507
|
+
],
|
|
508
|
+
"direction": "horizontal",
|
|
509
|
+
"gap": "sm"
|
|
512
510
|
},
|
|
513
511
|
{
|
|
514
|
-
"type": "badge",
|
|
515
512
|
"label": [
|
|
516
513
|
"str/concat",
|
|
517
514
|
"Iteration ",
|
|
518
|
-
|
|
515
|
+
[
|
|
516
|
+
"str/concat",
|
|
517
|
+
"@entity.iterations"
|
|
518
|
+
],
|
|
519
519
|
"/",
|
|
520
|
-
|
|
521
|
-
|
|
520
|
+
[
|
|
521
|
+
"str/concat",
|
|
522
|
+
"@entity.maxIterations"
|
|
523
|
+
]
|
|
524
|
+
],
|
|
525
|
+
"type": "badge"
|
|
522
526
|
}
|
|
523
|
-
]
|
|
527
|
+
],
|
|
528
|
+
"direction": "horizontal",
|
|
529
|
+
"justify": "space-between"
|
|
524
530
|
},
|
|
525
531
|
{
|
|
526
532
|
"type": "divider"
|
|
527
533
|
},
|
|
528
534
|
{
|
|
529
|
-
"type": "card",
|
|
530
535
|
"children": [
|
|
531
536
|
{
|
|
532
|
-
"type": "stack",
|
|
533
|
-
"direction": "vertical",
|
|
534
537
|
"gap": "sm",
|
|
538
|
+
"direction": "vertical",
|
|
539
|
+
"type": "stack",
|
|
535
540
|
"children": [
|
|
536
541
|
{
|
|
537
|
-
"type": "typography",
|
|
538
542
|
"content": "Current Tool",
|
|
543
|
+
"type": "typography",
|
|
539
544
|
"variant": "caption"
|
|
540
545
|
},
|
|
541
546
|
{
|
|
542
|
-
"
|
|
547
|
+
"variant": "h4",
|
|
543
548
|
"content": "@entity.currentTool",
|
|
544
|
-
"
|
|
549
|
+
"type": "typography"
|
|
545
550
|
},
|
|
546
551
|
{
|
|
547
552
|
"type": "spinner",
|
|
@@ -549,29 +554,99 @@
|
|
|
549
554
|
}
|
|
550
555
|
]
|
|
551
556
|
}
|
|
552
|
-
]
|
|
557
|
+
],
|
|
558
|
+
"type": "card"
|
|
553
559
|
},
|
|
554
560
|
{
|
|
555
|
-
"type": "card",
|
|
556
561
|
"children": [
|
|
557
562
|
{
|
|
558
|
-
"type": "stack",
|
|
559
|
-
"direction": "vertical",
|
|
560
|
-
"gap": "sm",
|
|
561
563
|
"children": [
|
|
562
564
|
{
|
|
565
|
+
"variant": "caption",
|
|
563
566
|
"type": "typography",
|
|
564
|
-
"content": "Plan"
|
|
565
|
-
"variant": "caption"
|
|
567
|
+
"content": "Plan"
|
|
566
568
|
},
|
|
567
569
|
{
|
|
570
|
+
"variant": "body",
|
|
568
571
|
"type": "typography",
|
|
569
|
-
"content": "@entity.plan"
|
|
570
|
-
"variant": "body"
|
|
572
|
+
"content": "@entity.plan"
|
|
571
573
|
}
|
|
572
|
-
]
|
|
574
|
+
],
|
|
575
|
+
"type": "stack",
|
|
576
|
+
"direction": "vertical",
|
|
577
|
+
"gap": "sm"
|
|
578
|
+
}
|
|
579
|
+
],
|
|
580
|
+
"type": "card"
|
|
581
|
+
}
|
|
582
|
+
]
|
|
583
|
+
}
|
|
584
|
+
]
|
|
585
|
+
]
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"from": "planning",
|
|
589
|
+
"to": "failed",
|
|
590
|
+
"event": "FAILED",
|
|
591
|
+
"effects": [
|
|
592
|
+
[
|
|
593
|
+
"set",
|
|
594
|
+
"@entity.error",
|
|
595
|
+
"@payload.error"
|
|
596
|
+
],
|
|
597
|
+
[
|
|
598
|
+
"set",
|
|
599
|
+
"@entity.status",
|
|
600
|
+
"failed"
|
|
601
|
+
],
|
|
602
|
+
[
|
|
603
|
+
"render-ui",
|
|
604
|
+
"main",
|
|
605
|
+
{
|
|
606
|
+
"gap": "lg",
|
|
607
|
+
"direction": "vertical",
|
|
608
|
+
"type": "stack",
|
|
609
|
+
"align": "center",
|
|
610
|
+
"children": [
|
|
611
|
+
{
|
|
612
|
+
"size": "lg",
|
|
613
|
+
"type": "icon",
|
|
614
|
+
"name": "x-circle"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"type": "typography",
|
|
618
|
+
"content": "Loop Failed",
|
|
619
|
+
"variant": "h2"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"variant": "error",
|
|
623
|
+
"message": "@entity.error",
|
|
624
|
+
"type": "alert"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"type": "simple-grid",
|
|
628
|
+
"cols": 2.0,
|
|
629
|
+
"children": [
|
|
630
|
+
{
|
|
631
|
+
"icon": "repeat",
|
|
632
|
+
"type": "stat-display",
|
|
633
|
+
"value": "@entity.iterations",
|
|
634
|
+
"label": "Iterations Used"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"value": "@entity.maxIterations",
|
|
638
|
+
"icon": "shield",
|
|
639
|
+
"label": "Max Allowed",
|
|
640
|
+
"type": "stat-display"
|
|
573
641
|
}
|
|
574
642
|
]
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"type": "button",
|
|
646
|
+
"variant": "primary",
|
|
647
|
+
"event": "RESET",
|
|
648
|
+
"icon": "rotate-ccw",
|
|
649
|
+
"label": "Retry"
|
|
575
650
|
}
|
|
576
651
|
]
|
|
577
652
|
}
|
|
@@ -606,13 +681,11 @@
|
|
|
606
681
|
"main",
|
|
607
682
|
{
|
|
608
683
|
"type": "stack",
|
|
609
|
-
"direction": "vertical",
|
|
610
|
-
"gap": "lg",
|
|
611
684
|
"align": "center",
|
|
612
685
|
"children": [
|
|
613
686
|
{
|
|
614
|
-
"type": "icon",
|
|
615
687
|
"name": "eye",
|
|
688
|
+
"type": "icon",
|
|
616
689
|
"size": "lg"
|
|
617
690
|
},
|
|
618
691
|
{
|
|
@@ -625,14 +698,88 @@
|
|
|
625
698
|
"size": "lg"
|
|
626
699
|
},
|
|
627
700
|
{
|
|
628
|
-
"type": "badge",
|
|
629
701
|
"label": [
|
|
630
702
|
"str/concat",
|
|
631
703
|
"Iteration ",
|
|
632
|
-
|
|
704
|
+
[
|
|
705
|
+
"str/concat",
|
|
706
|
+
"@entity.iterations"
|
|
707
|
+
]
|
|
708
|
+
],
|
|
709
|
+
"type": "badge"
|
|
710
|
+
}
|
|
711
|
+
],
|
|
712
|
+
"gap": "lg",
|
|
713
|
+
"direction": "vertical"
|
|
714
|
+
}
|
|
715
|
+
]
|
|
716
|
+
]
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"from": "executing",
|
|
720
|
+
"to": "failed",
|
|
721
|
+
"event": "FAILED",
|
|
722
|
+
"effects": [
|
|
723
|
+
[
|
|
724
|
+
"set",
|
|
725
|
+
"@entity.error",
|
|
726
|
+
"@payload.error"
|
|
727
|
+
],
|
|
728
|
+
[
|
|
729
|
+
"set",
|
|
730
|
+
"@entity.status",
|
|
731
|
+
"failed"
|
|
732
|
+
],
|
|
733
|
+
[
|
|
734
|
+
"render-ui",
|
|
735
|
+
"main",
|
|
736
|
+
{
|
|
737
|
+
"gap": "lg",
|
|
738
|
+
"direction": "vertical",
|
|
739
|
+
"type": "stack",
|
|
740
|
+
"children": [
|
|
741
|
+
{
|
|
742
|
+
"size": "lg",
|
|
743
|
+
"type": "icon",
|
|
744
|
+
"name": "x-circle"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"variant": "h2",
|
|
748
|
+
"content": "Loop Failed",
|
|
749
|
+
"type": "typography"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"type": "alert",
|
|
753
|
+
"variant": "error",
|
|
754
|
+
"message": "@entity.error"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"type": "simple-grid",
|
|
758
|
+
"cols": 2.0,
|
|
759
|
+
"children": [
|
|
760
|
+
{
|
|
761
|
+
"value": "@entity.iterations",
|
|
762
|
+
"label": "Iterations Used",
|
|
763
|
+
"icon": "repeat",
|
|
764
|
+
"type": "stat-display"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"type": "stat-display",
|
|
768
|
+
"icon": "shield",
|
|
769
|
+
"label": "Max Allowed",
|
|
770
|
+
"value": "@entity.maxIterations"
|
|
771
|
+
}
|
|
633
772
|
]
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"variant": "primary",
|
|
776
|
+
"event": "RESET",
|
|
777
|
+
"type": "button",
|
|
778
|
+
"icon": "rotate-ccw",
|
|
779
|
+
"label": "Retry"
|
|
634
780
|
}
|
|
635
|
-
]
|
|
781
|
+
],
|
|
782
|
+
"align": "center"
|
|
636
783
|
}
|
|
637
784
|
]
|
|
638
785
|
]
|
|
@@ -656,64 +803,63 @@
|
|
|
656
803
|
"render-ui",
|
|
657
804
|
"main",
|
|
658
805
|
{
|
|
659
|
-
"type": "stack",
|
|
660
806
|
"direction": "vertical",
|
|
661
807
|
"gap": "lg",
|
|
662
808
|
"children": [
|
|
663
809
|
{
|
|
664
|
-
"type": "stack",
|
|
665
|
-
"direction": "horizontal",
|
|
666
|
-
"gap": "sm",
|
|
667
|
-
"align": "center",
|
|
668
|
-
"justify": "space-between",
|
|
669
810
|
"children": [
|
|
670
811
|
{
|
|
671
|
-
"type": "stack",
|
|
672
|
-
"direction": "horizontal",
|
|
673
|
-
"gap": "sm",
|
|
674
|
-
"align": "center",
|
|
675
812
|
"children": [
|
|
676
813
|
{
|
|
677
|
-
"type": "icon",
|
|
678
814
|
"name": "check-circle",
|
|
679
|
-
"size": "lg"
|
|
815
|
+
"size": "lg",
|
|
816
|
+
"type": "icon"
|
|
680
817
|
},
|
|
681
818
|
{
|
|
819
|
+
"variant": "h2",
|
|
682
820
|
"type": "typography",
|
|
683
|
-
"content": "Loop Complete"
|
|
684
|
-
"variant": "h2"
|
|
821
|
+
"content": "Loop Complete"
|
|
685
822
|
}
|
|
686
|
-
]
|
|
823
|
+
],
|
|
824
|
+
"type": "stack",
|
|
825
|
+
"gap": "sm",
|
|
826
|
+
"direction": "horizontal",
|
|
827
|
+
"align": "center"
|
|
687
828
|
},
|
|
688
829
|
{
|
|
830
|
+
"event": "RESET",
|
|
689
831
|
"type": "button",
|
|
832
|
+
"icon": "rotate-ccw",
|
|
690
833
|
"label": "New Task",
|
|
691
|
-
"
|
|
692
|
-
"variant": "ghost",
|
|
693
|
-
"icon": "rotate-ccw"
|
|
834
|
+
"variant": "ghost"
|
|
694
835
|
}
|
|
695
|
-
]
|
|
836
|
+
],
|
|
837
|
+
"type": "stack",
|
|
838
|
+
"gap": "sm",
|
|
839
|
+
"direction": "horizontal",
|
|
840
|
+
"align": "center",
|
|
841
|
+
"justify": "space-between"
|
|
696
842
|
},
|
|
697
843
|
{
|
|
698
844
|
"type": "divider"
|
|
699
845
|
},
|
|
700
846
|
{
|
|
701
|
-
"type": "simple-grid",
|
|
702
|
-
"cols": 2,
|
|
703
847
|
"children": [
|
|
704
848
|
{
|
|
705
|
-
"type": "stat-display",
|
|
706
849
|
"label": "Iterations",
|
|
707
|
-
"
|
|
708
|
-
"icon": "repeat"
|
|
850
|
+
"type": "stat-display",
|
|
851
|
+
"icon": "repeat",
|
|
852
|
+
"value": "@entity.iterations"
|
|
709
853
|
},
|
|
710
854
|
{
|
|
711
855
|
"type": "stat-display",
|
|
712
|
-
"label": "Status",
|
|
713
856
|
"value": "@entity.status",
|
|
857
|
+
"label": "Status",
|
|
714
858
|
"icon": "check"
|
|
715
859
|
}
|
|
716
|
-
]
|
|
860
|
+
],
|
|
861
|
+
"cols": 2.0,
|
|
862
|
+
"type": "simple-grid"
|
|
717
863
|
},
|
|
718
864
|
{
|
|
719
865
|
"type": "divider"
|
|
@@ -723,18 +869,17 @@
|
|
|
723
869
|
"children": [
|
|
724
870
|
{
|
|
725
871
|
"type": "stack",
|
|
726
|
-
"direction": "vertical",
|
|
727
872
|
"gap": "md",
|
|
728
873
|
"children": [
|
|
729
874
|
{
|
|
730
875
|
"type": "typography",
|
|
731
|
-
"
|
|
732
|
-
"
|
|
876
|
+
"variant": "caption",
|
|
877
|
+
"content": "Task"
|
|
733
878
|
},
|
|
734
879
|
{
|
|
880
|
+
"variant": "body",
|
|
735
881
|
"type": "typography",
|
|
736
|
-
"content": "@entity.task"
|
|
737
|
-
"variant": "body"
|
|
882
|
+
"content": "@entity.task"
|
|
738
883
|
},
|
|
739
884
|
{
|
|
740
885
|
"type": "divider"
|
|
@@ -745,15 +890,17 @@
|
|
|
745
890
|
"variant": "caption"
|
|
746
891
|
},
|
|
747
892
|
{
|
|
748
|
-
"type": "typography",
|
|
749
893
|
"content": "@entity.result",
|
|
750
|
-
"variant": "body"
|
|
894
|
+
"variant": "body",
|
|
895
|
+
"type": "typography"
|
|
751
896
|
}
|
|
752
|
-
]
|
|
897
|
+
],
|
|
898
|
+
"direction": "vertical"
|
|
753
899
|
}
|
|
754
900
|
]
|
|
755
901
|
}
|
|
756
|
-
]
|
|
902
|
+
],
|
|
903
|
+
"type": "stack"
|
|
757
904
|
}
|
|
758
905
|
]
|
|
759
906
|
]
|
|
@@ -762,13 +909,6 @@
|
|
|
762
909
|
"from": "checking",
|
|
763
910
|
"to": "executing",
|
|
764
911
|
"event": "CHECK_NEEDS_MORE",
|
|
765
|
-
"guards": [
|
|
766
|
-
[
|
|
767
|
-
"math/lt",
|
|
768
|
-
"@entity.iterations",
|
|
769
|
-
10
|
|
770
|
-
]
|
|
771
|
-
],
|
|
772
912
|
"effects": [
|
|
773
913
|
[
|
|
774
914
|
"set",
|
|
@@ -781,7 +921,7 @@
|
|
|
781
921
|
[
|
|
782
922
|
"+",
|
|
783
923
|
"@entity.iterations",
|
|
784
|
-
1
|
|
924
|
+
1.0
|
|
785
925
|
]
|
|
786
926
|
],
|
|
787
927
|
[
|
|
@@ -811,32 +951,32 @@
|
|
|
811
951
|
"render-ui",
|
|
812
952
|
"main",
|
|
813
953
|
{
|
|
814
|
-
"type": "stack",
|
|
815
|
-
"direction": "vertical",
|
|
816
954
|
"gap": "lg",
|
|
955
|
+
"direction": "vertical",
|
|
956
|
+
"type": "stack",
|
|
817
957
|
"children": [
|
|
818
958
|
{
|
|
819
|
-
"type": "stack",
|
|
820
|
-
"direction": "horizontal",
|
|
821
959
|
"gap": "sm",
|
|
822
960
|
"align": "center",
|
|
961
|
+
"type": "stack",
|
|
962
|
+
"direction": "horizontal",
|
|
823
963
|
"justify": "space-between",
|
|
824
964
|
"children": [
|
|
825
965
|
{
|
|
826
|
-
"
|
|
966
|
+
"align": "center",
|
|
827
967
|
"direction": "horizontal",
|
|
968
|
+
"type": "stack",
|
|
828
969
|
"gap": "sm",
|
|
829
|
-
"align": "center",
|
|
830
970
|
"children": [
|
|
831
971
|
{
|
|
832
|
-
"type": "icon",
|
|
833
972
|
"name": "tool",
|
|
973
|
+
"type": "icon",
|
|
834
974
|
"size": "lg"
|
|
835
975
|
},
|
|
836
976
|
{
|
|
977
|
+
"variant": "h2",
|
|
837
978
|
"type": "typography",
|
|
838
|
-
"content": "Executing Tool"
|
|
839
|
-
"variant": "h2"
|
|
979
|
+
"content": "Executing Tool"
|
|
840
980
|
}
|
|
841
981
|
]
|
|
842
982
|
},
|
|
@@ -845,9 +985,15 @@
|
|
|
845
985
|
"label": [
|
|
846
986
|
"str/concat",
|
|
847
987
|
"Iteration ",
|
|
848
|
-
|
|
988
|
+
[
|
|
989
|
+
"str/concat",
|
|
990
|
+
"@entity.iterations"
|
|
991
|
+
],
|
|
849
992
|
"/",
|
|
850
|
-
|
|
993
|
+
[
|
|
994
|
+
"str/concat",
|
|
995
|
+
"@entity.maxIterations"
|
|
996
|
+
]
|
|
851
997
|
]
|
|
852
998
|
}
|
|
853
999
|
]
|
|
@@ -859,14 +1005,13 @@
|
|
|
859
1005
|
"type": "card",
|
|
860
1006
|
"children": [
|
|
861
1007
|
{
|
|
862
|
-
"type": "stack",
|
|
863
|
-
"direction": "vertical",
|
|
864
1008
|
"gap": "sm",
|
|
1009
|
+
"direction": "vertical",
|
|
865
1010
|
"children": [
|
|
866
1011
|
{
|
|
867
|
-
"type": "typography",
|
|
868
1012
|
"content": "Current Tool",
|
|
869
|
-
"variant": "caption"
|
|
1013
|
+
"variant": "caption",
|
|
1014
|
+
"type": "typography"
|
|
870
1015
|
},
|
|
871
1016
|
{
|
|
872
1017
|
"type": "typography",
|
|
@@ -874,34 +1019,35 @@
|
|
|
874
1019
|
"variant": "h4"
|
|
875
1020
|
},
|
|
876
1021
|
{
|
|
877
|
-
"
|
|
878
|
-
"
|
|
1022
|
+
"size": "md",
|
|
1023
|
+
"type": "spinner"
|
|
879
1024
|
}
|
|
880
|
-
]
|
|
1025
|
+
],
|
|
1026
|
+
"type": "stack"
|
|
881
1027
|
}
|
|
882
1028
|
]
|
|
883
1029
|
},
|
|
884
1030
|
{
|
|
885
|
-
"type": "card",
|
|
886
1031
|
"children": [
|
|
887
1032
|
{
|
|
888
|
-
"type": "stack",
|
|
889
|
-
"direction": "vertical",
|
|
890
1033
|
"gap": "sm",
|
|
891
1034
|
"children": [
|
|
892
1035
|
{
|
|
893
|
-
"type": "typography",
|
|
894
1036
|
"content": "Plan",
|
|
895
|
-
"variant": "caption"
|
|
1037
|
+
"variant": "caption",
|
|
1038
|
+
"type": "typography"
|
|
896
1039
|
},
|
|
897
1040
|
{
|
|
898
1041
|
"type": "typography",
|
|
899
|
-
"
|
|
900
|
-
"
|
|
1042
|
+
"variant": "body",
|
|
1043
|
+
"content": "@entity.plan"
|
|
901
1044
|
}
|
|
902
|
-
]
|
|
1045
|
+
],
|
|
1046
|
+
"direction": "vertical",
|
|
1047
|
+
"type": "stack"
|
|
903
1048
|
}
|
|
904
|
-
]
|
|
1049
|
+
],
|
|
1050
|
+
"type": "card"
|
|
905
1051
|
}
|
|
906
1052
|
]
|
|
907
1053
|
}
|
|
@@ -927,190 +1073,52 @@
|
|
|
927
1073
|
"render-ui",
|
|
928
1074
|
"main",
|
|
929
1075
|
{
|
|
930
|
-
"type": "stack",
|
|
931
1076
|
"direction": "vertical",
|
|
932
|
-
"gap": "lg",
|
|
933
1077
|
"align": "center",
|
|
934
1078
|
"children": [
|
|
935
1079
|
{
|
|
936
|
-
"type": "icon",
|
|
937
1080
|
"name": "x-circle",
|
|
938
|
-
"size": "lg"
|
|
1081
|
+
"size": "lg",
|
|
1082
|
+
"type": "icon"
|
|
939
1083
|
},
|
|
940
1084
|
{
|
|
1085
|
+
"variant": "h2",
|
|
941
1086
|
"type": "typography",
|
|
942
|
-
"content": "Loop Failed"
|
|
943
|
-
"variant": "h2"
|
|
1087
|
+
"content": "Loop Failed"
|
|
944
1088
|
},
|
|
945
1089
|
{
|
|
1090
|
+
"message": "@entity.error",
|
|
946
1091
|
"type": "alert",
|
|
947
|
-
"variant": "error"
|
|
948
|
-
"message": "@entity.error"
|
|
1092
|
+
"variant": "error"
|
|
949
1093
|
},
|
|
950
1094
|
{
|
|
951
1095
|
"type": "simple-grid",
|
|
952
|
-
"cols": 2,
|
|
953
1096
|
"children": [
|
|
954
1097
|
{
|
|
955
|
-
"type": "stat-display",
|
|
956
1098
|
"label": "Iterations Used",
|
|
957
|
-
"
|
|
958
|
-
"icon": "repeat"
|
|
959
|
-
},
|
|
960
|
-
{
|
|
961
|
-
"type": "stat-display",
|
|
962
|
-
"label": "Max Allowed",
|
|
963
|
-
"value": "@entity.maxIterations",
|
|
964
|
-
"icon": "shield"
|
|
965
|
-
}
|
|
966
|
-
]
|
|
967
|
-
},
|
|
968
|
-
{
|
|
969
|
-
"type": "button",
|
|
970
|
-
"label": "Retry",
|
|
971
|
-
"event": "RESET",
|
|
972
|
-
"variant": "primary",
|
|
973
|
-
"icon": "rotate-ccw"
|
|
974
|
-
}
|
|
975
|
-
]
|
|
976
|
-
}
|
|
977
|
-
]
|
|
978
|
-
]
|
|
979
|
-
},
|
|
980
|
-
{
|
|
981
|
-
"from": "planning",
|
|
982
|
-
"to": "failed",
|
|
983
|
-
"event": "FAILED",
|
|
984
|
-
"effects": [
|
|
985
|
-
[
|
|
986
|
-
"set",
|
|
987
|
-
"@entity.error",
|
|
988
|
-
"@payload.error"
|
|
989
|
-
],
|
|
990
|
-
[
|
|
991
|
-
"set",
|
|
992
|
-
"@entity.status",
|
|
993
|
-
"failed"
|
|
994
|
-
],
|
|
995
|
-
[
|
|
996
|
-
"render-ui",
|
|
997
|
-
"main",
|
|
998
|
-
{
|
|
999
|
-
"type": "stack",
|
|
1000
|
-
"direction": "vertical",
|
|
1001
|
-
"gap": "lg",
|
|
1002
|
-
"align": "center",
|
|
1003
|
-
"children": [
|
|
1004
|
-
{
|
|
1005
|
-
"type": "icon",
|
|
1006
|
-
"name": "x-circle",
|
|
1007
|
-
"size": "lg"
|
|
1008
|
-
},
|
|
1009
|
-
{
|
|
1010
|
-
"type": "typography",
|
|
1011
|
-
"content": "Loop Failed",
|
|
1012
|
-
"variant": "h2"
|
|
1013
|
-
},
|
|
1014
|
-
{
|
|
1015
|
-
"type": "alert",
|
|
1016
|
-
"variant": "error",
|
|
1017
|
-
"message": "@entity.error"
|
|
1018
|
-
},
|
|
1019
|
-
{
|
|
1020
|
-
"type": "simple-grid",
|
|
1021
|
-
"cols": 2,
|
|
1022
|
-
"children": [
|
|
1023
|
-
{
|
|
1099
|
+
"icon": "repeat",
|
|
1024
1100
|
"type": "stat-display",
|
|
1025
|
-
"
|
|
1026
|
-
"value": "@entity.iterations",
|
|
1027
|
-
"icon": "repeat"
|
|
1101
|
+
"value": "@entity.iterations"
|
|
1028
1102
|
},
|
|
1029
1103
|
{
|
|
1030
|
-
"type": "stat-display",
|
|
1031
|
-
"label": "Max Allowed",
|
|
1032
1104
|
"value": "@entity.maxIterations",
|
|
1033
|
-
"icon": "shield"
|
|
1034
|
-
}
|
|
1035
|
-
]
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
"type": "button",
|
|
1039
|
-
"label": "Retry",
|
|
1040
|
-
"event": "RESET",
|
|
1041
|
-
"variant": "primary",
|
|
1042
|
-
"icon": "rotate-ccw"
|
|
1043
|
-
}
|
|
1044
|
-
]
|
|
1045
|
-
}
|
|
1046
|
-
]
|
|
1047
|
-
]
|
|
1048
|
-
},
|
|
1049
|
-
{
|
|
1050
|
-
"from": "executing",
|
|
1051
|
-
"to": "failed",
|
|
1052
|
-
"event": "FAILED",
|
|
1053
|
-
"effects": [
|
|
1054
|
-
[
|
|
1055
|
-
"set",
|
|
1056
|
-
"@entity.error",
|
|
1057
|
-
"@payload.error"
|
|
1058
|
-
],
|
|
1059
|
-
[
|
|
1060
|
-
"set",
|
|
1061
|
-
"@entity.status",
|
|
1062
|
-
"failed"
|
|
1063
|
-
],
|
|
1064
|
-
[
|
|
1065
|
-
"render-ui",
|
|
1066
|
-
"main",
|
|
1067
|
-
{
|
|
1068
|
-
"type": "stack",
|
|
1069
|
-
"direction": "vertical",
|
|
1070
|
-
"gap": "lg",
|
|
1071
|
-
"align": "center",
|
|
1072
|
-
"children": [
|
|
1073
|
-
{
|
|
1074
|
-
"type": "icon",
|
|
1075
|
-
"name": "x-circle",
|
|
1076
|
-
"size": "lg"
|
|
1077
|
-
},
|
|
1078
|
-
{
|
|
1079
|
-
"type": "typography",
|
|
1080
|
-
"content": "Loop Failed",
|
|
1081
|
-
"variant": "h2"
|
|
1082
|
-
},
|
|
1083
|
-
{
|
|
1084
|
-
"type": "alert",
|
|
1085
|
-
"variant": "error",
|
|
1086
|
-
"message": "@entity.error"
|
|
1087
|
-
},
|
|
1088
|
-
{
|
|
1089
|
-
"type": "simple-grid",
|
|
1090
|
-
"cols": 2,
|
|
1091
|
-
"children": [
|
|
1092
|
-
{
|
|
1093
|
-
"type": "stat-display",
|
|
1094
|
-
"label": "Iterations Used",
|
|
1095
|
-
"value": "@entity.iterations",
|
|
1096
|
-
"icon": "repeat"
|
|
1097
|
-
},
|
|
1098
|
-
{
|
|
1099
|
-
"type": "stat-display",
|
|
1105
|
+
"icon": "shield",
|
|
1100
1106
|
"label": "Max Allowed",
|
|
1101
|
-
"
|
|
1102
|
-
"icon": "shield"
|
|
1107
|
+
"type": "stat-display"
|
|
1103
1108
|
}
|
|
1104
|
-
]
|
|
1109
|
+
],
|
|
1110
|
+
"cols": 2.0
|
|
1105
1111
|
},
|
|
1106
1112
|
{
|
|
1107
1113
|
"type": "button",
|
|
1108
|
-
"label": "Retry",
|
|
1109
|
-
"event": "RESET",
|
|
1110
1114
|
"variant": "primary",
|
|
1111
|
-
"icon": "rotate-ccw"
|
|
1115
|
+
"icon": "rotate-ccw",
|
|
1116
|
+
"label": "Retry",
|
|
1117
|
+
"event": "RESET"
|
|
1112
1118
|
}
|
|
1113
|
-
]
|
|
1119
|
+
],
|
|
1120
|
+
"type": "stack",
|
|
1121
|
+
"gap": "lg"
|
|
1114
1122
|
}
|
|
1115
1123
|
]
|
|
1116
1124
|
]
|
|
@@ -1153,7 +1161,7 @@
|
|
|
1153
1161
|
[
|
|
1154
1162
|
"set",
|
|
1155
1163
|
"@entity.iterations",
|
|
1156
|
-
0
|
|
1164
|
+
0.0
|
|
1157
1165
|
],
|
|
1158
1166
|
[
|
|
1159
1167
|
"set",
|
|
@@ -1166,23 +1174,22 @@
|
|
|
1166
1174
|
{
|
|
1167
1175
|
"type": "stack",
|
|
1168
1176
|
"direction": "vertical",
|
|
1169
|
-
"gap": "lg",
|
|
1170
1177
|
"children": [
|
|
1171
1178
|
{
|
|
1172
|
-
"type": "stack",
|
|
1173
1179
|
"direction": "horizontal",
|
|
1174
1180
|
"gap": "sm",
|
|
1181
|
+
"type": "stack",
|
|
1175
1182
|
"align": "center",
|
|
1176
1183
|
"children": [
|
|
1177
1184
|
{
|
|
1178
|
-
"type": "icon",
|
|
1179
1185
|
"name": "repeat",
|
|
1180
|
-
"size": "lg"
|
|
1186
|
+
"size": "lg",
|
|
1187
|
+
"type": "icon"
|
|
1181
1188
|
},
|
|
1182
1189
|
{
|
|
1183
1190
|
"type": "typography",
|
|
1184
|
-
"
|
|
1185
|
-
"
|
|
1191
|
+
"variant": "h2",
|
|
1192
|
+
"content": "Tool Execution Loop"
|
|
1186
1193
|
}
|
|
1187
1194
|
]
|
|
1188
1195
|
},
|
|
@@ -1193,29 +1200,30 @@
|
|
|
1193
1200
|
"type": "card",
|
|
1194
1201
|
"children": [
|
|
1195
1202
|
{
|
|
1203
|
+
"gap": "md",
|
|
1196
1204
|
"type": "stack",
|
|
1197
1205
|
"direction": "vertical",
|
|
1198
|
-
"gap": "md",
|
|
1199
1206
|
"children": [
|
|
1200
1207
|
{
|
|
1201
|
-
"
|
|
1208
|
+
"variant": "body",
|
|
1202
1209
|
"content": "Describe the task to execute with tools",
|
|
1203
|
-
"
|
|
1210
|
+
"type": "typography"
|
|
1204
1211
|
},
|
|
1205
1212
|
{
|
|
1206
|
-
"type": "form-section",
|
|
1207
|
-
"entity": "AgentToolLoop",
|
|
1208
|
-
"mode": "edit",
|
|
1209
1213
|
"submitEvent": "EXECUTE",
|
|
1214
|
+
"type": "form-section",
|
|
1210
1215
|
"fields": [
|
|
1211
1216
|
"task"
|
|
1212
|
-
]
|
|
1217
|
+
],
|
|
1218
|
+
"mode": "edit",
|
|
1219
|
+
"entity": "AgentToolLoop"
|
|
1213
1220
|
}
|
|
1214
1221
|
]
|
|
1215
1222
|
}
|
|
1216
1223
|
]
|
|
1217
1224
|
}
|
|
1218
|
-
]
|
|
1225
|
+
],
|
|
1226
|
+
"gap": "lg"
|
|
1219
1227
|
}
|
|
1220
1228
|
]
|
|
1221
1229
|
]
|
|
@@ -1258,7 +1266,7 @@
|
|
|
1258
1266
|
[
|
|
1259
1267
|
"set",
|
|
1260
1268
|
"@entity.iterations",
|
|
1261
|
-
0
|
|
1269
|
+
0.0
|
|
1262
1270
|
],
|
|
1263
1271
|
[
|
|
1264
1272
|
"set",
|
|
@@ -1269,15 +1277,12 @@
|
|
|
1269
1277
|
"render-ui",
|
|
1270
1278
|
"main",
|
|
1271
1279
|
{
|
|
1272
|
-
"type": "stack",
|
|
1273
|
-
"direction": "vertical",
|
|
1274
1280
|
"gap": "lg",
|
|
1281
|
+
"type": "stack",
|
|
1275
1282
|
"children": [
|
|
1276
1283
|
{
|
|
1277
|
-
"type": "stack",
|
|
1278
|
-
"direction": "horizontal",
|
|
1279
|
-
"gap": "sm",
|
|
1280
1284
|
"align": "center",
|
|
1285
|
+
"gap": "sm",
|
|
1281
1286
|
"children": [
|
|
1282
1287
|
{
|
|
1283
1288
|
"type": "icon",
|
|
@@ -1285,11 +1290,13 @@
|
|
|
1285
1290
|
"size": "lg"
|
|
1286
1291
|
},
|
|
1287
1292
|
{
|
|
1288
|
-
"type": "typography",
|
|
1289
1293
|
"content": "Tool Execution Loop",
|
|
1290
|
-
"variant": "h2"
|
|
1294
|
+
"variant": "h2",
|
|
1295
|
+
"type": "typography"
|
|
1291
1296
|
}
|
|
1292
|
-
]
|
|
1297
|
+
],
|
|
1298
|
+
"direction": "horizontal",
|
|
1299
|
+
"type": "stack"
|
|
1293
1300
|
},
|
|
1294
1301
|
{
|
|
1295
1302
|
"type": "divider"
|
|
@@ -1298,41 +1305,42 @@
|
|
|
1298
1305
|
"type": "card",
|
|
1299
1306
|
"children": [
|
|
1300
1307
|
{
|
|
1301
|
-
"type": "stack",
|
|
1302
|
-
"direction": "vertical",
|
|
1303
1308
|
"gap": "md",
|
|
1304
1309
|
"children": [
|
|
1305
1310
|
{
|
|
1306
|
-
"
|
|
1311
|
+
"variant": "body",
|
|
1307
1312
|
"content": "Describe the task to execute with tools",
|
|
1308
|
-
"
|
|
1313
|
+
"type": "typography"
|
|
1309
1314
|
},
|
|
1310
1315
|
{
|
|
1311
1316
|
"type": "form-section",
|
|
1312
|
-
"entity": "AgentToolLoop",
|
|
1313
|
-
"mode": "edit",
|
|
1314
1317
|
"submitEvent": "EXECUTE",
|
|
1318
|
+
"mode": "edit",
|
|
1315
1319
|
"fields": [
|
|
1316
1320
|
"task"
|
|
1317
|
-
]
|
|
1321
|
+
],
|
|
1322
|
+
"entity": "AgentToolLoop"
|
|
1318
1323
|
}
|
|
1319
|
-
]
|
|
1324
|
+
],
|
|
1325
|
+
"type": "stack",
|
|
1326
|
+
"direction": "vertical"
|
|
1320
1327
|
}
|
|
1321
1328
|
]
|
|
1322
1329
|
}
|
|
1323
|
-
]
|
|
1330
|
+
],
|
|
1331
|
+
"direction": "vertical"
|
|
1324
1332
|
}
|
|
1325
1333
|
]
|
|
1326
1334
|
]
|
|
1327
1335
|
}
|
|
1328
1336
|
]
|
|
1329
|
-
}
|
|
1337
|
+
},
|
|
1338
|
+
"scope": "collection"
|
|
1330
1339
|
},
|
|
1331
1340
|
{
|
|
1332
1341
|
"ref": "AgentStepProgress.traits.AgentStepProgressProgress",
|
|
1333
1342
|
"name": "ToolLoopStepProgress",
|
|
1334
1343
|
"linkedEntity": "AgentToolLoop",
|
|
1335
|
-
"listens": [],
|
|
1336
1344
|
"emitsScope": "internal",
|
|
1337
1345
|
"effects": {
|
|
1338
1346
|
"INIT": [
|
|
@@ -1344,15 +1352,13 @@
|
|
|
1344
1352
|
"render-ui",
|
|
1345
1353
|
"main",
|
|
1346
1354
|
{
|
|
1347
|
-
"type": "stack",
|
|
1348
1355
|
"direction": "vertical",
|
|
1349
|
-
"gap": "lg",
|
|
1350
1356
|
"children": [
|
|
1351
1357
|
{
|
|
1352
|
-
"type": "stack",
|
|
1353
|
-
"direction": "horizontal",
|
|
1354
1358
|
"gap": "sm",
|
|
1355
1359
|
"align": "center",
|
|
1360
|
+
"type": "stack",
|
|
1361
|
+
"direction": "horizontal",
|
|
1356
1362
|
"children": [
|
|
1357
1363
|
{
|
|
1358
1364
|
"type": "icon",
|
|
@@ -1365,8 +1371,8 @@
|
|
|
1365
1371
|
"variant": "h2"
|
|
1366
1372
|
},
|
|
1367
1373
|
{
|
|
1368
|
-
"type": "badge",
|
|
1369
1374
|
"label": "Idle",
|
|
1375
|
+
"type": "badge",
|
|
1370
1376
|
"variant": "default"
|
|
1371
1377
|
}
|
|
1372
1378
|
]
|
|
@@ -1375,16 +1381,14 @@
|
|
|
1375
1381
|
"type": "divider"
|
|
1376
1382
|
},
|
|
1377
1383
|
{
|
|
1378
|
-
"type": "wizard-progress",
|
|
1379
|
-
"currentStep": "@entity.currentStep",
|
|
1380
1384
|
"steps": [
|
|
1381
1385
|
{
|
|
1382
|
-
"
|
|
1383
|
-
"
|
|
1386
|
+
"title": "Plan",
|
|
1387
|
+
"id": "0"
|
|
1384
1388
|
},
|
|
1385
1389
|
{
|
|
1386
|
-
"
|
|
1387
|
-
"
|
|
1390
|
+
"title": "Execute",
|
|
1391
|
+
"id": "1"
|
|
1388
1392
|
},
|
|
1389
1393
|
{
|
|
1390
1394
|
"id": "2",
|
|
@@ -1394,7 +1398,9 @@
|
|
|
1394
1398
|
"id": "3",
|
|
1395
1399
|
"title": "Complete"
|
|
1396
1400
|
}
|
|
1397
|
-
]
|
|
1401
|
+
],
|
|
1402
|
+
"currentStep": "@entity.currentStep",
|
|
1403
|
+
"type": "wizard-progress"
|
|
1398
1404
|
},
|
|
1399
1405
|
{
|
|
1400
1406
|
"type": "button",
|
|
@@ -1403,87 +1409,85 @@
|
|
|
1403
1409
|
"variant": "primary",
|
|
1404
1410
|
"icon": "play"
|
|
1405
1411
|
}
|
|
1406
|
-
]
|
|
1412
|
+
],
|
|
1413
|
+
"type": "stack",
|
|
1414
|
+
"gap": "lg"
|
|
1407
1415
|
}
|
|
1408
1416
|
]
|
|
1409
1417
|
],
|
|
1410
|
-
"
|
|
1411
|
-
[
|
|
1412
|
-
"set",
|
|
1413
|
-
"@entity.status",
|
|
1414
|
-
"in_progress"
|
|
1415
|
-
],
|
|
1418
|
+
"ADVANCE": [
|
|
1416
1419
|
[
|
|
1417
1420
|
"set",
|
|
1418
1421
|
"@entity.currentStep",
|
|
1419
|
-
|
|
1422
|
+
[
|
|
1423
|
+
"+",
|
|
1424
|
+
"@entity.currentStep",
|
|
1425
|
+
1.0
|
|
1426
|
+
]
|
|
1420
1427
|
],
|
|
1421
1428
|
[
|
|
1422
1429
|
"render-ui",
|
|
1423
1430
|
"main",
|
|
1424
1431
|
{
|
|
1425
|
-
"type": "stack",
|
|
1426
|
-
"direction": "vertical",
|
|
1427
|
-
"gap": "lg",
|
|
1428
1432
|
"children": [
|
|
1429
1433
|
{
|
|
1430
1434
|
"type": "stack",
|
|
1431
|
-
"direction": "horizontal",
|
|
1432
|
-
"gap": "sm",
|
|
1433
1435
|
"align": "center",
|
|
1436
|
+
"direction": "horizontal",
|
|
1434
1437
|
"children": [
|
|
1435
1438
|
{
|
|
1436
|
-
"type": "icon",
|
|
1437
1439
|
"name": "loader",
|
|
1438
|
-
"size": "lg"
|
|
1440
|
+
"size": "lg",
|
|
1441
|
+
"type": "icon"
|
|
1439
1442
|
},
|
|
1440
1443
|
{
|
|
1441
1444
|
"type": "typography",
|
|
1442
|
-
"
|
|
1443
|
-
"
|
|
1445
|
+
"variant": "h2",
|
|
1446
|
+
"content": "AgentToolLoop"
|
|
1444
1447
|
},
|
|
1445
1448
|
{
|
|
1449
|
+
"variant": "warning",
|
|
1446
1450
|
"type": "badge",
|
|
1447
|
-
"label": "In Progress"
|
|
1448
|
-
"variant": "warning"
|
|
1451
|
+
"label": "In Progress"
|
|
1449
1452
|
}
|
|
1450
|
-
]
|
|
1453
|
+
],
|
|
1454
|
+
"gap": "sm"
|
|
1451
1455
|
},
|
|
1452
1456
|
{
|
|
1453
1457
|
"type": "divider"
|
|
1454
1458
|
},
|
|
1455
1459
|
{
|
|
1456
|
-
"type": "wizard-progress",
|
|
1457
|
-
"currentStep": "@entity.currentStep",
|
|
1458
1460
|
"steps": [
|
|
1459
1461
|
{
|
|
1460
1462
|
"id": "0",
|
|
1461
1463
|
"title": "Plan"
|
|
1462
1464
|
},
|
|
1463
1465
|
{
|
|
1464
|
-
"
|
|
1465
|
-
"
|
|
1466
|
+
"title": "Execute",
|
|
1467
|
+
"id": "1"
|
|
1466
1468
|
},
|
|
1467
1469
|
{
|
|
1468
|
-
"
|
|
1469
|
-
"
|
|
1470
|
+
"title": "Check",
|
|
1471
|
+
"id": "2"
|
|
1470
1472
|
},
|
|
1471
1473
|
{
|
|
1472
|
-
"
|
|
1473
|
-
"
|
|
1474
|
+
"title": "Complete",
|
|
1475
|
+
"id": "3"
|
|
1474
1476
|
}
|
|
1475
|
-
]
|
|
1477
|
+
],
|
|
1478
|
+
"currentStep": "@entity.currentStep",
|
|
1479
|
+
"type": "wizard-progress"
|
|
1476
1480
|
},
|
|
1477
1481
|
{
|
|
1478
|
-
"type": "stack",
|
|
1479
1482
|
"direction": "horizontal",
|
|
1480
|
-
"gap": "sm",
|
|
1481
1483
|
"align": "center",
|
|
1484
|
+
"type": "stack",
|
|
1485
|
+
"gap": "sm",
|
|
1482
1486
|
"children": [
|
|
1483
1487
|
{
|
|
1484
|
-
"
|
|
1488
|
+
"value": "@entity.currentStep",
|
|
1485
1489
|
"label": "Current Step",
|
|
1486
|
-
"
|
|
1490
|
+
"type": "stat-display"
|
|
1487
1491
|
},
|
|
1488
1492
|
{
|
|
1489
1493
|
"type": "stat-display",
|
|
@@ -1493,85 +1497,85 @@
|
|
|
1493
1497
|
]
|
|
1494
1498
|
},
|
|
1495
1499
|
{
|
|
1496
|
-
"type": "stack",
|
|
1497
1500
|
"direction": "horizontal",
|
|
1498
|
-
"gap": "sm",
|
|
1499
1501
|
"children": [
|
|
1500
1502
|
{
|
|
1501
|
-
"
|
|
1503
|
+
"variant": "primary",
|
|
1502
1504
|
"label": "Advance",
|
|
1503
1505
|
"event": "ADVANCE",
|
|
1504
|
-
"
|
|
1506
|
+
"type": "button",
|
|
1505
1507
|
"icon": "chevron-right"
|
|
1506
1508
|
},
|
|
1507
1509
|
{
|
|
1508
|
-
"
|
|
1510
|
+
"icon": "rotate-ccw",
|
|
1509
1511
|
"label": "Reset",
|
|
1512
|
+
"type": "button",
|
|
1510
1513
|
"event": "RESET",
|
|
1511
|
-
"variant": "ghost"
|
|
1512
|
-
"icon": "rotate-ccw"
|
|
1514
|
+
"variant": "ghost"
|
|
1513
1515
|
}
|
|
1514
|
-
]
|
|
1516
|
+
],
|
|
1517
|
+
"type": "stack",
|
|
1518
|
+
"gap": "sm"
|
|
1515
1519
|
}
|
|
1516
|
-
]
|
|
1520
|
+
],
|
|
1521
|
+
"type": "stack",
|
|
1522
|
+
"gap": "lg",
|
|
1523
|
+
"direction": "vertical"
|
|
1517
1524
|
}
|
|
1518
1525
|
]
|
|
1519
1526
|
],
|
|
1520
|
-
"
|
|
1527
|
+
"START": [
|
|
1528
|
+
[
|
|
1529
|
+
"set",
|
|
1530
|
+
"@entity.status",
|
|
1531
|
+
"in_progress"
|
|
1532
|
+
],
|
|
1521
1533
|
[
|
|
1522
1534
|
"set",
|
|
1523
1535
|
"@entity.currentStep",
|
|
1524
|
-
|
|
1525
|
-
"+",
|
|
1526
|
-
"@entity.currentStep",
|
|
1527
|
-
1
|
|
1528
|
-
]
|
|
1536
|
+
0.0
|
|
1529
1537
|
],
|
|
1530
1538
|
[
|
|
1531
1539
|
"render-ui",
|
|
1532
1540
|
"main",
|
|
1533
1541
|
{
|
|
1534
|
-
"type": "stack",
|
|
1535
|
-
"direction": "vertical",
|
|
1536
1542
|
"gap": "lg",
|
|
1537
1543
|
"children": [
|
|
1538
1544
|
{
|
|
1539
|
-
"type": "stack",
|
|
1540
|
-
"direction": "horizontal",
|
|
1541
|
-
"gap": "sm",
|
|
1542
|
-
"align": "center",
|
|
1543
1545
|
"children": [
|
|
1544
1546
|
{
|
|
1545
|
-
"
|
|
1547
|
+
"size": "lg",
|
|
1546
1548
|
"name": "loader",
|
|
1547
|
-
"
|
|
1549
|
+
"type": "icon"
|
|
1548
1550
|
},
|
|
1549
1551
|
{
|
|
1550
1552
|
"type": "typography",
|
|
1551
|
-
"
|
|
1552
|
-
"
|
|
1553
|
+
"variant": "h2",
|
|
1554
|
+
"content": "AgentToolLoop"
|
|
1553
1555
|
},
|
|
1554
1556
|
{
|
|
1555
|
-
"type": "badge",
|
|
1556
1557
|
"label": "In Progress",
|
|
1557
|
-
"variant": "warning"
|
|
1558
|
+
"variant": "warning",
|
|
1559
|
+
"type": "badge"
|
|
1558
1560
|
}
|
|
1559
|
-
]
|
|
1561
|
+
],
|
|
1562
|
+
"gap": "sm",
|
|
1563
|
+
"align": "center",
|
|
1564
|
+
"type": "stack",
|
|
1565
|
+
"direction": "horizontal"
|
|
1560
1566
|
},
|
|
1561
1567
|
{
|
|
1562
1568
|
"type": "divider"
|
|
1563
1569
|
},
|
|
1564
1570
|
{
|
|
1565
|
-
"type": "wizard-progress",
|
|
1566
|
-
"currentStep": "@entity.currentStep",
|
|
1567
1571
|
"steps": [
|
|
1568
1572
|
{
|
|
1569
|
-
"
|
|
1570
|
-
"
|
|
1573
|
+
"title": "Plan",
|
|
1574
|
+
"id": "0"
|
|
1571
1575
|
},
|
|
1572
1576
|
{
|
|
1573
|
-
"
|
|
1574
|
-
"
|
|
1577
|
+
"title": "Execute",
|
|
1578
|
+
"id": "1"
|
|
1575
1579
|
},
|
|
1576
1580
|
{
|
|
1577
1581
|
"id": "2",
|
|
@@ -1581,12 +1585,13 @@
|
|
|
1581
1585
|
"id": "3",
|
|
1582
1586
|
"title": "Complete"
|
|
1583
1587
|
}
|
|
1584
|
-
]
|
|
1588
|
+
],
|
|
1589
|
+
"type": "wizard-progress",
|
|
1590
|
+
"currentStep": "@entity.currentStep"
|
|
1585
1591
|
},
|
|
1586
1592
|
{
|
|
1587
1593
|
"type": "stack",
|
|
1588
1594
|
"direction": "horizontal",
|
|
1589
|
-
"gap": "sm",
|
|
1590
1595
|
"align": "center",
|
|
1591
1596
|
"children": [
|
|
1592
1597
|
{
|
|
@@ -1599,7 +1604,8 @@
|
|
|
1599
1604
|
"label": "Total Steps",
|
|
1600
1605
|
"value": "@entity.totalSteps"
|
|
1601
1606
|
}
|
|
1602
|
-
]
|
|
1607
|
+
],
|
|
1608
|
+
"gap": "sm"
|
|
1603
1609
|
},
|
|
1604
1610
|
{
|
|
1605
1611
|
"type": "stack",
|
|
@@ -1608,21 +1614,23 @@
|
|
|
1608
1614
|
"children": [
|
|
1609
1615
|
{
|
|
1610
1616
|
"type": "button",
|
|
1611
|
-
"label": "Advance",
|
|
1612
1617
|
"event": "ADVANCE",
|
|
1613
|
-
"
|
|
1614
|
-
"icon": "chevron-right"
|
|
1618
|
+
"label": "Advance",
|
|
1619
|
+
"icon": "chevron-right",
|
|
1620
|
+
"variant": "primary"
|
|
1615
1621
|
},
|
|
1616
1622
|
{
|
|
1617
1623
|
"type": "button",
|
|
1624
|
+
"icon": "rotate-ccw",
|
|
1618
1625
|
"label": "Reset",
|
|
1619
|
-
"event": "RESET",
|
|
1620
1626
|
"variant": "ghost",
|
|
1621
|
-
"
|
|
1627
|
+
"event": "RESET"
|
|
1622
1628
|
}
|
|
1623
1629
|
]
|
|
1624
1630
|
}
|
|
1625
|
-
]
|
|
1631
|
+
],
|
|
1632
|
+
"direction": "vertical",
|
|
1633
|
+
"type": "stack"
|
|
1626
1634
|
}
|
|
1627
1635
|
]
|
|
1628
1636
|
],
|
|
@@ -1643,45 +1651,42 @@
|
|
|
1643
1651
|
{
|
|
1644
1652
|
"type": "stack",
|
|
1645
1653
|
"direction": "vertical",
|
|
1646
|
-
"gap": "lg",
|
|
1647
1654
|
"children": [
|
|
1648
1655
|
{
|
|
1649
|
-
"type": "stack",
|
|
1650
|
-
"direction": "horizontal",
|
|
1651
|
-
"gap": "sm",
|
|
1652
1656
|
"align": "center",
|
|
1653
1657
|
"children": [
|
|
1654
1658
|
{
|
|
1659
|
+
"size": "lg",
|
|
1655
1660
|
"type": "icon",
|
|
1656
|
-
"name": "check-circle"
|
|
1657
|
-
"size": "lg"
|
|
1661
|
+
"name": "check-circle"
|
|
1658
1662
|
},
|
|
1659
1663
|
{
|
|
1664
|
+
"variant": "h2",
|
|
1660
1665
|
"type": "typography",
|
|
1661
|
-
"content": "AgentToolLoop"
|
|
1662
|
-
"variant": "h2"
|
|
1666
|
+
"content": "AgentToolLoop"
|
|
1663
1667
|
},
|
|
1664
1668
|
{
|
|
1665
|
-
"
|
|
1669
|
+
"variant": "success",
|
|
1666
1670
|
"label": "Completed",
|
|
1667
|
-
"
|
|
1671
|
+
"type": "badge"
|
|
1668
1672
|
}
|
|
1669
|
-
]
|
|
1673
|
+
],
|
|
1674
|
+
"direction": "horizontal",
|
|
1675
|
+
"gap": "sm",
|
|
1676
|
+
"type": "stack"
|
|
1670
1677
|
},
|
|
1671
1678
|
{
|
|
1672
1679
|
"type": "divider"
|
|
1673
1680
|
},
|
|
1674
1681
|
{
|
|
1675
|
-
"type": "wizard-progress",
|
|
1676
|
-
"currentStep": "@entity.totalSteps",
|
|
1677
1682
|
"steps": [
|
|
1678
1683
|
{
|
|
1679
1684
|
"id": "0",
|
|
1680
1685
|
"title": "Plan"
|
|
1681
1686
|
},
|
|
1682
1687
|
{
|
|
1683
|
-
"
|
|
1684
|
-
"
|
|
1688
|
+
"title": "Execute",
|
|
1689
|
+
"id": "1"
|
|
1685
1690
|
},
|
|
1686
1691
|
{
|
|
1687
1692
|
"id": "2",
|
|
@@ -1691,21 +1696,24 @@
|
|
|
1691
1696
|
"id": "3",
|
|
1692
1697
|
"title": "Complete"
|
|
1693
1698
|
}
|
|
1694
|
-
]
|
|
1699
|
+
],
|
|
1700
|
+
"type": "wizard-progress",
|
|
1701
|
+
"currentStep": "@entity.totalSteps"
|
|
1695
1702
|
},
|
|
1696
1703
|
{
|
|
1704
|
+
"message": "All steps completed successfully.",
|
|
1697
1705
|
"type": "alert",
|
|
1698
|
-
"variant": "success"
|
|
1699
|
-
"message": "All steps completed successfully."
|
|
1706
|
+
"variant": "success"
|
|
1700
1707
|
},
|
|
1701
1708
|
{
|
|
1702
|
-
"
|
|
1709
|
+
"icon": "rotate-ccw",
|
|
1703
1710
|
"label": "Reset",
|
|
1711
|
+
"type": "button",
|
|
1704
1712
|
"event": "RESET",
|
|
1705
|
-
"variant": "ghost"
|
|
1706
|
-
"icon": "rotate-ccw"
|
|
1713
|
+
"variant": "ghost"
|
|
1707
1714
|
}
|
|
1708
|
-
]
|
|
1715
|
+
],
|
|
1716
|
+
"gap": "lg"
|
|
1709
1717
|
}
|
|
1710
1718
|
]
|
|
1711
1719
|
],
|
|
@@ -1719,32 +1727,30 @@
|
|
|
1719
1727
|
"render-ui",
|
|
1720
1728
|
"main",
|
|
1721
1729
|
{
|
|
1722
|
-
"type": "stack",
|
|
1723
1730
|
"direction": "vertical",
|
|
1724
|
-
"gap": "lg",
|
|
1725
1731
|
"children": [
|
|
1726
1732
|
{
|
|
1727
1733
|
"type": "stack",
|
|
1728
|
-
"direction": "horizontal",
|
|
1729
|
-
"gap": "sm",
|
|
1730
1734
|
"align": "center",
|
|
1735
|
+
"direction": "horizontal",
|
|
1731
1736
|
"children": [
|
|
1732
1737
|
{
|
|
1733
|
-
"
|
|
1738
|
+
"size": "lg",
|
|
1734
1739
|
"name": "x-circle",
|
|
1735
|
-
"
|
|
1740
|
+
"type": "icon"
|
|
1736
1741
|
},
|
|
1737
1742
|
{
|
|
1738
|
-
"type": "typography",
|
|
1739
1743
|
"content": "AgentToolLoop",
|
|
1740
|
-
"variant": "h2"
|
|
1744
|
+
"variant": "h2",
|
|
1745
|
+
"type": "typography"
|
|
1741
1746
|
},
|
|
1742
1747
|
{
|
|
1743
1748
|
"type": "badge",
|
|
1744
|
-
"
|
|
1745
|
-
"
|
|
1749
|
+
"variant": "destructive",
|
|
1750
|
+
"label": "Failed"
|
|
1746
1751
|
}
|
|
1747
|
-
]
|
|
1752
|
+
],
|
|
1753
|
+
"gap": "sm"
|
|
1748
1754
|
},
|
|
1749
1755
|
{
|
|
1750
1756
|
"type": "divider"
|
|
@@ -1758,8 +1764,8 @@
|
|
|
1758
1764
|
"title": "Plan"
|
|
1759
1765
|
},
|
|
1760
1766
|
{
|
|
1761
|
-
"
|
|
1762
|
-
"
|
|
1767
|
+
"title": "Execute",
|
|
1768
|
+
"id": "1"
|
|
1763
1769
|
},
|
|
1764
1770
|
{
|
|
1765
1771
|
"id": "2",
|
|
@@ -1772,30 +1778,32 @@
|
|
|
1772
1778
|
]
|
|
1773
1779
|
},
|
|
1774
1780
|
{
|
|
1775
|
-
"type": "alert",
|
|
1776
1781
|
"variant": "error",
|
|
1782
|
+
"type": "alert",
|
|
1777
1783
|
"message": "Pipeline failed at the current step."
|
|
1778
1784
|
},
|
|
1779
1785
|
{
|
|
1780
|
-
"type": "stack",
|
|
1781
1786
|
"direction": "horizontal",
|
|
1782
|
-
"
|
|
1787
|
+
"type": "stack",
|
|
1783
1788
|
"children": [
|
|
1784
1789
|
{
|
|
1785
|
-
"type": "stat-display",
|
|
1786
1790
|
"label": "Failed At Step",
|
|
1791
|
+
"type": "stat-display",
|
|
1787
1792
|
"value": "@entity.currentStep"
|
|
1788
1793
|
}
|
|
1789
|
-
]
|
|
1794
|
+
],
|
|
1795
|
+
"gap": "sm"
|
|
1790
1796
|
},
|
|
1791
1797
|
{
|
|
1792
|
-
"type": "button",
|
|
1793
|
-
"label": "Reset",
|
|
1794
1798
|
"event": "RESET",
|
|
1795
1799
|
"variant": "ghost",
|
|
1796
|
-
"
|
|
1800
|
+
"type": "button",
|
|
1801
|
+
"icon": "rotate-ccw",
|
|
1802
|
+
"label": "Reset"
|
|
1797
1803
|
}
|
|
1798
|
-
]
|
|
1804
|
+
],
|
|
1805
|
+
"gap": "lg",
|
|
1806
|
+
"type": "stack"
|
|
1799
1807
|
}
|
|
1800
1808
|
]
|
|
1801
1809
|
],
|
|
@@ -1808,72 +1816,72 @@
|
|
|
1808
1816
|
[
|
|
1809
1817
|
"set",
|
|
1810
1818
|
"@entity.currentStep",
|
|
1811
|
-
0
|
|
1819
|
+
0.0
|
|
1812
1820
|
],
|
|
1813
1821
|
[
|
|
1814
1822
|
"render-ui",
|
|
1815
1823
|
"main",
|
|
1816
1824
|
{
|
|
1817
1825
|
"type": "stack",
|
|
1818
|
-
"direction": "vertical",
|
|
1819
|
-
"gap": "lg",
|
|
1820
1826
|
"children": [
|
|
1821
1827
|
{
|
|
1822
|
-
"type": "stack",
|
|
1823
1828
|
"direction": "horizontal",
|
|
1824
|
-
"gap": "sm",
|
|
1825
1829
|
"align": "center",
|
|
1826
1830
|
"children": [
|
|
1827
1831
|
{
|
|
1828
1832
|
"type": "icon",
|
|
1829
|
-
"
|
|
1830
|
-
"
|
|
1833
|
+
"size": "lg",
|
|
1834
|
+
"name": "list-ordered"
|
|
1831
1835
|
},
|
|
1832
1836
|
{
|
|
1837
|
+
"variant": "h2",
|
|
1833
1838
|
"type": "typography",
|
|
1834
|
-
"content": "AgentToolLoop"
|
|
1835
|
-
"variant": "h2"
|
|
1839
|
+
"content": "AgentToolLoop"
|
|
1836
1840
|
},
|
|
1837
1841
|
{
|
|
1838
1842
|
"type": "badge",
|
|
1839
1843
|
"label": "Idle",
|
|
1840
1844
|
"variant": "default"
|
|
1841
1845
|
}
|
|
1842
|
-
]
|
|
1846
|
+
],
|
|
1847
|
+
"gap": "sm",
|
|
1848
|
+
"type": "stack"
|
|
1843
1849
|
},
|
|
1844
1850
|
{
|
|
1845
1851
|
"type": "divider"
|
|
1846
1852
|
},
|
|
1847
1853
|
{
|
|
1848
|
-
"type": "wizard-progress",
|
|
1849
|
-
"currentStep": "@entity.currentStep",
|
|
1850
1854
|
"steps": [
|
|
1851
1855
|
{
|
|
1852
1856
|
"id": "0",
|
|
1853
1857
|
"title": "Plan"
|
|
1854
1858
|
},
|
|
1855
1859
|
{
|
|
1856
|
-
"
|
|
1857
|
-
"
|
|
1860
|
+
"title": "Execute",
|
|
1861
|
+
"id": "1"
|
|
1858
1862
|
},
|
|
1859
1863
|
{
|
|
1860
|
-
"
|
|
1861
|
-
"
|
|
1864
|
+
"title": "Check",
|
|
1865
|
+
"id": "2"
|
|
1862
1866
|
},
|
|
1863
1867
|
{
|
|
1864
1868
|
"id": "3",
|
|
1865
1869
|
"title": "Complete"
|
|
1866
1870
|
}
|
|
1867
|
-
]
|
|
1871
|
+
],
|
|
1872
|
+
"type": "wizard-progress",
|
|
1873
|
+
"currentStep": "@entity.currentStep"
|
|
1868
1874
|
},
|
|
1869
1875
|
{
|
|
1870
|
-
"type": "button",
|
|
1871
1876
|
"label": "Start",
|
|
1872
|
-
"event": "START",
|
|
1873
1877
|
"variant": "primary",
|
|
1878
|
+
"event": "START",
|
|
1879
|
+
"type": "button",
|
|
1874
1880
|
"icon": "play"
|
|
1875
1881
|
}
|
|
1876
|
-
]
|
|
1882
|
+
],
|
|
1883
|
+
"gap": "lg",
|
|
1884
|
+
"direction": "vertical"
|
|
1877
1885
|
}
|
|
1878
1886
|
]
|
|
1879
1887
|
]
|
|
@@ -1883,10 +1891,24 @@
|
|
|
1883
1891
|
"ref": "AgentCompletion.traits.AgentCompletionModal",
|
|
1884
1892
|
"name": "ToolLoopCompletionFlow",
|
|
1885
1893
|
"linkedEntity": "AgentToolLoop",
|
|
1886
|
-
"listens": [],
|
|
1887
1894
|
"emitsScope": "internal",
|
|
1888
1895
|
"effects": {
|
|
1889
|
-
"
|
|
1896
|
+
"SAVE": [
|
|
1897
|
+
[
|
|
1898
|
+
"persist",
|
|
1899
|
+
"create",
|
|
1900
|
+
"AgentToolLoop",
|
|
1901
|
+
"@payload.data"
|
|
1902
|
+
],
|
|
1903
|
+
[
|
|
1904
|
+
"render-ui",
|
|
1905
|
+
"modal",
|
|
1906
|
+
null
|
|
1907
|
+
],
|
|
1908
|
+
[
|
|
1909
|
+
"emit",
|
|
1910
|
+
"GENERATED"
|
|
1911
|
+
],
|
|
1890
1912
|
[
|
|
1891
1913
|
"ref",
|
|
1892
1914
|
"AgentToolLoop"
|
|
@@ -1895,50 +1917,50 @@
|
|
|
1895
1917
|
"render-ui",
|
|
1896
1918
|
"main",
|
|
1897
1919
|
{
|
|
1920
|
+
"gap": "lg",
|
|
1898
1921
|
"type": "stack",
|
|
1899
1922
|
"direction": "vertical",
|
|
1900
|
-
"gap": "lg",
|
|
1901
1923
|
"children": [
|
|
1902
1924
|
{
|
|
1903
1925
|
"type": "stack",
|
|
1904
|
-
"direction": "horizontal",
|
|
1905
|
-
"gap": "md",
|
|
1906
|
-
"justify": "space-between",
|
|
1907
1926
|
"children": [
|
|
1908
1927
|
{
|
|
1909
|
-
"type": "stack",
|
|
1910
|
-
"direction": "horizontal",
|
|
1911
|
-
"gap": "md",
|
|
1912
1928
|
"children": [
|
|
1913
1929
|
{
|
|
1930
|
+
"size": "lg",
|
|
1914
1931
|
"type": "icon",
|
|
1915
|
-
"name": "sparkles"
|
|
1916
|
-
"size": "lg"
|
|
1932
|
+
"name": "sparkles"
|
|
1917
1933
|
},
|
|
1918
1934
|
{
|
|
1919
1935
|
"type": "typography",
|
|
1920
|
-
"
|
|
1921
|
-
"
|
|
1936
|
+
"variant": "h2",
|
|
1937
|
+
"content": "AgentToolLoop"
|
|
1922
1938
|
}
|
|
1923
|
-
]
|
|
1939
|
+
],
|
|
1940
|
+
"type": "stack",
|
|
1941
|
+
"gap": "md",
|
|
1942
|
+
"direction": "horizontal"
|
|
1924
1943
|
},
|
|
1925
1944
|
{
|
|
1926
|
-
"type": "button",
|
|
1927
|
-
"label": "Open",
|
|
1928
1945
|
"event": "GENERATE",
|
|
1946
|
+
"type": "button",
|
|
1929
1947
|
"variant": "primary",
|
|
1930
|
-
"icon": "sparkles"
|
|
1948
|
+
"icon": "sparkles",
|
|
1949
|
+
"label": "Open"
|
|
1931
1950
|
}
|
|
1932
|
-
]
|
|
1951
|
+
],
|
|
1952
|
+
"justify": "space-between",
|
|
1953
|
+
"direction": "horizontal",
|
|
1954
|
+
"gap": "md"
|
|
1933
1955
|
},
|
|
1934
1956
|
{
|
|
1935
1957
|
"type": "divider"
|
|
1936
1958
|
},
|
|
1937
1959
|
{
|
|
1938
1960
|
"type": "empty-state",
|
|
1961
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
1939
1962
|
"icon": "sparkles",
|
|
1940
|
-
"title": "Nothing open"
|
|
1941
|
-
"description": "Click Open to view details in a modal overlay."
|
|
1963
|
+
"title": "Nothing open"
|
|
1942
1964
|
}
|
|
1943
1965
|
]
|
|
1944
1966
|
}
|
|
@@ -1950,33 +1972,29 @@
|
|
|
1950
1972
|
"modal",
|
|
1951
1973
|
{
|
|
1952
1974
|
"type": "stack",
|
|
1953
|
-
"direction": "vertical",
|
|
1954
1975
|
"gap": "md",
|
|
1955
1976
|
"children": [
|
|
1956
1977
|
{
|
|
1957
1978
|
"type": "stack",
|
|
1958
1979
|
"direction": "horizontal",
|
|
1959
|
-
"gap": "sm",
|
|
1960
1980
|
"children": [
|
|
1961
1981
|
{
|
|
1962
|
-
"type": "icon",
|
|
1963
1982
|
"name": "sparkles",
|
|
1983
|
+
"type": "icon",
|
|
1964
1984
|
"size": "md"
|
|
1965
1985
|
},
|
|
1966
1986
|
{
|
|
1987
|
+
"variant": "h3",
|
|
1967
1988
|
"type": "typography",
|
|
1968
|
-
"content": "AgentToolLoop"
|
|
1969
|
-
"variant": "h3"
|
|
1989
|
+
"content": "AgentToolLoop"
|
|
1970
1990
|
}
|
|
1971
|
-
]
|
|
1991
|
+
],
|
|
1992
|
+
"gap": "sm"
|
|
1972
1993
|
},
|
|
1973
1994
|
{
|
|
1974
1995
|
"type": "divider"
|
|
1975
1996
|
},
|
|
1976
1997
|
{
|
|
1977
|
-
"type": "stack",
|
|
1978
|
-
"direction": "horizontal",
|
|
1979
|
-
"gap": "sm",
|
|
1980
1998
|
"children": [
|
|
1981
1999
|
{
|
|
1982
2000
|
"type": "badge",
|
|
@@ -1986,33 +2004,27 @@
|
|
|
1986
2004
|
"type": "badge",
|
|
1987
2005
|
"label": "@entity.model"
|
|
1988
2006
|
}
|
|
1989
|
-
]
|
|
2007
|
+
],
|
|
2008
|
+
"gap": "sm",
|
|
2009
|
+
"type": "stack",
|
|
2010
|
+
"direction": "horizontal"
|
|
1990
2011
|
},
|
|
1991
2012
|
{
|
|
1992
2013
|
"type": "form-section",
|
|
1993
|
-
"entity": "AgentToolLoop",
|
|
1994
|
-
"mode": "create",
|
|
1995
2014
|
"submitEvent": "SAVE",
|
|
1996
|
-
"
|
|
2015
|
+
"entity": "AgentToolLoop",
|
|
1997
2016
|
"fields": [
|
|
1998
2017
|
"prompt"
|
|
1999
|
-
]
|
|
2018
|
+
],
|
|
2019
|
+
"mode": "create",
|
|
2020
|
+
"cancelEvent": "CLOSE"
|
|
2000
2021
|
}
|
|
2001
|
-
]
|
|
2022
|
+
],
|
|
2023
|
+
"direction": "vertical"
|
|
2002
2024
|
}
|
|
2003
2025
|
]
|
|
2004
2026
|
],
|
|
2005
|
-
"
|
|
2006
|
-
[
|
|
2007
|
-
"render-ui",
|
|
2008
|
-
"modal",
|
|
2009
|
-
null
|
|
2010
|
-
],
|
|
2011
|
-
[
|
|
2012
|
-
"notify",
|
|
2013
|
-
"Cancelled",
|
|
2014
|
-
"info"
|
|
2015
|
-
],
|
|
2027
|
+
"INIT": [
|
|
2016
2028
|
[
|
|
2017
2029
|
"ref",
|
|
2018
2030
|
"AgentToolLoop"
|
|
@@ -2021,70 +2033,65 @@
|
|
|
2021
2033
|
"render-ui",
|
|
2022
2034
|
"main",
|
|
2023
2035
|
{
|
|
2024
|
-
"type": "stack",
|
|
2025
|
-
"direction": "vertical",
|
|
2026
|
-
"gap": "lg",
|
|
2027
2036
|
"children": [
|
|
2028
2037
|
{
|
|
2029
2038
|
"type": "stack",
|
|
2030
2039
|
"direction": "horizontal",
|
|
2031
|
-
"gap": "md",
|
|
2032
2040
|
"justify": "space-between",
|
|
2033
2041
|
"children": [
|
|
2034
2042
|
{
|
|
2035
|
-
"type": "stack",
|
|
2036
2043
|
"direction": "horizontal",
|
|
2037
|
-
"gap": "md",
|
|
2038
2044
|
"children": [
|
|
2039
2045
|
{
|
|
2040
|
-
"type": "icon",
|
|
2041
2046
|
"name": "sparkles",
|
|
2047
|
+
"type": "icon",
|
|
2042
2048
|
"size": "lg"
|
|
2043
2049
|
},
|
|
2044
2050
|
{
|
|
2045
2051
|
"type": "typography",
|
|
2046
|
-
"
|
|
2047
|
-
"
|
|
2052
|
+
"variant": "h2",
|
|
2053
|
+
"content": "AgentToolLoop"
|
|
2048
2054
|
}
|
|
2049
|
-
]
|
|
2055
|
+
],
|
|
2056
|
+
"type": "stack",
|
|
2057
|
+
"gap": "md"
|
|
2050
2058
|
},
|
|
2051
2059
|
{
|
|
2052
|
-
"
|
|
2060
|
+
"icon": "sparkles",
|
|
2053
2061
|
"label": "Open",
|
|
2054
2062
|
"event": "GENERATE",
|
|
2055
|
-
"
|
|
2056
|
-
"
|
|
2063
|
+
"type": "button",
|
|
2064
|
+
"variant": "primary"
|
|
2057
2065
|
}
|
|
2058
|
-
]
|
|
2066
|
+
],
|
|
2067
|
+
"gap": "md"
|
|
2059
2068
|
},
|
|
2060
2069
|
{
|
|
2061
2070
|
"type": "divider"
|
|
2062
2071
|
},
|
|
2063
2072
|
{
|
|
2073
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
2064
2074
|
"type": "empty-state",
|
|
2065
|
-
"icon": "sparkles",
|
|
2066
2075
|
"title": "Nothing open",
|
|
2067
|
-
"
|
|
2076
|
+
"icon": "sparkles"
|
|
2068
2077
|
}
|
|
2069
|
-
]
|
|
2078
|
+
],
|
|
2079
|
+
"type": "stack",
|
|
2080
|
+
"gap": "lg",
|
|
2081
|
+
"direction": "vertical"
|
|
2070
2082
|
}
|
|
2071
2083
|
]
|
|
2072
2084
|
],
|
|
2073
|
-
"
|
|
2074
|
-
[
|
|
2075
|
-
"persist",
|
|
2076
|
-
"create",
|
|
2077
|
-
"AgentToolLoop",
|
|
2078
|
-
"@payload.data"
|
|
2079
|
-
],
|
|
2085
|
+
"CLOSE": [
|
|
2080
2086
|
[
|
|
2081
2087
|
"render-ui",
|
|
2082
2088
|
"modal",
|
|
2083
2089
|
null
|
|
2084
2090
|
],
|
|
2085
2091
|
[
|
|
2086
|
-
"
|
|
2087
|
-
"
|
|
2092
|
+
"notify",
|
|
2093
|
+
"Cancelled",
|
|
2094
|
+
"info"
|
|
2088
2095
|
],
|
|
2089
2096
|
[
|
|
2090
2097
|
"ref",
|
|
@@ -2094,52 +2101,52 @@
|
|
|
2094
2101
|
"render-ui",
|
|
2095
2102
|
"main",
|
|
2096
2103
|
{
|
|
2097
|
-
"type": "stack",
|
|
2098
|
-
"direction": "vertical",
|
|
2099
|
-
"gap": "lg",
|
|
2100
2104
|
"children": [
|
|
2101
2105
|
{
|
|
2102
2106
|
"type": "stack",
|
|
2103
|
-
"direction": "horizontal",
|
|
2104
2107
|
"gap": "md",
|
|
2105
2108
|
"justify": "space-between",
|
|
2106
2109
|
"children": [
|
|
2107
2110
|
{
|
|
2108
|
-
"type": "stack",
|
|
2109
2111
|
"direction": "horizontal",
|
|
2112
|
+
"type": "stack",
|
|
2110
2113
|
"gap": "md",
|
|
2111
2114
|
"children": [
|
|
2112
2115
|
{
|
|
2113
2116
|
"type": "icon",
|
|
2114
|
-
"
|
|
2115
|
-
"
|
|
2117
|
+
"size": "lg",
|
|
2118
|
+
"name": "sparkles"
|
|
2116
2119
|
},
|
|
2117
2120
|
{
|
|
2118
2121
|
"type": "typography",
|
|
2119
|
-
"
|
|
2120
|
-
"
|
|
2122
|
+
"variant": "h2",
|
|
2123
|
+
"content": "AgentToolLoop"
|
|
2121
2124
|
}
|
|
2122
2125
|
]
|
|
2123
2126
|
},
|
|
2124
2127
|
{
|
|
2125
|
-
"type": "button",
|
|
2126
|
-
"label": "Open",
|
|
2127
|
-
"event": "GENERATE",
|
|
2128
2128
|
"variant": "primary",
|
|
2129
|
-
"
|
|
2129
|
+
"label": "Open",
|
|
2130
|
+
"type": "button",
|
|
2131
|
+
"icon": "sparkles",
|
|
2132
|
+
"event": "GENERATE"
|
|
2130
2133
|
}
|
|
2131
|
-
]
|
|
2134
|
+
],
|
|
2135
|
+
"direction": "horizontal"
|
|
2132
2136
|
},
|
|
2133
2137
|
{
|
|
2134
2138
|
"type": "divider"
|
|
2135
2139
|
},
|
|
2136
2140
|
{
|
|
2141
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
2137
2142
|
"type": "empty-state",
|
|
2138
2143
|
"icon": "sparkles",
|
|
2139
|
-
"title": "Nothing open"
|
|
2140
|
-
"description": "Click Open to view details in a modal overlay."
|
|
2144
|
+
"title": "Nothing open"
|
|
2141
2145
|
}
|
|
2142
|
-
]
|
|
2146
|
+
],
|
|
2147
|
+
"type": "stack",
|
|
2148
|
+
"direction": "vertical",
|
|
2149
|
+
"gap": "lg"
|
|
2143
2150
|
}
|
|
2144
2151
|
]
|
|
2145
2152
|
]
|
|
@@ -2149,10 +2156,24 @@
|
|
|
2149
2156
|
"ref": "AgentToolCall.traits.AgentToolCallModal",
|
|
2150
2157
|
"name": "ToolLoopToolCallFlow",
|
|
2151
2158
|
"linkedEntity": "AgentToolLoop",
|
|
2152
|
-
"listens": [],
|
|
2153
2159
|
"emitsScope": "internal",
|
|
2154
2160
|
"effects": {
|
|
2155
|
-
"
|
|
2161
|
+
"SAVE": [
|
|
2162
|
+
[
|
|
2163
|
+
"persist",
|
|
2164
|
+
"create",
|
|
2165
|
+
"AgentToolLoop",
|
|
2166
|
+
"@payload.data"
|
|
2167
|
+
],
|
|
2168
|
+
[
|
|
2169
|
+
"render-ui",
|
|
2170
|
+
"modal",
|
|
2171
|
+
null
|
|
2172
|
+
],
|
|
2173
|
+
[
|
|
2174
|
+
"emit",
|
|
2175
|
+
"INVOKED"
|
|
2176
|
+
],
|
|
2156
2177
|
[
|
|
2157
2178
|
"ref",
|
|
2158
2179
|
"AgentToolLoop"
|
|
@@ -2161,19 +2182,18 @@
|
|
|
2161
2182
|
"render-ui",
|
|
2162
2183
|
"main",
|
|
2163
2184
|
{
|
|
2164
|
-
"type": "stack",
|
|
2165
2185
|
"direction": "vertical",
|
|
2166
2186
|
"gap": "lg",
|
|
2187
|
+
"type": "stack",
|
|
2167
2188
|
"children": [
|
|
2168
2189
|
{
|
|
2169
2190
|
"type": "stack",
|
|
2170
2191
|
"direction": "horizontal",
|
|
2171
|
-
"gap": "md",
|
|
2172
2192
|
"justify": "space-between",
|
|
2193
|
+
"gap": "md",
|
|
2173
2194
|
"children": [
|
|
2174
2195
|
{
|
|
2175
2196
|
"type": "stack",
|
|
2176
|
-
"direction": "horizontal",
|
|
2177
2197
|
"gap": "md",
|
|
2178
2198
|
"children": [
|
|
2179
2199
|
{
|
|
@@ -2182,15 +2202,16 @@
|
|
|
2182
2202
|
"size": "lg"
|
|
2183
2203
|
},
|
|
2184
2204
|
{
|
|
2185
|
-
"type": "typography",
|
|
2186
2205
|
"content": "Invoke Tool",
|
|
2187
|
-
"variant": "h2"
|
|
2206
|
+
"variant": "h2",
|
|
2207
|
+
"type": "typography"
|
|
2188
2208
|
}
|
|
2189
|
-
]
|
|
2209
|
+
],
|
|
2210
|
+
"direction": "horizontal"
|
|
2190
2211
|
},
|
|
2191
2212
|
{
|
|
2192
|
-
"type": "button",
|
|
2193
2213
|
"label": "Open",
|
|
2214
|
+
"type": "button",
|
|
2194
2215
|
"event": "INVOKE",
|
|
2195
2216
|
"variant": "primary",
|
|
2196
2217
|
"icon": "wrench"
|
|
@@ -2201,142 +2222,127 @@
|
|
|
2201
2222
|
"type": "divider"
|
|
2202
2223
|
},
|
|
2203
2224
|
{
|
|
2204
|
-
"
|
|
2205
|
-
"icon": "wrench",
|
|
2225
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
2206
2226
|
"title": "Nothing open",
|
|
2207
|
-
"
|
|
2227
|
+
"type": "empty-state",
|
|
2228
|
+
"icon": "wrench"
|
|
2208
2229
|
}
|
|
2209
2230
|
]
|
|
2210
2231
|
}
|
|
2211
2232
|
]
|
|
2212
2233
|
],
|
|
2213
|
-
"
|
|
2234
|
+
"INIT": [
|
|
2235
|
+
[
|
|
2236
|
+
"ref",
|
|
2237
|
+
"AgentToolLoop"
|
|
2238
|
+
],
|
|
2214
2239
|
[
|
|
2215
2240
|
"render-ui",
|
|
2216
|
-
"
|
|
2241
|
+
"main",
|
|
2217
2242
|
{
|
|
2218
|
-
"
|
|
2219
|
-
"direction": "vertical",
|
|
2220
|
-
"gap": "md",
|
|
2243
|
+
"gap": "lg",
|
|
2221
2244
|
"children": [
|
|
2222
2245
|
{
|
|
2246
|
+
"gap": "md",
|
|
2223
2247
|
"type": "stack",
|
|
2224
2248
|
"direction": "horizontal",
|
|
2225
|
-
"gap": "sm",
|
|
2226
2249
|
"children": [
|
|
2227
2250
|
{
|
|
2228
|
-
"
|
|
2229
|
-
|
|
2230
|
-
|
|
2251
|
+
"children": [
|
|
2252
|
+
{
|
|
2253
|
+
"size": "lg",
|
|
2254
|
+
"name": "wrench",
|
|
2255
|
+
"type": "icon"
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
"content": "Invoke Tool",
|
|
2259
|
+
"variant": "h2",
|
|
2260
|
+
"type": "typography"
|
|
2261
|
+
}
|
|
2262
|
+
],
|
|
2263
|
+
"gap": "md",
|
|
2264
|
+
"type": "stack",
|
|
2265
|
+
"direction": "horizontal"
|
|
2231
2266
|
},
|
|
2232
2267
|
{
|
|
2233
|
-
"
|
|
2234
|
-
"
|
|
2235
|
-
"
|
|
2268
|
+
"icon": "wrench",
|
|
2269
|
+
"variant": "primary",
|
|
2270
|
+
"label": "Open",
|
|
2271
|
+
"type": "button",
|
|
2272
|
+
"event": "INVOKE"
|
|
2236
2273
|
}
|
|
2237
|
-
]
|
|
2274
|
+
],
|
|
2275
|
+
"justify": "space-between"
|
|
2238
2276
|
},
|
|
2239
2277
|
{
|
|
2240
2278
|
"type": "divider"
|
|
2241
2279
|
},
|
|
2242
2280
|
{
|
|
2243
|
-
"
|
|
2244
|
-
"
|
|
2245
|
-
"
|
|
2246
|
-
"
|
|
2247
|
-
"cancelEvent": "CLOSE",
|
|
2248
|
-
"fields": [
|
|
2249
|
-
"toolName",
|
|
2250
|
-
"args"
|
|
2251
|
-
]
|
|
2281
|
+
"title": "Nothing open",
|
|
2282
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
2283
|
+
"type": "empty-state",
|
|
2284
|
+
"icon": "wrench"
|
|
2252
2285
|
}
|
|
2253
|
-
]
|
|
2286
|
+
],
|
|
2287
|
+
"type": "stack",
|
|
2288
|
+
"direction": "vertical"
|
|
2254
2289
|
}
|
|
2255
2290
|
]
|
|
2256
2291
|
],
|
|
2257
|
-
"
|
|
2292
|
+
"INVOKE": [
|
|
2258
2293
|
[
|
|
2259
2294
|
"render-ui",
|
|
2260
2295
|
"modal",
|
|
2261
|
-
null
|
|
2262
|
-
],
|
|
2263
|
-
[
|
|
2264
|
-
"notify",
|
|
2265
|
-
"Cancelled",
|
|
2266
|
-
"info"
|
|
2267
|
-
],
|
|
2268
|
-
[
|
|
2269
|
-
"ref",
|
|
2270
|
-
"AgentToolLoop"
|
|
2271
|
-
],
|
|
2272
|
-
[
|
|
2273
|
-
"render-ui",
|
|
2274
|
-
"main",
|
|
2275
2296
|
{
|
|
2276
2297
|
"type": "stack",
|
|
2277
|
-
"
|
|
2278
|
-
"gap": "lg",
|
|
2298
|
+
"gap": "md",
|
|
2279
2299
|
"children": [
|
|
2280
2300
|
{
|
|
2281
|
-
"type": "stack",
|
|
2282
2301
|
"direction": "horizontal",
|
|
2283
|
-
"
|
|
2284
|
-
"justify": "space-between",
|
|
2302
|
+
"type": "stack",
|
|
2285
2303
|
"children": [
|
|
2286
2304
|
{
|
|
2287
|
-
"type": "
|
|
2288
|
-
"
|
|
2289
|
-
"
|
|
2290
|
-
"children": [
|
|
2291
|
-
{
|
|
2292
|
-
"type": "icon",
|
|
2293
|
-
"name": "wrench",
|
|
2294
|
-
"size": "lg"
|
|
2295
|
-
},
|
|
2296
|
-
{
|
|
2297
|
-
"type": "typography",
|
|
2298
|
-
"content": "Invoke Tool",
|
|
2299
|
-
"variant": "h2"
|
|
2300
|
-
}
|
|
2301
|
-
]
|
|
2305
|
+
"type": "icon",
|
|
2306
|
+
"size": "md",
|
|
2307
|
+
"name": "wrench"
|
|
2302
2308
|
},
|
|
2303
2309
|
{
|
|
2304
|
-
"type": "
|
|
2305
|
-
"
|
|
2306
|
-
"
|
|
2307
|
-
"variant": "primary",
|
|
2308
|
-
"icon": "wrench"
|
|
2310
|
+
"type": "typography",
|
|
2311
|
+
"variant": "h3",
|
|
2312
|
+
"content": "Invoke Tool"
|
|
2309
2313
|
}
|
|
2310
|
-
]
|
|
2314
|
+
],
|
|
2315
|
+
"gap": "sm"
|
|
2311
2316
|
},
|
|
2312
2317
|
{
|
|
2313
2318
|
"type": "divider"
|
|
2314
2319
|
},
|
|
2315
2320
|
{
|
|
2316
|
-
"type": "
|
|
2317
|
-
"
|
|
2318
|
-
"
|
|
2319
|
-
"
|
|
2321
|
+
"type": "form-section",
|
|
2322
|
+
"mode": "create",
|
|
2323
|
+
"submitEvent": "SAVE",
|
|
2324
|
+
"entity": "AgentToolLoop",
|
|
2325
|
+
"cancelEvent": "CLOSE",
|
|
2326
|
+
"fields": [
|
|
2327
|
+
"toolName",
|
|
2328
|
+
"args"
|
|
2329
|
+
]
|
|
2320
2330
|
}
|
|
2321
|
-
]
|
|
2331
|
+
],
|
|
2332
|
+
"direction": "vertical"
|
|
2322
2333
|
}
|
|
2323
2334
|
]
|
|
2324
2335
|
],
|
|
2325
|
-
"
|
|
2326
|
-
[
|
|
2327
|
-
"persist",
|
|
2328
|
-
"create",
|
|
2329
|
-
"AgentToolLoop",
|
|
2330
|
-
"@payload.data"
|
|
2331
|
-
],
|
|
2336
|
+
"CLOSE": [
|
|
2332
2337
|
[
|
|
2333
2338
|
"render-ui",
|
|
2334
2339
|
"modal",
|
|
2335
2340
|
null
|
|
2336
2341
|
],
|
|
2337
2342
|
[
|
|
2338
|
-
"
|
|
2339
|
-
"
|
|
2343
|
+
"notify",
|
|
2344
|
+
"Cancelled",
|
|
2345
|
+
"info"
|
|
2340
2346
|
],
|
|
2341
2347
|
[
|
|
2342
2348
|
"ref",
|
|
@@ -2347,19 +2353,17 @@
|
|
|
2347
2353
|
"main",
|
|
2348
2354
|
{
|
|
2349
2355
|
"type": "stack",
|
|
2350
|
-
"direction": "vertical",
|
|
2351
|
-
"gap": "lg",
|
|
2352
2356
|
"children": [
|
|
2353
2357
|
{
|
|
2354
|
-
"type": "stack",
|
|
2355
2358
|
"direction": "horizontal",
|
|
2359
|
+
"type": "stack",
|
|
2356
2360
|
"gap": "md",
|
|
2357
2361
|
"justify": "space-between",
|
|
2358
2362
|
"children": [
|
|
2359
2363
|
{
|
|
2360
|
-
"type": "stack",
|
|
2361
|
-
"direction": "horizontal",
|
|
2362
2364
|
"gap": "md",
|
|
2365
|
+
"direction": "horizontal",
|
|
2366
|
+
"type": "stack",
|
|
2363
2367
|
"children": [
|
|
2364
2368
|
{
|
|
2365
2369
|
"type": "icon",
|
|
@@ -2368,15 +2372,15 @@
|
|
|
2368
2372
|
},
|
|
2369
2373
|
{
|
|
2370
2374
|
"type": "typography",
|
|
2371
|
-
"
|
|
2372
|
-
"
|
|
2375
|
+
"variant": "h2",
|
|
2376
|
+
"content": "Invoke Tool"
|
|
2373
2377
|
}
|
|
2374
2378
|
]
|
|
2375
2379
|
},
|
|
2376
2380
|
{
|
|
2377
|
-
"type": "button",
|
|
2378
2381
|
"label": "Open",
|
|
2379
2382
|
"event": "INVOKE",
|
|
2383
|
+
"type": "button",
|
|
2380
2384
|
"variant": "primary",
|
|
2381
2385
|
"icon": "wrench"
|
|
2382
2386
|
}
|
|
@@ -2386,12 +2390,14 @@
|
|
|
2386
2390
|
"type": "divider"
|
|
2387
2391
|
},
|
|
2388
2392
|
{
|
|
2389
|
-
"type": "empty-state",
|
|
2390
2393
|
"icon": "wrench",
|
|
2394
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
2391
2395
|
"title": "Nothing open",
|
|
2392
|
-
"
|
|
2396
|
+
"type": "empty-state"
|
|
2393
2397
|
}
|
|
2394
|
-
]
|
|
2398
|
+
],
|
|
2399
|
+
"direction": "vertical",
|
|
2400
|
+
"gap": "lg"
|
|
2395
2401
|
}
|
|
2396
2402
|
]
|
|
2397
2403
|
]
|
|
@@ -2401,7 +2407,6 @@
|
|
|
2401
2407
|
"ref": "AgentContextWindow.traits.AgentContextWindowGauge",
|
|
2402
2408
|
"name": "ToolLoopContextMonitor",
|
|
2403
2409
|
"linkedEntity": "AgentToolLoop",
|
|
2404
|
-
"listens": [],
|
|
2405
2410
|
"emitsScope": "internal",
|
|
2406
2411
|
"effects": {
|
|
2407
2412
|
"INIT": [
|
|
@@ -2413,66 +2418,66 @@
|
|
|
2413
2418
|
"render-ui",
|
|
2414
2419
|
"main",
|
|
2415
2420
|
{
|
|
2416
|
-
"type": "stack",
|
|
2417
|
-
"direction": "vertical",
|
|
2418
|
-
"gap": "lg",
|
|
2419
2421
|
"children": [
|
|
2420
2422
|
{
|
|
2421
|
-
"type": "stack",
|
|
2422
|
-
"direction": "horizontal",
|
|
2423
2423
|
"gap": "sm",
|
|
2424
|
+
"direction": "horizontal",
|
|
2424
2425
|
"align": "center",
|
|
2425
2426
|
"children": [
|
|
2426
2427
|
{
|
|
2427
|
-
"type": "icon",
|
|
2428
2428
|
"name": "gauge",
|
|
2429
|
-
"size": "lg"
|
|
2429
|
+
"size": "lg",
|
|
2430
|
+
"type": "icon"
|
|
2430
2431
|
},
|
|
2431
2432
|
{
|
|
2432
2433
|
"type": "typography",
|
|
2433
|
-
"
|
|
2434
|
-
"
|
|
2434
|
+
"variant": "h2",
|
|
2435
|
+
"content": "Token Usage"
|
|
2435
2436
|
},
|
|
2436
2437
|
{
|
|
2437
2438
|
"type": "badge",
|
|
2438
|
-
"
|
|
2439
|
-
"
|
|
2439
|
+
"variant": "default",
|
|
2440
|
+
"label": "Normal"
|
|
2440
2441
|
}
|
|
2441
|
-
]
|
|
2442
|
+
],
|
|
2443
|
+
"type": "stack"
|
|
2442
2444
|
},
|
|
2443
2445
|
{
|
|
2444
2446
|
"type": "divider"
|
|
2445
2447
|
},
|
|
2446
2448
|
{
|
|
2449
|
+
"max": "@entity.max",
|
|
2447
2450
|
"type": "progress-bar",
|
|
2448
|
-
"value": "@entity.current"
|
|
2449
|
-
"max": "@entity.max"
|
|
2451
|
+
"value": "@entity.current"
|
|
2450
2452
|
},
|
|
2451
2453
|
{
|
|
2452
|
-
"type": "stack",
|
|
2453
|
-
"direction": "horizontal",
|
|
2454
|
-
"gap": "md",
|
|
2455
2454
|
"children": [
|
|
2456
2455
|
{
|
|
2457
|
-
"type": "stat-display",
|
|
2458
2456
|
"label": "Tokens Used",
|
|
2459
|
-
"value": "@entity.current"
|
|
2457
|
+
"value": "@entity.current",
|
|
2458
|
+
"type": "stat-display"
|
|
2460
2459
|
},
|
|
2461
2460
|
{
|
|
2462
2461
|
"type": "stat-display",
|
|
2463
2462
|
"label": "Max Tokens",
|
|
2464
2463
|
"value": "@entity.max"
|
|
2465
2464
|
}
|
|
2466
|
-
]
|
|
2465
|
+
],
|
|
2466
|
+
"gap": "md",
|
|
2467
|
+
"direction": "horizontal",
|
|
2468
|
+
"type": "stack"
|
|
2467
2469
|
},
|
|
2468
2470
|
{
|
|
2469
|
-
"type": "button",
|
|
2470
|
-
"label": "Reset",
|
|
2471
|
-
"event": "RESET",
|
|
2472
2471
|
"variant": "ghost",
|
|
2473
|
-
"icon": "rotate-ccw"
|
|
2472
|
+
"icon": "rotate-ccw",
|
|
2473
|
+
"event": "RESET",
|
|
2474
|
+
"type": "button",
|
|
2475
|
+
"label": "Reset"
|
|
2474
2476
|
}
|
|
2475
|
-
]
|
|
2477
|
+
],
|
|
2478
|
+
"type": "stack",
|
|
2479
|
+
"direction": "vertical",
|
|
2480
|
+
"gap": "lg"
|
|
2476
2481
|
}
|
|
2477
2482
|
]
|
|
2478
2483
|
]
|