@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-learner",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "std-agent-learner
|
|
4
|
+
"description": "std-agent-learner as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentLearnerOrbital",
|
|
@@ -86,17 +86,17 @@
|
|
|
86
86
|
{
|
|
87
87
|
"name": "consecutiveFailures",
|
|
88
88
|
"type": "number",
|
|
89
|
-
"default": 0
|
|
89
|
+
"default": 0.0
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
"name": "totalSuccesses",
|
|
93
93
|
"type": "number",
|
|
94
|
-
"default": 0
|
|
94
|
+
"default": 0.0
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
"name": "totalFailures",
|
|
98
98
|
"type": "number",
|
|
99
|
-
"default": 0
|
|
99
|
+
"default": 0.0
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
102
|
"name": "error",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
{
|
|
117
117
|
"name": "strength",
|
|
118
118
|
"type": "number",
|
|
119
|
-
"default": 1
|
|
119
|
+
"default": 1.0
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
"name": "pinned",
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
{
|
|
157
157
|
"name": "requestCount",
|
|
158
158
|
"type": "number",
|
|
159
|
-
"default": 0
|
|
159
|
+
"default": 0.0
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
162
|
"name": "action",
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
{
|
|
177
177
|
"name": "duration",
|
|
178
178
|
"type": "number",
|
|
179
|
-
"default": 0
|
|
179
|
+
"default": 0.0
|
|
180
180
|
},
|
|
181
181
|
{
|
|
182
182
|
"name": "icon",
|
|
@@ -188,8 +188,8 @@
|
|
|
188
188
|
"traits": [
|
|
189
189
|
{
|
|
190
190
|
"name": "AgentLearnerLearner",
|
|
191
|
-
"linkedEntity": "AgentLearner",
|
|
192
191
|
"category": "interaction",
|
|
192
|
+
"linkedEntity": "AgentLearner",
|
|
193
193
|
"emits": [
|
|
194
194
|
{
|
|
195
195
|
"event": "TASK_SUCCEEDED",
|
|
@@ -204,32 +204,16 @@
|
|
|
204
204
|
"type": "string"
|
|
205
205
|
}
|
|
206
206
|
]
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
"event": "TASK_FAILED",
|
|
210
|
-
"scope": "external",
|
|
211
|
-
"payload": [
|
|
212
|
-
{
|
|
213
|
-
"name": "outcome",
|
|
214
|
-
"type": "string"
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
"name": "category",
|
|
218
|
-
"type": "string"
|
|
219
|
-
}
|
|
220
|
-
]
|
|
221
207
|
}
|
|
222
208
|
],
|
|
223
209
|
"listens": [
|
|
224
210
|
{
|
|
225
211
|
"event": "TASK_SUCCEEDED",
|
|
226
212
|
"triggers": "TASK_SUCCEEDED",
|
|
227
|
-
"
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
"triggers": "TASK_FAILED",
|
|
232
|
-
"scope": "external"
|
|
213
|
+
"source": {
|
|
214
|
+
"kind": "trait",
|
|
215
|
+
"trait": "AgentLearnerLearner"
|
|
216
|
+
}
|
|
233
217
|
}
|
|
234
218
|
],
|
|
235
219
|
"stateMachine": {
|
|
@@ -256,13 +240,11 @@
|
|
|
256
240
|
"payload": [
|
|
257
241
|
{
|
|
258
242
|
"name": "outcome",
|
|
259
|
-
"type": "string"
|
|
260
|
-
"required": true
|
|
243
|
+
"type": "string"
|
|
261
244
|
},
|
|
262
245
|
{
|
|
263
246
|
"name": "category",
|
|
264
|
-
"type": "string"
|
|
265
|
-
"required": true
|
|
247
|
+
"type": "string"
|
|
266
248
|
}
|
|
267
249
|
]
|
|
268
250
|
},
|
|
@@ -272,19 +254,21 @@
|
|
|
272
254
|
"payload": [
|
|
273
255
|
{
|
|
274
256
|
"name": "outcome",
|
|
275
|
-
"type": "string"
|
|
276
|
-
"required": true
|
|
257
|
+
"type": "string"
|
|
277
258
|
},
|
|
278
259
|
{
|
|
279
260
|
"name": "category",
|
|
280
|
-
"type": "string"
|
|
281
|
-
"required": true
|
|
261
|
+
"type": "string"
|
|
282
262
|
}
|
|
283
263
|
]
|
|
284
264
|
},
|
|
265
|
+
{
|
|
266
|
+
"key": "RESET",
|
|
267
|
+
"name": "Reset"
|
|
268
|
+
},
|
|
285
269
|
{
|
|
286
270
|
"key": "RECORDED",
|
|
287
|
-
"name": "
|
|
271
|
+
"name": "Recorded",
|
|
288
272
|
"payload": [
|
|
289
273
|
{
|
|
290
274
|
"name": "memoryId",
|
|
@@ -294,30 +278,26 @@
|
|
|
294
278
|
]
|
|
295
279
|
},
|
|
296
280
|
{
|
|
297
|
-
"key": "
|
|
298
|
-
"name": "
|
|
281
|
+
"key": "FAILED",
|
|
282
|
+
"name": "Failed",
|
|
299
283
|
"payload": [
|
|
300
284
|
{
|
|
301
|
-
"name": "
|
|
285
|
+
"name": "error",
|
|
302
286
|
"type": "string",
|
|
303
287
|
"required": true
|
|
304
288
|
}
|
|
305
289
|
]
|
|
306
290
|
},
|
|
307
291
|
{
|
|
308
|
-
"key": "
|
|
309
|
-
"name": "
|
|
292
|
+
"key": "ANALYSIS_DONE",
|
|
293
|
+
"name": "Analysis Done",
|
|
310
294
|
"payload": [
|
|
311
295
|
{
|
|
312
|
-
"name": "
|
|
296
|
+
"name": "impact",
|
|
313
297
|
"type": "string",
|
|
314
298
|
"required": true
|
|
315
299
|
}
|
|
316
300
|
]
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
"key": "RESET",
|
|
320
|
-
"name": "Reset View"
|
|
321
301
|
}
|
|
322
302
|
],
|
|
323
303
|
"transitions": [
|
|
@@ -337,51 +317,48 @@
|
|
|
337
317
|
"render-ui",
|
|
338
318
|
"main",
|
|
339
319
|
{
|
|
340
|
-
"type": "stack",
|
|
341
|
-
"direction": "vertical",
|
|
342
|
-
"gap": "lg",
|
|
343
320
|
"children": [
|
|
344
321
|
{
|
|
345
322
|
"type": "stack",
|
|
346
|
-
"direction": "horizontal",
|
|
347
|
-
"gap": "sm",
|
|
348
323
|
"align": "center",
|
|
324
|
+
"gap": "sm",
|
|
349
325
|
"children": [
|
|
350
326
|
{
|
|
327
|
+
"size": "lg",
|
|
351
328
|
"type": "icon",
|
|
352
|
-
"name": "graduation-cap"
|
|
353
|
-
"size": "lg"
|
|
329
|
+
"name": "graduation-cap"
|
|
354
330
|
},
|
|
355
331
|
{
|
|
356
|
-
"
|
|
332
|
+
"variant": "h2",
|
|
357
333
|
"content": "Outcome Learner",
|
|
358
|
-
"
|
|
334
|
+
"type": "typography"
|
|
359
335
|
}
|
|
360
|
-
]
|
|
336
|
+
],
|
|
337
|
+
"direction": "horizontal"
|
|
361
338
|
},
|
|
362
339
|
{
|
|
363
340
|
"type": "divider"
|
|
364
341
|
},
|
|
365
342
|
{
|
|
366
343
|
"type": "simple-grid",
|
|
367
|
-
"cols": 3,
|
|
344
|
+
"cols": 3.0,
|
|
368
345
|
"children": [
|
|
369
346
|
{
|
|
370
|
-
"type": "stat-display",
|
|
371
|
-
"label": "Successes",
|
|
372
347
|
"value": "@entity.totalSuccesses",
|
|
348
|
+
"label": "Successes",
|
|
349
|
+
"type": "stat-display",
|
|
373
350
|
"icon": "check-circle"
|
|
374
351
|
},
|
|
375
352
|
{
|
|
376
353
|
"type": "stat-display",
|
|
377
|
-
"
|
|
354
|
+
"icon": "x-circle",
|
|
378
355
|
"value": "@entity.totalFailures",
|
|
379
|
-
"
|
|
356
|
+
"label": "Failures"
|
|
380
357
|
},
|
|
381
358
|
{
|
|
382
359
|
"type": "stat-display",
|
|
383
|
-
"label": "Current Provider",
|
|
384
360
|
"value": "@entity.provider",
|
|
361
|
+
"label": "Current Provider",
|
|
385
362
|
"icon": "cpu"
|
|
386
363
|
}
|
|
387
364
|
]
|
|
@@ -394,8 +371,8 @@
|
|
|
394
371
|
"children": [
|
|
395
372
|
{
|
|
396
373
|
"type": "stack",
|
|
397
|
-
"direction": "vertical",
|
|
398
374
|
"gap": "md",
|
|
375
|
+
"direction": "vertical",
|
|
399
376
|
"children": [
|
|
400
377
|
{
|
|
401
378
|
"type": "typography",
|
|
@@ -412,22 +389,21 @@
|
|
|
412
389
|
]
|
|
413
390
|
},
|
|
414
391
|
{
|
|
415
|
-
"type": "card",
|
|
416
392
|
"children": [
|
|
417
393
|
{
|
|
418
394
|
"type": "stack",
|
|
419
|
-
"direction": "vertical",
|
|
420
395
|
"gap": "sm",
|
|
396
|
+
"direction": "vertical",
|
|
421
397
|
"children": [
|
|
422
398
|
{
|
|
423
399
|
"type": "typography",
|
|
424
|
-
"
|
|
425
|
-
"
|
|
400
|
+
"variant": "caption",
|
|
401
|
+
"content": "Last Outcome"
|
|
426
402
|
},
|
|
427
403
|
{
|
|
428
404
|
"type": "typography",
|
|
429
|
-
"
|
|
430
|
-
"
|
|
405
|
+
"variant": "body",
|
|
406
|
+
"content": "@entity.outcome"
|
|
431
407
|
},
|
|
432
408
|
{
|
|
433
409
|
"type": "typography",
|
|
@@ -441,9 +417,13 @@
|
|
|
441
417
|
}
|
|
442
418
|
]
|
|
443
419
|
}
|
|
444
|
-
]
|
|
420
|
+
],
|
|
421
|
+
"type": "card"
|
|
445
422
|
}
|
|
446
|
-
]
|
|
423
|
+
],
|
|
424
|
+
"type": "stack",
|
|
425
|
+
"direction": "vertical",
|
|
426
|
+
"gap": "lg"
|
|
447
427
|
}
|
|
448
428
|
]
|
|
449
429
|
]
|
|
@@ -471,7 +451,7 @@
|
|
|
471
451
|
[
|
|
472
452
|
"set",
|
|
473
453
|
"@entity.consecutiveFailures",
|
|
474
|
-
0
|
|
454
|
+
0.0
|
|
475
455
|
],
|
|
476
456
|
[
|
|
477
457
|
"set",
|
|
@@ -479,7 +459,7 @@
|
|
|
479
459
|
[
|
|
480
460
|
"+",
|
|
481
461
|
"@entity.totalSuccesses",
|
|
482
|
-
1
|
|
462
|
+
1.0
|
|
483
463
|
]
|
|
484
464
|
],
|
|
485
465
|
[
|
|
@@ -500,20 +480,16 @@
|
|
|
500
480
|
"render-ui",
|
|
501
481
|
"main",
|
|
502
482
|
{
|
|
503
|
-
"type": "stack",
|
|
504
|
-
"direction": "vertical",
|
|
505
|
-
"gap": "lg",
|
|
506
|
-
"align": "center",
|
|
507
483
|
"children": [
|
|
508
484
|
{
|
|
485
|
+
"size": "lg",
|
|
509
486
|
"type": "icon",
|
|
510
|
-
"name": "save"
|
|
511
|
-
"size": "lg"
|
|
487
|
+
"name": "save"
|
|
512
488
|
},
|
|
513
489
|
{
|
|
490
|
+
"variant": "h3",
|
|
514
491
|
"type": "typography",
|
|
515
|
-
"content": "Recording outcome..."
|
|
516
|
-
"variant": "h3"
|
|
492
|
+
"content": "Recording outcome..."
|
|
517
493
|
},
|
|
518
494
|
{
|
|
519
495
|
"type": "spinner",
|
|
@@ -523,7 +499,11 @@
|
|
|
523
499
|
"type": "badge",
|
|
524
500
|
"label": "@entity.outcome"
|
|
525
501
|
}
|
|
526
|
-
]
|
|
502
|
+
],
|
|
503
|
+
"direction": "vertical",
|
|
504
|
+
"type": "stack",
|
|
505
|
+
"align": "center",
|
|
506
|
+
"gap": "lg"
|
|
527
507
|
}
|
|
528
508
|
]
|
|
529
509
|
]
|
|
@@ -554,7 +534,7 @@
|
|
|
554
534
|
[
|
|
555
535
|
"+",
|
|
556
536
|
"@entity.consecutiveFailures",
|
|
557
|
-
1
|
|
537
|
+
1.0
|
|
558
538
|
]
|
|
559
539
|
],
|
|
560
540
|
[
|
|
@@ -563,7 +543,7 @@
|
|
|
563
543
|
[
|
|
564
544
|
"+",
|
|
565
545
|
"@entity.totalFailures",
|
|
566
|
-
1
|
|
546
|
+
1.0
|
|
567
547
|
]
|
|
568
548
|
],
|
|
569
549
|
[
|
|
@@ -585,29 +565,156 @@
|
|
|
585
565
|
"main",
|
|
586
566
|
{
|
|
587
567
|
"type": "stack",
|
|
588
|
-
"direction": "vertical",
|
|
589
568
|
"gap": "lg",
|
|
590
|
-
"align": "center",
|
|
591
569
|
"children": [
|
|
592
570
|
{
|
|
593
571
|
"type": "icon",
|
|
594
|
-
"
|
|
595
|
-
"
|
|
572
|
+
"size": "lg",
|
|
573
|
+
"name": "save"
|
|
596
574
|
},
|
|
597
575
|
{
|
|
576
|
+
"variant": "h3",
|
|
598
577
|
"type": "typography",
|
|
599
|
-
"content": "Recording outcome..."
|
|
600
|
-
"variant": "h3"
|
|
578
|
+
"content": "Recording outcome..."
|
|
601
579
|
},
|
|
602
580
|
{
|
|
603
581
|
"type": "spinner",
|
|
604
582
|
"size": "lg"
|
|
605
583
|
},
|
|
606
584
|
{
|
|
607
|
-
"
|
|
608
|
-
"
|
|
585
|
+
"label": "@entity.outcome",
|
|
586
|
+
"type": "badge"
|
|
609
587
|
}
|
|
610
|
-
]
|
|
588
|
+
],
|
|
589
|
+
"direction": "vertical",
|
|
590
|
+
"align": "center"
|
|
591
|
+
}
|
|
592
|
+
]
|
|
593
|
+
]
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"from": "idle",
|
|
597
|
+
"to": "idle",
|
|
598
|
+
"event": "RESET",
|
|
599
|
+
"effects": [
|
|
600
|
+
[
|
|
601
|
+
"set",
|
|
602
|
+
"@entity.provider",
|
|
603
|
+
[
|
|
604
|
+
"agent/provider"
|
|
605
|
+
]
|
|
606
|
+
],
|
|
607
|
+
[
|
|
608
|
+
"render-ui",
|
|
609
|
+
"main",
|
|
610
|
+
{
|
|
611
|
+
"gap": "lg",
|
|
612
|
+
"direction": "vertical",
|
|
613
|
+
"children": [
|
|
614
|
+
{
|
|
615
|
+
"align": "center",
|
|
616
|
+
"gap": "sm",
|
|
617
|
+
"type": "stack",
|
|
618
|
+
"direction": "horizontal",
|
|
619
|
+
"children": [
|
|
620
|
+
{
|
|
621
|
+
"name": "graduation-cap",
|
|
622
|
+
"type": "icon",
|
|
623
|
+
"size": "lg"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"type": "typography",
|
|
627
|
+
"content": "Outcome Learner",
|
|
628
|
+
"variant": "h2"
|
|
629
|
+
}
|
|
630
|
+
]
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"type": "divider"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"cols": 3.0,
|
|
637
|
+
"type": "simple-grid",
|
|
638
|
+
"children": [
|
|
639
|
+
{
|
|
640
|
+
"value": "@entity.totalSuccesses",
|
|
641
|
+
"type": "stat-display",
|
|
642
|
+
"label": "Successes",
|
|
643
|
+
"icon": "check-circle"
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"icon": "x-circle",
|
|
647
|
+
"value": "@entity.totalFailures",
|
|
648
|
+
"label": "Failures",
|
|
649
|
+
"type": "stat-display"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"label": "Current Provider",
|
|
653
|
+
"value": "@entity.provider",
|
|
654
|
+
"icon": "cpu",
|
|
655
|
+
"type": "stat-display"
|
|
656
|
+
}
|
|
657
|
+
]
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"type": "divider"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"type": "card",
|
|
664
|
+
"children": [
|
|
665
|
+
{
|
|
666
|
+
"children": [
|
|
667
|
+
{
|
|
668
|
+
"variant": "body",
|
|
669
|
+
"content": "Listening for task outcomes...",
|
|
670
|
+
"type": "typography"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"type": "typography",
|
|
674
|
+
"variant": "caption",
|
|
675
|
+
"content": "This module records TASK_SUCCEEDED and TASK_FAILED events automatically."
|
|
676
|
+
}
|
|
677
|
+
],
|
|
678
|
+
"gap": "md",
|
|
679
|
+
"type": "stack",
|
|
680
|
+
"direction": "vertical"
|
|
681
|
+
}
|
|
682
|
+
]
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"type": "card",
|
|
686
|
+
"children": [
|
|
687
|
+
{
|
|
688
|
+
"type": "stack",
|
|
689
|
+
"direction": "vertical",
|
|
690
|
+
"children": [
|
|
691
|
+
{
|
|
692
|
+
"content": "Last Outcome",
|
|
693
|
+
"variant": "caption",
|
|
694
|
+
"type": "typography"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"variant": "body",
|
|
698
|
+
"type": "typography",
|
|
699
|
+
"content": "@entity.outcome"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"content": "Impact Analysis",
|
|
703
|
+
"type": "typography",
|
|
704
|
+
"variant": "caption"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"content": "@entity.impact",
|
|
708
|
+
"variant": "body",
|
|
709
|
+
"type": "typography"
|
|
710
|
+
}
|
|
711
|
+
],
|
|
712
|
+
"gap": "sm"
|
|
713
|
+
}
|
|
714
|
+
]
|
|
715
|
+
}
|
|
716
|
+
],
|
|
717
|
+
"type": "stack"
|
|
611
718
|
}
|
|
612
719
|
]
|
|
613
720
|
]
|
|
@@ -638,7 +745,7 @@
|
|
|
638
745
|
[
|
|
639
746
|
">=",
|
|
640
747
|
"@entity.consecutiveFailures",
|
|
641
|
-
3
|
|
748
|
+
3.0
|
|
642
749
|
],
|
|
643
750
|
[
|
|
644
751
|
"agent/switch-provider",
|
|
@@ -673,7 +780,10 @@
|
|
|
673
780
|
],
|
|
674
781
|
"\n",
|
|
675
782
|
"Consecutive failures: ",
|
|
676
|
-
|
|
783
|
+
[
|
|
784
|
+
"str/concat",
|
|
785
|
+
"@entity.consecutiveFailures"
|
|
786
|
+
],
|
|
677
787
|
"\n\n",
|
|
678
788
|
"Analyze the impact of this outcome. What should be learned? Keep it to 1-2 sentences."
|
|
679
789
|
]
|
|
@@ -682,94 +792,84 @@
|
|
|
682
792
|
"render-ui",
|
|
683
793
|
"main",
|
|
684
794
|
{
|
|
685
|
-
"type": "stack",
|
|
686
|
-
"direction": "vertical",
|
|
687
|
-
"gap": "lg",
|
|
688
795
|
"align": "center",
|
|
796
|
+
"type": "stack",
|
|
689
797
|
"children": [
|
|
690
798
|
{
|
|
799
|
+
"size": "lg",
|
|
691
800
|
"type": "icon",
|
|
692
|
-
"name": "cpu"
|
|
693
|
-
"size": "lg"
|
|
801
|
+
"name": "cpu"
|
|
694
802
|
},
|
|
695
803
|
{
|
|
804
|
+
"variant": "h3",
|
|
696
805
|
"type": "typography",
|
|
697
|
-
"content": "Analyzing impact..."
|
|
698
|
-
"variant": "h3"
|
|
806
|
+
"content": "Analyzing impact..."
|
|
699
807
|
},
|
|
700
808
|
{
|
|
701
|
-
"
|
|
702
|
-
"
|
|
809
|
+
"size": "lg",
|
|
810
|
+
"type": "spinner"
|
|
703
811
|
},
|
|
704
812
|
{
|
|
705
|
-
"type": "stack",
|
|
706
|
-
"direction": "horizontal",
|
|
707
|
-
"gap": "md",
|
|
708
813
|
"justify": "center",
|
|
709
814
|
"children": [
|
|
710
815
|
{
|
|
711
|
-
"type": "badge",
|
|
712
816
|
"label": [
|
|
713
817
|
"str/concat",
|
|
714
818
|
"Category: ",
|
|
715
819
|
"@entity.category"
|
|
716
|
-
]
|
|
820
|
+
],
|
|
821
|
+
"type": "badge"
|
|
717
822
|
},
|
|
718
823
|
{
|
|
719
|
-
"type": "badge",
|
|
720
824
|
"label": [
|
|
721
825
|
"if",
|
|
722
826
|
"@entity.isSuccess",
|
|
723
827
|
"Success",
|
|
724
828
|
"Failure"
|
|
725
|
-
]
|
|
829
|
+
],
|
|
830
|
+
"type": "badge"
|
|
726
831
|
}
|
|
727
|
-
]
|
|
832
|
+
],
|
|
833
|
+
"gap": "md",
|
|
834
|
+
"type": "stack",
|
|
835
|
+
"direction": "horizontal"
|
|
728
836
|
}
|
|
729
|
-
]
|
|
837
|
+
],
|
|
838
|
+
"gap": "lg",
|
|
839
|
+
"direction": "vertical"
|
|
730
840
|
}
|
|
731
841
|
]
|
|
732
842
|
]
|
|
733
843
|
},
|
|
734
844
|
{
|
|
735
|
-
"from": "
|
|
845
|
+
"from": "recording",
|
|
736
846
|
"to": "idle",
|
|
737
|
-
"event": "
|
|
847
|
+
"event": "FAILED",
|
|
738
848
|
"effects": [
|
|
739
849
|
[
|
|
740
850
|
"set",
|
|
741
|
-
"@entity.
|
|
742
|
-
"@payload.
|
|
851
|
+
"@entity.error",
|
|
852
|
+
"@payload.error"
|
|
743
853
|
],
|
|
744
854
|
[
|
|
745
855
|
"set",
|
|
746
856
|
"@entity.status",
|
|
747
857
|
"idle"
|
|
748
858
|
],
|
|
749
|
-
[
|
|
750
|
-
"set",
|
|
751
|
-
"@entity.provider",
|
|
752
|
-
[
|
|
753
|
-
"agent/provider"
|
|
754
|
-
]
|
|
755
|
-
],
|
|
756
859
|
[
|
|
757
860
|
"render-ui",
|
|
758
861
|
"main",
|
|
759
862
|
{
|
|
760
863
|
"type": "stack",
|
|
761
|
-
"direction": "vertical",
|
|
762
864
|
"gap": "lg",
|
|
865
|
+
"direction": "vertical",
|
|
763
866
|
"children": [
|
|
764
867
|
{
|
|
765
868
|
"type": "stack",
|
|
766
|
-
"direction": "horizontal",
|
|
767
|
-
"gap": "sm",
|
|
768
|
-
"align": "center",
|
|
769
869
|
"children": [
|
|
770
870
|
{
|
|
771
|
-
"type": "icon",
|
|
772
871
|
"name": "graduation-cap",
|
|
872
|
+
"type": "icon",
|
|
773
873
|
"size": "lg"
|
|
774
874
|
},
|
|
775
875
|
{
|
|
@@ -777,34 +877,37 @@
|
|
|
777
877
|
"content": "Outcome Learner",
|
|
778
878
|
"variant": "h2"
|
|
779
879
|
}
|
|
780
|
-
]
|
|
880
|
+
],
|
|
881
|
+
"align": "center",
|
|
882
|
+
"gap": "sm",
|
|
883
|
+
"direction": "horizontal"
|
|
781
884
|
},
|
|
782
885
|
{
|
|
783
886
|
"type": "divider"
|
|
784
887
|
},
|
|
785
888
|
{
|
|
786
|
-
"
|
|
787
|
-
"cols": 3,
|
|
889
|
+
"cols": 3.0,
|
|
788
890
|
"children": [
|
|
789
891
|
{
|
|
790
|
-
"type": "stat-display",
|
|
791
892
|
"label": "Successes",
|
|
893
|
+
"icon": "check-circle",
|
|
792
894
|
"value": "@entity.totalSuccesses",
|
|
793
|
-
"
|
|
895
|
+
"type": "stat-display"
|
|
794
896
|
},
|
|
795
897
|
{
|
|
898
|
+
"value": "@entity.totalFailures",
|
|
796
899
|
"type": "stat-display",
|
|
797
900
|
"label": "Failures",
|
|
798
|
-
"value": "@entity.totalFailures",
|
|
799
901
|
"icon": "x-circle"
|
|
800
902
|
},
|
|
801
903
|
{
|
|
802
904
|
"type": "stat-display",
|
|
803
|
-
"label": "Current Provider",
|
|
804
905
|
"value": "@entity.provider",
|
|
805
|
-
"icon": "cpu"
|
|
906
|
+
"icon": "cpu",
|
|
907
|
+
"label": "Current Provider"
|
|
806
908
|
}
|
|
807
|
-
]
|
|
909
|
+
],
|
|
910
|
+
"type": "simple-grid"
|
|
808
911
|
},
|
|
809
912
|
{
|
|
810
913
|
"type": "divider"
|
|
@@ -814,54 +917,54 @@
|
|
|
814
917
|
"children": [
|
|
815
918
|
{
|
|
816
919
|
"type": "stack",
|
|
817
|
-
"direction": "vertical",
|
|
818
920
|
"gap": "md",
|
|
819
921
|
"children": [
|
|
820
922
|
{
|
|
821
923
|
"type": "typography",
|
|
822
|
-
"
|
|
823
|
-
"
|
|
924
|
+
"variant": "body",
|
|
925
|
+
"content": "Listening for task outcomes..."
|
|
824
926
|
},
|
|
825
927
|
{
|
|
826
|
-
"type": "typography",
|
|
827
928
|
"content": "This module records TASK_SUCCEEDED and TASK_FAILED events automatically.",
|
|
828
|
-
"variant": "caption"
|
|
929
|
+
"variant": "caption",
|
|
930
|
+
"type": "typography"
|
|
829
931
|
}
|
|
830
|
-
]
|
|
932
|
+
],
|
|
933
|
+
"direction": "vertical"
|
|
831
934
|
}
|
|
832
935
|
]
|
|
833
936
|
},
|
|
834
937
|
{
|
|
835
|
-
"type": "card",
|
|
836
938
|
"children": [
|
|
837
939
|
{
|
|
838
940
|
"type": "stack",
|
|
839
941
|
"direction": "vertical",
|
|
840
|
-
"gap": "sm",
|
|
841
942
|
"children": [
|
|
842
943
|
{
|
|
843
944
|
"type": "typography",
|
|
844
|
-
"
|
|
845
|
-
"
|
|
945
|
+
"variant": "caption",
|
|
946
|
+
"content": "Last Outcome"
|
|
846
947
|
},
|
|
847
948
|
{
|
|
848
949
|
"type": "typography",
|
|
849
|
-
"
|
|
850
|
-
"
|
|
950
|
+
"variant": "body",
|
|
951
|
+
"content": "@entity.outcome"
|
|
851
952
|
},
|
|
852
953
|
{
|
|
853
|
-
"
|
|
954
|
+
"variant": "caption",
|
|
854
955
|
"content": "Impact Analysis",
|
|
855
|
-
"
|
|
956
|
+
"type": "typography"
|
|
856
957
|
},
|
|
857
958
|
{
|
|
959
|
+
"variant": "body",
|
|
858
960
|
"type": "typography",
|
|
859
|
-
"content": "@entity.impact"
|
|
860
|
-
"variant": "body"
|
|
961
|
+
"content": "@entity.impact"
|
|
861
962
|
}
|
|
862
|
-
]
|
|
963
|
+
],
|
|
964
|
+
"gap": "sm"
|
|
863
965
|
}
|
|
864
|
-
]
|
|
966
|
+
],
|
|
967
|
+
"type": "card"
|
|
865
968
|
}
|
|
866
969
|
]
|
|
867
970
|
}
|
|
@@ -869,69 +972,76 @@
|
|
|
869
972
|
]
|
|
870
973
|
},
|
|
871
974
|
{
|
|
872
|
-
"from": "
|
|
975
|
+
"from": "analyzing",
|
|
873
976
|
"to": "idle",
|
|
874
|
-
"event": "
|
|
977
|
+
"event": "ANALYSIS_DONE",
|
|
875
978
|
"effects": [
|
|
876
979
|
[
|
|
877
980
|
"set",
|
|
878
|
-
"@entity.
|
|
879
|
-
"@payload.
|
|
981
|
+
"@entity.impact",
|
|
982
|
+
"@payload.impact"
|
|
880
983
|
],
|
|
881
984
|
[
|
|
882
985
|
"set",
|
|
883
986
|
"@entity.status",
|
|
884
987
|
"idle"
|
|
885
988
|
],
|
|
989
|
+
[
|
|
990
|
+
"set",
|
|
991
|
+
"@entity.provider",
|
|
992
|
+
[
|
|
993
|
+
"agent/provider"
|
|
994
|
+
]
|
|
995
|
+
],
|
|
886
996
|
[
|
|
887
997
|
"render-ui",
|
|
888
998
|
"main",
|
|
889
999
|
{
|
|
890
1000
|
"type": "stack",
|
|
891
|
-
"direction": "vertical",
|
|
892
1001
|
"gap": "lg",
|
|
1002
|
+
"direction": "vertical",
|
|
893
1003
|
"children": [
|
|
894
1004
|
{
|
|
895
|
-
"type": "stack",
|
|
896
|
-
"direction": "horizontal",
|
|
897
|
-
"gap": "sm",
|
|
898
|
-
"align": "center",
|
|
899
1005
|
"children": [
|
|
900
1006
|
{
|
|
901
|
-
"type": "icon",
|
|
902
1007
|
"name": "graduation-cap",
|
|
903
|
-
"size": "lg"
|
|
1008
|
+
"size": "lg",
|
|
1009
|
+
"type": "icon"
|
|
904
1010
|
},
|
|
905
1011
|
{
|
|
1012
|
+
"variant": "h2",
|
|
906
1013
|
"type": "typography",
|
|
907
|
-
"content": "Outcome Learner"
|
|
908
|
-
"variant": "h2"
|
|
1014
|
+
"content": "Outcome Learner"
|
|
909
1015
|
}
|
|
910
|
-
]
|
|
1016
|
+
],
|
|
1017
|
+
"gap": "sm",
|
|
1018
|
+
"align": "center",
|
|
1019
|
+
"type": "stack",
|
|
1020
|
+
"direction": "horizontal"
|
|
911
1021
|
},
|
|
912
1022
|
{
|
|
913
1023
|
"type": "divider"
|
|
914
1024
|
},
|
|
915
1025
|
{
|
|
1026
|
+
"cols": 3.0,
|
|
916
1027
|
"type": "simple-grid",
|
|
917
|
-
"cols": 3,
|
|
918
1028
|
"children": [
|
|
919
1029
|
{
|
|
1030
|
+
"value": "@entity.totalSuccesses",
|
|
920
1031
|
"type": "stat-display",
|
|
921
1032
|
"label": "Successes",
|
|
922
|
-
"value": "@entity.totalSuccesses",
|
|
923
1033
|
"icon": "check-circle"
|
|
924
1034
|
},
|
|
925
1035
|
{
|
|
926
|
-
"
|
|
927
|
-
"label": "Failures",
|
|
1036
|
+
"icon": "x-circle",
|
|
928
1037
|
"value": "@entity.totalFailures",
|
|
929
|
-
"
|
|
1038
|
+
"type": "stat-display",
|
|
1039
|
+
"label": "Failures"
|
|
930
1040
|
},
|
|
931
1041
|
{
|
|
932
1042
|
"type": "stat-display",
|
|
933
|
-
"label": "Current Provider",
|
|
934
1043
|
"value": "@entity.provider",
|
|
1044
|
+
"label": "Current Provider",
|
|
935
1045
|
"icon": "cpu"
|
|
936
1046
|
}
|
|
937
1047
|
]
|
|
@@ -944,20 +1054,20 @@
|
|
|
944
1054
|
"children": [
|
|
945
1055
|
{
|
|
946
1056
|
"type": "stack",
|
|
947
|
-
"direction": "vertical",
|
|
948
1057
|
"gap": "md",
|
|
949
1058
|
"children": [
|
|
950
1059
|
{
|
|
1060
|
+
"variant": "body",
|
|
951
1061
|
"type": "typography",
|
|
952
|
-
"content": "Listening for task outcomes..."
|
|
953
|
-
"variant": "body"
|
|
1062
|
+
"content": "Listening for task outcomes..."
|
|
954
1063
|
},
|
|
955
1064
|
{
|
|
956
|
-
"type": "typography",
|
|
957
1065
|
"content": "This module records TASK_SUCCEEDED and TASK_FAILED events automatically.",
|
|
958
|
-
"variant": "caption"
|
|
1066
|
+
"variant": "caption",
|
|
1067
|
+
"type": "typography"
|
|
959
1068
|
}
|
|
960
|
-
]
|
|
1069
|
+
],
|
|
1070
|
+
"direction": "vertical"
|
|
961
1071
|
}
|
|
962
1072
|
]
|
|
963
1073
|
},
|
|
@@ -965,14 +1075,13 @@
|
|
|
965
1075
|
"type": "card",
|
|
966
1076
|
"children": [
|
|
967
1077
|
{
|
|
968
|
-
"type": "stack",
|
|
969
|
-
"direction": "vertical",
|
|
970
1078
|
"gap": "sm",
|
|
1079
|
+
"type": "stack",
|
|
971
1080
|
"children": [
|
|
972
1081
|
{
|
|
1082
|
+
"variant": "caption",
|
|
973
1083
|
"type": "typography",
|
|
974
|
-
"content": "Last Outcome"
|
|
975
|
-
"variant": "caption"
|
|
1084
|
+
"content": "Last Outcome"
|
|
976
1085
|
},
|
|
977
1086
|
{
|
|
978
1087
|
"type": "typography",
|
|
@@ -980,16 +1089,17 @@
|
|
|
980
1089
|
"variant": "body"
|
|
981
1090
|
},
|
|
982
1091
|
{
|
|
1092
|
+
"variant": "caption",
|
|
983
1093
|
"type": "typography",
|
|
984
|
-
"content": "Impact Analysis"
|
|
985
|
-
"variant": "caption"
|
|
1094
|
+
"content": "Impact Analysis"
|
|
986
1095
|
},
|
|
987
1096
|
{
|
|
988
|
-
"type": "typography",
|
|
989
1097
|
"content": "@entity.impact",
|
|
990
|
-
"variant": "body"
|
|
1098
|
+
"variant": "body",
|
|
1099
|
+
"type": "typography"
|
|
991
1100
|
}
|
|
992
|
-
]
|
|
1101
|
+
],
|
|
1102
|
+
"direction": "vertical"
|
|
993
1103
|
}
|
|
994
1104
|
]
|
|
995
1105
|
}
|
|
@@ -1017,52 +1127,51 @@
|
|
|
1017
1127
|
"render-ui",
|
|
1018
1128
|
"main",
|
|
1019
1129
|
{
|
|
1020
|
-
"type": "stack",
|
|
1021
1130
|
"direction": "vertical",
|
|
1022
|
-
"
|
|
1131
|
+
"type": "stack",
|
|
1023
1132
|
"children": [
|
|
1024
1133
|
{
|
|
1025
1134
|
"type": "stack",
|
|
1026
1135
|
"direction": "horizontal",
|
|
1027
|
-
"gap": "sm",
|
|
1028
|
-
"align": "center",
|
|
1029
1136
|
"children": [
|
|
1030
1137
|
{
|
|
1031
|
-
"type": "icon",
|
|
1032
1138
|
"name": "graduation-cap",
|
|
1139
|
+
"type": "icon",
|
|
1033
1140
|
"size": "lg"
|
|
1034
1141
|
},
|
|
1035
1142
|
{
|
|
1143
|
+
"variant": "h2",
|
|
1036
1144
|
"type": "typography",
|
|
1037
|
-
"content": "Outcome Learner"
|
|
1038
|
-
"variant": "h2"
|
|
1145
|
+
"content": "Outcome Learner"
|
|
1039
1146
|
}
|
|
1040
|
-
]
|
|
1147
|
+
],
|
|
1148
|
+
"align": "center",
|
|
1149
|
+
"gap": "sm"
|
|
1041
1150
|
},
|
|
1042
1151
|
{
|
|
1043
1152
|
"type": "divider"
|
|
1044
1153
|
},
|
|
1045
1154
|
{
|
|
1046
1155
|
"type": "simple-grid",
|
|
1047
|
-
"cols": 3,
|
|
1156
|
+
"cols": 3.0,
|
|
1048
1157
|
"children": [
|
|
1049
1158
|
{
|
|
1050
|
-
"type": "stat-display",
|
|
1051
1159
|
"label": "Successes",
|
|
1160
|
+
"type": "stat-display",
|
|
1052
1161
|
"value": "@entity.totalSuccesses",
|
|
1053
1162
|
"icon": "check-circle"
|
|
1054
1163
|
},
|
|
1055
1164
|
{
|
|
1056
1165
|
"type": "stat-display",
|
|
1057
1166
|
"label": "Failures",
|
|
1058
|
-
"
|
|
1059
|
-
"
|
|
1167
|
+
"icon": "x-circle",
|
|
1168
|
+
"value": "@entity.totalFailures"
|
|
1060
1169
|
},
|
|
1061
1170
|
{
|
|
1062
|
-
"type": "stat-display",
|
|
1063
1171
|
"label": "Current Provider",
|
|
1172
|
+
"icon": "cpu",
|
|
1064
1173
|
"value": "@entity.provider",
|
|
1065
|
-
"
|
|
1174
|
+
"type": "stat-display"
|
|
1066
1175
|
}
|
|
1067
1176
|
]
|
|
1068
1177
|
},
|
|
@@ -1073,9 +1182,7 @@
|
|
|
1073
1182
|
"type": "card",
|
|
1074
1183
|
"children": [
|
|
1075
1184
|
{
|
|
1076
|
-
"type": "stack",
|
|
1077
1185
|
"direction": "vertical",
|
|
1078
|
-
"gap": "md",
|
|
1079
1186
|
"children": [
|
|
1080
1187
|
{
|
|
1081
1188
|
"type": "typography",
|
|
@@ -1083,148 +1190,22 @@
|
|
|
1083
1190
|
"variant": "body"
|
|
1084
1191
|
},
|
|
1085
1192
|
{
|
|
1086
|
-
"type": "typography",
|
|
1087
1193
|
"content": "This module records TASK_SUCCEEDED and TASK_FAILED events automatically.",
|
|
1088
|
-
"variant": "caption"
|
|
1089
|
-
}
|
|
1090
|
-
]
|
|
1091
|
-
}
|
|
1092
|
-
]
|
|
1093
|
-
},
|
|
1094
|
-
{
|
|
1095
|
-
"type": "card",
|
|
1096
|
-
"children": [
|
|
1097
|
-
{
|
|
1098
|
-
"type": "stack",
|
|
1099
|
-
"direction": "vertical",
|
|
1100
|
-
"gap": "sm",
|
|
1101
|
-
"children": [
|
|
1102
|
-
{
|
|
1103
1194
|
"type": "typography",
|
|
1104
|
-
"content": "Last Outcome",
|
|
1105
1195
|
"variant": "caption"
|
|
1106
|
-
},
|
|
1107
|
-
{
|
|
1108
|
-
"type": "typography",
|
|
1109
|
-
"content": "@entity.outcome",
|
|
1110
|
-
"variant": "body"
|
|
1111
|
-
},
|
|
1112
|
-
{
|
|
1113
|
-
"type": "typography",
|
|
1114
|
-
"content": "Impact Analysis",
|
|
1115
|
-
"variant": "caption"
|
|
1116
|
-
},
|
|
1117
|
-
{
|
|
1118
|
-
"type": "typography",
|
|
1119
|
-
"content": "@entity.impact",
|
|
1120
|
-
"variant": "body"
|
|
1121
1196
|
}
|
|
1122
|
-
]
|
|
1123
|
-
}
|
|
1124
|
-
]
|
|
1125
|
-
}
|
|
1126
|
-
]
|
|
1127
|
-
}
|
|
1128
|
-
]
|
|
1129
|
-
]
|
|
1130
|
-
},
|
|
1131
|
-
{
|
|
1132
|
-
"from": "idle",
|
|
1133
|
-
"to": "idle",
|
|
1134
|
-
"event": "RESET",
|
|
1135
|
-
"effects": [
|
|
1136
|
-
[
|
|
1137
|
-
"set",
|
|
1138
|
-
"@entity.provider",
|
|
1139
|
-
[
|
|
1140
|
-
"agent/provider"
|
|
1141
|
-
]
|
|
1142
|
-
],
|
|
1143
|
-
[
|
|
1144
|
-
"render-ui",
|
|
1145
|
-
"main",
|
|
1146
|
-
{
|
|
1147
|
-
"type": "stack",
|
|
1148
|
-
"direction": "vertical",
|
|
1149
|
-
"gap": "lg",
|
|
1150
|
-
"children": [
|
|
1151
|
-
{
|
|
1152
|
-
"type": "stack",
|
|
1153
|
-
"direction": "horizontal",
|
|
1154
|
-
"gap": "sm",
|
|
1155
|
-
"align": "center",
|
|
1156
|
-
"children": [
|
|
1157
|
-
{
|
|
1158
|
-
"type": "icon",
|
|
1159
|
-
"name": "graduation-cap",
|
|
1160
|
-
"size": "lg"
|
|
1161
|
-
},
|
|
1162
|
-
{
|
|
1163
|
-
"type": "typography",
|
|
1164
|
-
"content": "Outcome Learner",
|
|
1165
|
-
"variant": "h2"
|
|
1166
|
-
}
|
|
1167
|
-
]
|
|
1168
|
-
},
|
|
1169
|
-
{
|
|
1170
|
-
"type": "divider"
|
|
1171
|
-
},
|
|
1172
|
-
{
|
|
1173
|
-
"type": "simple-grid",
|
|
1174
|
-
"cols": 3,
|
|
1175
|
-
"children": [
|
|
1176
|
-
{
|
|
1177
|
-
"type": "stat-display",
|
|
1178
|
-
"label": "Successes",
|
|
1179
|
-
"value": "@entity.totalSuccesses",
|
|
1180
|
-
"icon": "check-circle"
|
|
1181
|
-
},
|
|
1182
|
-
{
|
|
1183
|
-
"type": "stat-display",
|
|
1184
|
-
"label": "Failures",
|
|
1185
|
-
"value": "@entity.totalFailures",
|
|
1186
|
-
"icon": "x-circle"
|
|
1187
|
-
},
|
|
1188
|
-
{
|
|
1189
|
-
"type": "stat-display",
|
|
1190
|
-
"label": "Current Provider",
|
|
1191
|
-
"value": "@entity.provider",
|
|
1192
|
-
"icon": "cpu"
|
|
1193
|
-
}
|
|
1194
|
-
]
|
|
1195
|
-
},
|
|
1196
|
-
{
|
|
1197
|
-
"type": "divider"
|
|
1198
|
-
},
|
|
1199
|
-
{
|
|
1200
|
-
"type": "card",
|
|
1201
|
-
"children": [
|
|
1202
|
-
{
|
|
1197
|
+
],
|
|
1203
1198
|
"type": "stack",
|
|
1204
|
-
"
|
|
1205
|
-
"gap": "md",
|
|
1206
|
-
"children": [
|
|
1207
|
-
{
|
|
1208
|
-
"type": "typography",
|
|
1209
|
-
"content": "Listening for task outcomes...",
|
|
1210
|
-
"variant": "body"
|
|
1211
|
-
},
|
|
1212
|
-
{
|
|
1213
|
-
"type": "typography",
|
|
1214
|
-
"content": "This module records TASK_SUCCEEDED and TASK_FAILED events automatically.",
|
|
1215
|
-
"variant": "caption"
|
|
1216
|
-
}
|
|
1217
|
-
]
|
|
1199
|
+
"gap": "md"
|
|
1218
1200
|
}
|
|
1219
1201
|
]
|
|
1220
1202
|
},
|
|
1221
1203
|
{
|
|
1222
|
-
"type": "card",
|
|
1223
1204
|
"children": [
|
|
1224
1205
|
{
|
|
1225
|
-
"type": "stack",
|
|
1226
|
-
"direction": "vertical",
|
|
1227
1206
|
"gap": "sm",
|
|
1207
|
+
"direction": "vertical",
|
|
1208
|
+
"type": "stack",
|
|
1228
1209
|
"children": [
|
|
1229
1210
|
{
|
|
1230
1211
|
"type": "typography",
|
|
@@ -1233,30 +1214,33 @@
|
|
|
1233
1214
|
},
|
|
1234
1215
|
{
|
|
1235
1216
|
"type": "typography",
|
|
1236
|
-
"
|
|
1237
|
-
"
|
|
1217
|
+
"variant": "body",
|
|
1218
|
+
"content": "@entity.outcome"
|
|
1238
1219
|
},
|
|
1239
1220
|
{
|
|
1240
1221
|
"type": "typography",
|
|
1241
|
-
"
|
|
1242
|
-
"
|
|
1222
|
+
"variant": "caption",
|
|
1223
|
+
"content": "Impact Analysis"
|
|
1243
1224
|
},
|
|
1244
1225
|
{
|
|
1226
|
+
"variant": "body",
|
|
1245
1227
|
"type": "typography",
|
|
1246
|
-
"content": "@entity.impact"
|
|
1247
|
-
"variant": "body"
|
|
1228
|
+
"content": "@entity.impact"
|
|
1248
1229
|
}
|
|
1249
1230
|
]
|
|
1250
1231
|
}
|
|
1251
|
-
]
|
|
1232
|
+
],
|
|
1233
|
+
"type": "card"
|
|
1252
1234
|
}
|
|
1253
|
-
]
|
|
1235
|
+
],
|
|
1236
|
+
"gap": "lg"
|
|
1254
1237
|
}
|
|
1255
1238
|
]
|
|
1256
1239
|
]
|
|
1257
1240
|
}
|
|
1258
1241
|
]
|
|
1259
|
-
}
|
|
1242
|
+
},
|
|
1243
|
+
"scope": "collection"
|
|
1260
1244
|
},
|
|
1261
1245
|
{
|
|
1262
1246
|
"ref": "Browse.traits.BrowseItemBrowse",
|
|
@@ -1272,96 +1256,96 @@
|
|
|
1272
1256
|
"render-ui",
|
|
1273
1257
|
"main",
|
|
1274
1258
|
{
|
|
1275
|
-
"type": "stack",
|
|
1276
|
-
"direction": "vertical",
|
|
1277
|
-
"gap": "lg",
|
|
1278
|
-
"className": "max-w-5xl mx-auto w-full",
|
|
1279
1259
|
"children": [
|
|
1280
1260
|
{
|
|
1281
|
-
"type": "stack",
|
|
1282
1261
|
"direction": "horizontal",
|
|
1283
|
-
"gap": "md",
|
|
1284
1262
|
"justify": "space-between",
|
|
1285
1263
|
"align": "center",
|
|
1286
1264
|
"children": [
|
|
1287
1265
|
{
|
|
1288
|
-
"type": "stack",
|
|
1289
|
-
"direction": "horizontal",
|
|
1290
|
-
"gap": "sm",
|
|
1291
|
-
"align": "center",
|
|
1292
1266
|
"children": [
|
|
1293
1267
|
{
|
|
1294
1268
|
"type": "icon",
|
|
1295
|
-
"
|
|
1296
|
-
"
|
|
1269
|
+
"size": "lg",
|
|
1270
|
+
"name": "graduation-cap"
|
|
1297
1271
|
},
|
|
1298
1272
|
{
|
|
1299
1273
|
"type": "typography",
|
|
1300
|
-
"
|
|
1301
|
-
"
|
|
1274
|
+
"variant": "h2",
|
|
1275
|
+
"content": "Learning Records"
|
|
1302
1276
|
}
|
|
1303
|
-
]
|
|
1277
|
+
],
|
|
1278
|
+
"gap": "sm",
|
|
1279
|
+
"type": "stack",
|
|
1280
|
+
"direction": "horizontal",
|
|
1281
|
+
"align": "center"
|
|
1304
1282
|
}
|
|
1305
|
-
]
|
|
1283
|
+
],
|
|
1284
|
+
"gap": "md",
|
|
1285
|
+
"type": "stack"
|
|
1306
1286
|
},
|
|
1307
1287
|
{
|
|
1308
1288
|
"type": "divider"
|
|
1309
1289
|
},
|
|
1310
1290
|
{
|
|
1311
|
-
"type": "data-grid",
|
|
1312
1291
|
"entity": "AgentLearner",
|
|
1313
1292
|
"emptyIcon": "inbox",
|
|
1314
|
-
"emptyTitle": "No records yet",
|
|
1315
1293
|
"emptyDescription": "Task outcomes will appear here as they are recorded.",
|
|
1316
1294
|
"itemActions": [
|
|
1317
1295
|
{
|
|
1318
|
-
"label": "View",
|
|
1319
|
-
"event": "VIEW",
|
|
1320
1296
|
"variant": "ghost",
|
|
1321
|
-
"size": "sm"
|
|
1297
|
+
"size": "sm",
|
|
1298
|
+
"label": "View",
|
|
1299
|
+
"event": "VIEW"
|
|
1322
1300
|
}
|
|
1323
1301
|
],
|
|
1302
|
+
"type": "data-grid",
|
|
1303
|
+
"emptyTitle": "No records yet",
|
|
1324
1304
|
"columns": [
|
|
1325
1305
|
{
|
|
1326
|
-
"name": "outcome",
|
|
1327
1306
|
"label": "Outcome",
|
|
1328
|
-
"
|
|
1329
|
-
"icon": "graduation-cap"
|
|
1307
|
+
"name": "outcome",
|
|
1308
|
+
"icon": "graduation-cap",
|
|
1309
|
+
"variant": "h4"
|
|
1330
1310
|
},
|
|
1331
1311
|
{
|
|
1332
1312
|
"name": "category",
|
|
1333
|
-
"label": "Category",
|
|
1334
1313
|
"variant": "badge",
|
|
1335
1314
|
"colorMap": {
|
|
1336
|
-
"active": "success",
|
|
1337
1315
|
"completed": "success",
|
|
1338
|
-
"done": "success",
|
|
1339
|
-
"pending": "warning",
|
|
1340
1316
|
"draft": "warning",
|
|
1341
|
-
"
|
|
1317
|
+
"error": "destructive",
|
|
1342
1318
|
"inactive": "neutral",
|
|
1343
|
-
"
|
|
1319
|
+
"pending": "warning",
|
|
1320
|
+
"done": "success",
|
|
1344
1321
|
"disabled": "neutral",
|
|
1345
|
-
"
|
|
1322
|
+
"active": "success",
|
|
1323
|
+
"scheduled": "warning",
|
|
1346
1324
|
"cancelled": "destructive",
|
|
1325
|
+
"archived": "neutral",
|
|
1347
1326
|
"failed": "destructive"
|
|
1348
|
-
}
|
|
1327
|
+
},
|
|
1328
|
+
"label": "Category"
|
|
1349
1329
|
},
|
|
1350
1330
|
{
|
|
1351
|
-
"name": "status",
|
|
1352
1331
|
"label": "Status",
|
|
1353
|
-
"variant": "caption"
|
|
1332
|
+
"variant": "caption",
|
|
1333
|
+
"name": "status"
|
|
1354
1334
|
}
|
|
1355
1335
|
]
|
|
1356
1336
|
},
|
|
1357
1337
|
{
|
|
1338
|
+
"tooltip": "Create",
|
|
1358
1339
|
"type": "floating-action-button",
|
|
1359
1340
|
"icon": "plus",
|
|
1360
1341
|
"event": "INIT",
|
|
1361
|
-
"label": "Create"
|
|
1362
|
-
"tooltip": "Create"
|
|
1342
|
+
"label": "Create"
|
|
1363
1343
|
}
|
|
1364
|
-
]
|
|
1344
|
+
],
|
|
1345
|
+
"className": "max-w-5xl mx-auto w-full",
|
|
1346
|
+
"direction": "vertical",
|
|
1347
|
+
"type": "stack",
|
|
1348
|
+
"gap": "lg"
|
|
1365
1349
|
}
|
|
1366
1350
|
]
|
|
1367
1351
|
]
|
|
@@ -1371,7 +1355,6 @@
|
|
|
1371
1355
|
"ref": "AgentMemory.traits.AgentMemoryBrowse",
|
|
1372
1356
|
"name": "LearnerMemoryLifecycle",
|
|
1373
1357
|
"linkedEntity": "AgentLearner",
|
|
1374
|
-
"listens": [],
|
|
1375
1358
|
"emitsScope": "internal",
|
|
1376
1359
|
"effects": {
|
|
1377
1360
|
"INIT": [
|
|
@@ -1383,63 +1366,61 @@
|
|
|
1383
1366
|
"render-ui",
|
|
1384
1367
|
"main",
|
|
1385
1368
|
{
|
|
1386
|
-
"type": "stack",
|
|
1387
|
-
"direction": "vertical",
|
|
1388
1369
|
"gap": "lg",
|
|
1389
1370
|
"className": "max-w-5xl mx-auto w-full",
|
|
1390
1371
|
"children": [
|
|
1391
1372
|
{
|
|
1392
|
-
"type": "stack",
|
|
1393
|
-
"direction": "horizontal",
|
|
1394
1373
|
"gap": "md",
|
|
1374
|
+
"direction": "horizontal",
|
|
1395
1375
|
"justify": "space-between",
|
|
1376
|
+
"type": "stack",
|
|
1396
1377
|
"align": "center",
|
|
1397
1378
|
"children": [
|
|
1398
1379
|
{
|
|
1399
|
-
"type": "stack",
|
|
1400
|
-
"direction": "horizontal",
|
|
1401
1380
|
"gap": "sm",
|
|
1381
|
+
"direction": "horizontal",
|
|
1402
1382
|
"align": "center",
|
|
1403
1383
|
"children": [
|
|
1404
1384
|
{
|
|
1385
|
+
"size": "lg",
|
|
1405
1386
|
"type": "icon",
|
|
1406
|
-
"name": "brain"
|
|
1407
|
-
"size": "lg"
|
|
1387
|
+
"name": "brain"
|
|
1408
1388
|
},
|
|
1409
1389
|
{
|
|
1410
|
-
"type": "typography",
|
|
1411
1390
|
"content": "AgentLearner Manager",
|
|
1391
|
+
"type": "typography",
|
|
1412
1392
|
"variant": "h2"
|
|
1413
1393
|
}
|
|
1414
|
-
]
|
|
1394
|
+
],
|
|
1395
|
+
"type": "stack"
|
|
1415
1396
|
},
|
|
1416
1397
|
{
|
|
1417
1398
|
"type": "stack",
|
|
1418
|
-
"direction": "horizontal",
|
|
1419
|
-
"gap": "sm",
|
|
1420
1399
|
"children": [
|
|
1421
1400
|
{
|
|
1422
|
-
"type": "button",
|
|
1423
1401
|
"label": "Memorize",
|
|
1402
|
+
"type": "button",
|
|
1424
1403
|
"event": "MEMORIZE",
|
|
1425
|
-
"
|
|
1426
|
-
"
|
|
1404
|
+
"icon": "plus",
|
|
1405
|
+
"variant": "primary"
|
|
1427
1406
|
},
|
|
1428
1407
|
{
|
|
1429
|
-
"type": "button",
|
|
1430
|
-
"label": "Recall",
|
|
1431
|
-
"event": "RECALL",
|
|
1432
1408
|
"variant": "secondary",
|
|
1433
|
-
"
|
|
1409
|
+
"label": "Recall",
|
|
1410
|
+
"type": "button",
|
|
1411
|
+
"icon": "search",
|
|
1412
|
+
"event": "RECALL"
|
|
1434
1413
|
},
|
|
1435
1414
|
{
|
|
1415
|
+
"icon": "clock",
|
|
1436
1416
|
"type": "button",
|
|
1437
1417
|
"label": "Decay All",
|
|
1438
|
-
"event": "DECAY",
|
|
1439
1418
|
"variant": "ghost",
|
|
1440
|
-
"
|
|
1419
|
+
"event": "DECAY"
|
|
1441
1420
|
}
|
|
1442
|
-
]
|
|
1421
|
+
],
|
|
1422
|
+
"direction": "horizontal",
|
|
1423
|
+
"gap": "sm"
|
|
1443
1424
|
}
|
|
1444
1425
|
]
|
|
1445
1426
|
},
|
|
@@ -1447,65 +1428,67 @@
|
|
|
1447
1428
|
"type": "divider"
|
|
1448
1429
|
},
|
|
1449
1430
|
{
|
|
1450
|
-
"type": "data-grid",
|
|
1451
|
-
"entity": "AgentLearner",
|
|
1452
1431
|
"emptyIcon": "inbox",
|
|
1453
1432
|
"emptyTitle": "No memories yet",
|
|
1433
|
+
"type": "data-grid",
|
|
1434
|
+
"entity": "AgentLearner",
|
|
1454
1435
|
"emptyDescription": "Create your first memory to get started.",
|
|
1455
|
-
"itemActions": [
|
|
1456
|
-
{
|
|
1457
|
-
"label": "Pin",
|
|
1458
|
-
"event": "PIN",
|
|
1459
|
-
"variant": "ghost",
|
|
1460
|
-
"size": "sm"
|
|
1461
|
-
},
|
|
1462
|
-
{
|
|
1463
|
-
"label": "Reinforce",
|
|
1464
|
-
"event": "REINFORCE",
|
|
1465
|
-
"variant": "ghost",
|
|
1466
|
-
"size": "sm"
|
|
1467
|
-
},
|
|
1468
|
-
{
|
|
1469
|
-
"label": "Forget",
|
|
1470
|
-
"event": "FORGET",
|
|
1471
|
-
"variant": "danger",
|
|
1472
|
-
"size": "sm"
|
|
1473
|
-
}
|
|
1474
|
-
],
|
|
1475
1436
|
"columns": [
|
|
1476
1437
|
{
|
|
1477
1438
|
"name": "content",
|
|
1439
|
+
"icon": "brain",
|
|
1478
1440
|
"label": "Content",
|
|
1479
|
-
"variant": "h4"
|
|
1480
|
-
"icon": "brain"
|
|
1441
|
+
"variant": "h4"
|
|
1481
1442
|
},
|
|
1482
1443
|
{
|
|
1483
|
-
"name": "category",
|
|
1484
|
-
"label": "Category",
|
|
1485
|
-
"variant": "badge",
|
|
1486
1444
|
"colorMap": {
|
|
1487
|
-
"active": "success",
|
|
1488
|
-
"completed": "success",
|
|
1489
|
-
"done": "success",
|
|
1490
|
-
"pending": "warning",
|
|
1491
|
-
"draft": "warning",
|
|
1492
1445
|
"scheduled": "warning",
|
|
1493
|
-
"
|
|
1446
|
+
"completed": "success",
|
|
1494
1447
|
"archived": "neutral",
|
|
1448
|
+
"failed": "destructive",
|
|
1449
|
+
"cancelled": "destructive",
|
|
1495
1450
|
"disabled": "neutral",
|
|
1451
|
+
"pending": "warning",
|
|
1452
|
+
"done": "success",
|
|
1453
|
+
"active": "success",
|
|
1454
|
+
"draft": "warning",
|
|
1496
1455
|
"error": "destructive",
|
|
1497
|
-
"
|
|
1498
|
-
|
|
1499
|
-
|
|
1456
|
+
"inactive": "neutral"
|
|
1457
|
+
},
|
|
1458
|
+
"label": "Category",
|
|
1459
|
+
"name": "category",
|
|
1460
|
+
"variant": "badge"
|
|
1500
1461
|
},
|
|
1501
1462
|
{
|
|
1502
|
-
"
|
|
1463
|
+
"variant": "caption",
|
|
1503
1464
|
"label": "Strength",
|
|
1504
|
-
"
|
|
1465
|
+
"name": "strength"
|
|
1466
|
+
}
|
|
1467
|
+
],
|
|
1468
|
+
"itemActions": [
|
|
1469
|
+
{
|
|
1470
|
+
"label": "Pin",
|
|
1471
|
+
"event": "PIN",
|
|
1472
|
+
"size": "sm",
|
|
1473
|
+
"variant": "ghost"
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
"event": "REINFORCE",
|
|
1477
|
+
"variant": "ghost",
|
|
1478
|
+
"label": "Reinforce",
|
|
1479
|
+
"size": "sm"
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
"label": "Forget",
|
|
1483
|
+
"variant": "danger",
|
|
1484
|
+
"event": "FORGET",
|
|
1485
|
+
"size": "sm"
|
|
1505
1486
|
}
|
|
1506
1487
|
]
|
|
1507
1488
|
}
|
|
1508
|
-
]
|
|
1489
|
+
],
|
|
1490
|
+
"type": "stack",
|
|
1491
|
+
"direction": "vertical"
|
|
1509
1492
|
}
|
|
1510
1493
|
]
|
|
1511
1494
|
]
|
|
@@ -1515,7 +1498,6 @@
|
|
|
1515
1498
|
"ref": "AgentCompletion.traits.AgentCompletionModal",
|
|
1516
1499
|
"name": "LearnerCompletionFlow",
|
|
1517
1500
|
"linkedEntity": "AgentLearner",
|
|
1518
|
-
"listens": [],
|
|
1519
1501
|
"emitsScope": "internal",
|
|
1520
1502
|
"effects": {
|
|
1521
1503
|
"INIT": [
|
|
@@ -1528,40 +1510,107 @@
|
|
|
1528
1510
|
"main",
|
|
1529
1511
|
{
|
|
1530
1512
|
"type": "stack",
|
|
1531
|
-
"direction": "vertical",
|
|
1532
1513
|
"gap": "lg",
|
|
1533
1514
|
"children": [
|
|
1534
1515
|
{
|
|
1516
|
+
"justify": "space-between",
|
|
1517
|
+
"type": "stack",
|
|
1518
|
+
"children": [
|
|
1519
|
+
{
|
|
1520
|
+
"direction": "horizontal",
|
|
1521
|
+
"gap": "md",
|
|
1522
|
+
"children": [
|
|
1523
|
+
{
|
|
1524
|
+
"type": "icon",
|
|
1525
|
+
"name": "sparkles",
|
|
1526
|
+
"size": "lg"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"variant": "h2",
|
|
1530
|
+
"type": "typography",
|
|
1531
|
+
"content": "AgentLearner"
|
|
1532
|
+
}
|
|
1533
|
+
],
|
|
1534
|
+
"type": "stack"
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"event": "GENERATE",
|
|
1538
|
+
"variant": "primary",
|
|
1539
|
+
"icon": "sparkles",
|
|
1540
|
+
"label": "Open",
|
|
1541
|
+
"type": "button"
|
|
1542
|
+
}
|
|
1543
|
+
],
|
|
1544
|
+
"gap": "md",
|
|
1545
|
+
"direction": "horizontal"
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"type": "divider"
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
"title": "Nothing open",
|
|
1552
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
1553
|
+
"icon": "sparkles",
|
|
1554
|
+
"type": "empty-state"
|
|
1555
|
+
}
|
|
1556
|
+
],
|
|
1557
|
+
"direction": "vertical"
|
|
1558
|
+
}
|
|
1559
|
+
]
|
|
1560
|
+
],
|
|
1561
|
+
"CLOSE": [
|
|
1562
|
+
[
|
|
1563
|
+
"render-ui",
|
|
1564
|
+
"modal",
|
|
1565
|
+
null
|
|
1566
|
+
],
|
|
1567
|
+
[
|
|
1568
|
+
"notify",
|
|
1569
|
+
"Cancelled",
|
|
1570
|
+
"info"
|
|
1571
|
+
],
|
|
1572
|
+
[
|
|
1573
|
+
"ref",
|
|
1574
|
+
"AgentLearner"
|
|
1575
|
+
],
|
|
1576
|
+
[
|
|
1577
|
+
"render-ui",
|
|
1578
|
+
"main",
|
|
1579
|
+
{
|
|
1580
|
+
"gap": "lg",
|
|
1581
|
+
"type": "stack",
|
|
1582
|
+
"children": [
|
|
1583
|
+
{
|
|
1584
|
+
"justify": "space-between",
|
|
1535
1585
|
"type": "stack",
|
|
1536
|
-
"direction": "horizontal",
|
|
1537
1586
|
"gap": "md",
|
|
1538
|
-
"justify": "space-between",
|
|
1539
1587
|
"children": [
|
|
1540
1588
|
{
|
|
1541
|
-
"type": "stack",
|
|
1542
1589
|
"direction": "horizontal",
|
|
1543
1590
|
"gap": "md",
|
|
1544
1591
|
"children": [
|
|
1545
1592
|
{
|
|
1546
|
-
"
|
|
1593
|
+
"size": "lg",
|
|
1547
1594
|
"name": "sparkles",
|
|
1548
|
-
"
|
|
1595
|
+
"type": "icon"
|
|
1549
1596
|
},
|
|
1550
1597
|
{
|
|
1551
1598
|
"type": "typography",
|
|
1552
|
-
"
|
|
1553
|
-
"
|
|
1599
|
+
"variant": "h2",
|
|
1600
|
+
"content": "AgentLearner"
|
|
1554
1601
|
}
|
|
1555
|
-
]
|
|
1602
|
+
],
|
|
1603
|
+
"type": "stack"
|
|
1556
1604
|
},
|
|
1557
1605
|
{
|
|
1558
|
-
"type": "button",
|
|
1559
1606
|
"label": "Open",
|
|
1560
|
-
"event": "GENERATE",
|
|
1561
1607
|
"variant": "primary",
|
|
1608
|
+
"event": "GENERATE",
|
|
1609
|
+
"type": "button",
|
|
1562
1610
|
"icon": "sparkles"
|
|
1563
1611
|
}
|
|
1564
|
-
]
|
|
1612
|
+
],
|
|
1613
|
+
"direction": "horizontal"
|
|
1565
1614
|
},
|
|
1566
1615
|
{
|
|
1567
1616
|
"type": "divider"
|
|
@@ -1569,10 +1618,11 @@
|
|
|
1569
1618
|
{
|
|
1570
1619
|
"type": "empty-state",
|
|
1571
1620
|
"icon": "sparkles",
|
|
1572
|
-
"
|
|
1573
|
-
"
|
|
1621
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
1622
|
+
"title": "Nothing open"
|
|
1574
1623
|
}
|
|
1575
|
-
]
|
|
1624
|
+
],
|
|
1625
|
+
"direction": "vertical"
|
|
1576
1626
|
}
|
|
1577
1627
|
]
|
|
1578
1628
|
],
|
|
@@ -1581,69 +1631,74 @@
|
|
|
1581
1631
|
"render-ui",
|
|
1582
1632
|
"modal",
|
|
1583
1633
|
{
|
|
1584
|
-
"type": "stack",
|
|
1585
|
-
"direction": "vertical",
|
|
1586
1634
|
"gap": "md",
|
|
1635
|
+
"direction": "vertical",
|
|
1587
1636
|
"children": [
|
|
1588
1637
|
{
|
|
1589
1638
|
"type": "stack",
|
|
1590
|
-
"direction": "horizontal",
|
|
1591
1639
|
"gap": "sm",
|
|
1592
1640
|
"children": [
|
|
1593
1641
|
{
|
|
1594
1642
|
"type": "icon",
|
|
1595
|
-
"
|
|
1596
|
-
"
|
|
1643
|
+
"size": "md",
|
|
1644
|
+
"name": "sparkles"
|
|
1597
1645
|
},
|
|
1598
1646
|
{
|
|
1647
|
+
"variant": "h3",
|
|
1599
1648
|
"type": "typography",
|
|
1600
|
-
"content": "AgentLearner"
|
|
1601
|
-
"variant": "h3"
|
|
1649
|
+
"content": "AgentLearner"
|
|
1602
1650
|
}
|
|
1603
|
-
]
|
|
1651
|
+
],
|
|
1652
|
+
"direction": "horizontal"
|
|
1604
1653
|
},
|
|
1605
1654
|
{
|
|
1606
1655
|
"type": "divider"
|
|
1607
1656
|
},
|
|
1608
1657
|
{
|
|
1609
|
-
"type": "stack",
|
|
1610
|
-
"direction": "horizontal",
|
|
1611
|
-
"gap": "sm",
|
|
1612
1658
|
"children": [
|
|
1613
1659
|
{
|
|
1614
|
-
"
|
|
1615
|
-
"
|
|
1660
|
+
"label": "@entity.provider",
|
|
1661
|
+
"type": "badge"
|
|
1616
1662
|
},
|
|
1617
1663
|
{
|
|
1618
1664
|
"type": "badge",
|
|
1619
1665
|
"label": "@entity.model"
|
|
1620
1666
|
}
|
|
1621
|
-
]
|
|
1667
|
+
],
|
|
1668
|
+
"gap": "sm",
|
|
1669
|
+
"direction": "horizontal",
|
|
1670
|
+
"type": "stack"
|
|
1622
1671
|
},
|
|
1623
1672
|
{
|
|
1624
|
-
"type": "form-section",
|
|
1625
1673
|
"entity": "AgentLearner",
|
|
1626
|
-
"mode": "create",
|
|
1627
|
-
"submitEvent": "SAVE",
|
|
1628
1674
|
"cancelEvent": "CLOSE",
|
|
1675
|
+
"mode": "create",
|
|
1629
1676
|
"fields": [
|
|
1630
1677
|
"prompt"
|
|
1631
|
-
]
|
|
1678
|
+
],
|
|
1679
|
+
"type": "form-section",
|
|
1680
|
+
"submitEvent": "SAVE"
|
|
1632
1681
|
}
|
|
1633
|
-
]
|
|
1682
|
+
],
|
|
1683
|
+
"type": "stack"
|
|
1634
1684
|
}
|
|
1635
1685
|
]
|
|
1636
1686
|
],
|
|
1637
|
-
"
|
|
1687
|
+
"SAVE": [
|
|
1688
|
+
[
|
|
1689
|
+
"persist",
|
|
1690
|
+
"create",
|
|
1691
|
+
"AgentLearner",
|
|
1692
|
+
"@payload.data"
|
|
1693
|
+
],
|
|
1638
1694
|
[
|
|
1639
1695
|
"render-ui",
|
|
1640
1696
|
"modal",
|
|
1641
1697
|
null
|
|
1642
1698
|
],
|
|
1643
1699
|
[
|
|
1644
|
-
"
|
|
1645
|
-
"
|
|
1646
|
-
"info"
|
|
1700
|
+
"emit",
|
|
1701
|
+
"GENERATED"
|
|
1647
1702
|
],
|
|
1648
1703
|
[
|
|
1649
1704
|
"ref",
|
|
@@ -1654,58 +1709,66 @@
|
|
|
1654
1709
|
"main",
|
|
1655
1710
|
{
|
|
1656
1711
|
"type": "stack",
|
|
1657
|
-
"direction": "vertical",
|
|
1658
1712
|
"gap": "lg",
|
|
1713
|
+
"direction": "vertical",
|
|
1659
1714
|
"children": [
|
|
1660
1715
|
{
|
|
1661
|
-
"type": "stack",
|
|
1662
|
-
"direction": "horizontal",
|
|
1663
|
-
"gap": "md",
|
|
1664
|
-
"justify": "space-between",
|
|
1665
1716
|
"children": [
|
|
1666
1717
|
{
|
|
1667
|
-
"type": "stack",
|
|
1668
|
-
"direction": "horizontal",
|
|
1669
1718
|
"gap": "md",
|
|
1670
1719
|
"children": [
|
|
1671
1720
|
{
|
|
1672
|
-
"
|
|
1721
|
+
"size": "lg",
|
|
1673
1722
|
"name": "sparkles",
|
|
1674
|
-
"
|
|
1723
|
+
"type": "icon"
|
|
1675
1724
|
},
|
|
1676
1725
|
{
|
|
1677
|
-
"type": "typography",
|
|
1678
1726
|
"content": "AgentLearner",
|
|
1679
|
-
"variant": "h2"
|
|
1727
|
+
"variant": "h2",
|
|
1728
|
+
"type": "typography"
|
|
1680
1729
|
}
|
|
1681
|
-
]
|
|
1730
|
+
],
|
|
1731
|
+
"direction": "horizontal",
|
|
1732
|
+
"type": "stack"
|
|
1682
1733
|
},
|
|
1683
1734
|
{
|
|
1684
|
-
"
|
|
1735
|
+
"icon": "sparkles",
|
|
1685
1736
|
"label": "Open",
|
|
1686
1737
|
"event": "GENERATE",
|
|
1687
1738
|
"variant": "primary",
|
|
1688
|
-
"
|
|
1739
|
+
"type": "button"
|
|
1689
1740
|
}
|
|
1690
|
-
]
|
|
1741
|
+
],
|
|
1742
|
+
"direction": "horizontal",
|
|
1743
|
+
"type": "stack",
|
|
1744
|
+
"gap": "md",
|
|
1745
|
+
"justify": "space-between"
|
|
1691
1746
|
},
|
|
1692
1747
|
{
|
|
1693
1748
|
"type": "divider"
|
|
1694
1749
|
},
|
|
1695
1750
|
{
|
|
1696
|
-
"type": "empty-state",
|
|
1697
|
-
"icon": "sparkles",
|
|
1698
1751
|
"title": "Nothing open",
|
|
1699
|
-
"description": "Click Open to view details in a modal overlay."
|
|
1752
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
1753
|
+
"icon": "sparkles",
|
|
1754
|
+
"type": "empty-state"
|
|
1700
1755
|
}
|
|
1701
1756
|
]
|
|
1702
1757
|
}
|
|
1703
1758
|
]
|
|
1704
|
-
]
|
|
1759
|
+
]
|
|
1760
|
+
}
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
"ref": "AgentProvider.traits.AgentProviderModal",
|
|
1764
|
+
"name": "LearnerProviderManager",
|
|
1765
|
+
"linkedEntity": "AgentLearner",
|
|
1766
|
+
"emitsScope": "internal",
|
|
1767
|
+
"effects": {
|
|
1705
1768
|
"SAVE": [
|
|
1706
1769
|
[
|
|
1707
1770
|
"persist",
|
|
1708
|
-
"
|
|
1771
|
+
"update",
|
|
1709
1772
|
"AgentLearner",
|
|
1710
1773
|
"@payload.data"
|
|
1711
1774
|
],
|
|
@@ -1716,7 +1779,7 @@
|
|
|
1716
1779
|
],
|
|
1717
1780
|
[
|
|
1718
1781
|
"emit",
|
|
1719
|
-
"
|
|
1782
|
+
"SWITCHED"
|
|
1720
1783
|
],
|
|
1721
1784
|
[
|
|
1722
1785
|
"ref",
|
|
@@ -1726,39 +1789,39 @@
|
|
|
1726
1789
|
"render-ui",
|
|
1727
1790
|
"main",
|
|
1728
1791
|
{
|
|
1729
|
-
"type": "stack",
|
|
1730
1792
|
"direction": "vertical",
|
|
1731
1793
|
"gap": "lg",
|
|
1794
|
+
"type": "stack",
|
|
1732
1795
|
"children": [
|
|
1733
1796
|
{
|
|
1734
1797
|
"type": "stack",
|
|
1735
|
-
"direction": "horizontal",
|
|
1736
1798
|
"gap": "md",
|
|
1799
|
+
"direction": "horizontal",
|
|
1737
1800
|
"justify": "space-between",
|
|
1738
1801
|
"children": [
|
|
1739
1802
|
{
|
|
1740
|
-
"type": "stack",
|
|
1741
1803
|
"direction": "horizontal",
|
|
1742
1804
|
"gap": "md",
|
|
1743
1805
|
"children": [
|
|
1744
1806
|
{
|
|
1807
|
+
"name": "repeat",
|
|
1745
1808
|
"type": "icon",
|
|
1746
|
-
"name": "sparkles",
|
|
1747
1809
|
"size": "lg"
|
|
1748
1810
|
},
|
|
1749
1811
|
{
|
|
1812
|
+
"variant": "h2",
|
|
1750
1813
|
"type": "typography",
|
|
1751
|
-
"content": "
|
|
1752
|
-
"variant": "h2"
|
|
1814
|
+
"content": "Switch Provider"
|
|
1753
1815
|
}
|
|
1754
|
-
]
|
|
1816
|
+
],
|
|
1817
|
+
"type": "stack"
|
|
1755
1818
|
},
|
|
1756
1819
|
{
|
|
1757
|
-
"type": "button",
|
|
1758
|
-
"label": "Open",
|
|
1759
|
-
"event": "GENERATE",
|
|
1760
1820
|
"variant": "primary",
|
|
1761
|
-
"icon": "
|
|
1821
|
+
"icon": "repeat",
|
|
1822
|
+
"label": "Open",
|
|
1823
|
+
"event": "SWITCH",
|
|
1824
|
+
"type": "button"
|
|
1762
1825
|
}
|
|
1763
1826
|
]
|
|
1764
1827
|
},
|
|
@@ -1766,24 +1829,15 @@
|
|
|
1766
1829
|
"type": "divider"
|
|
1767
1830
|
},
|
|
1768
1831
|
{
|
|
1832
|
+
"icon": "repeat",
|
|
1769
1833
|
"type": "empty-state",
|
|
1770
|
-
"
|
|
1771
|
-
"title": "Nothing open"
|
|
1772
|
-
"description": "Click Open to view details in a modal overlay."
|
|
1834
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
1835
|
+
"title": "Nothing open"
|
|
1773
1836
|
}
|
|
1774
1837
|
]
|
|
1775
1838
|
}
|
|
1776
1839
|
]
|
|
1777
|
-
]
|
|
1778
|
-
}
|
|
1779
|
-
},
|
|
1780
|
-
{
|
|
1781
|
-
"ref": "AgentProvider.traits.AgentProviderModal",
|
|
1782
|
-
"name": "LearnerProviderManager",
|
|
1783
|
-
"linkedEntity": "AgentLearner",
|
|
1784
|
-
"listens": [],
|
|
1785
|
-
"emitsScope": "internal",
|
|
1786
|
-
"effects": {
|
|
1840
|
+
],
|
|
1787
1841
|
"INIT": [
|
|
1788
1842
|
[
|
|
1789
1843
|
"ref",
|
|
@@ -1795,37 +1849,36 @@
|
|
|
1795
1849
|
{
|
|
1796
1850
|
"type": "stack",
|
|
1797
1851
|
"direction": "vertical",
|
|
1798
|
-
"gap": "lg",
|
|
1799
1852
|
"children": [
|
|
1800
1853
|
{
|
|
1854
|
+
"justify": "space-between",
|
|
1855
|
+
"gap": "md",
|
|
1801
1856
|
"type": "stack",
|
|
1802
1857
|
"direction": "horizontal",
|
|
1803
|
-
"gap": "md",
|
|
1804
|
-
"justify": "space-between",
|
|
1805
1858
|
"children": [
|
|
1806
1859
|
{
|
|
1807
|
-
"type": "stack",
|
|
1808
1860
|
"direction": "horizontal",
|
|
1809
1861
|
"gap": "md",
|
|
1810
1862
|
"children": [
|
|
1811
1863
|
{
|
|
1812
|
-
"type": "icon",
|
|
1813
1864
|
"name": "repeat",
|
|
1814
|
-
"size": "lg"
|
|
1865
|
+
"size": "lg",
|
|
1866
|
+
"type": "icon"
|
|
1815
1867
|
},
|
|
1816
1868
|
{
|
|
1869
|
+
"variant": "h2",
|
|
1817
1870
|
"type": "typography",
|
|
1818
|
-
"content": "Switch Provider"
|
|
1819
|
-
"variant": "h2"
|
|
1871
|
+
"content": "Switch Provider"
|
|
1820
1872
|
}
|
|
1821
|
-
]
|
|
1873
|
+
],
|
|
1874
|
+
"type": "stack"
|
|
1822
1875
|
},
|
|
1823
1876
|
{
|
|
1824
|
-
"type": "button",
|
|
1825
1877
|
"label": "Open",
|
|
1826
1878
|
"event": "SWITCH",
|
|
1827
1879
|
"variant": "primary",
|
|
1828
|
-
"icon": "repeat"
|
|
1880
|
+
"icon": "repeat",
|
|
1881
|
+
"type": "button"
|
|
1829
1882
|
}
|
|
1830
1883
|
]
|
|
1831
1884
|
},
|
|
@@ -1833,12 +1886,13 @@
|
|
|
1833
1886
|
"type": "divider"
|
|
1834
1887
|
},
|
|
1835
1888
|
{
|
|
1889
|
+
"title": "Nothing open",
|
|
1836
1890
|
"type": "empty-state",
|
|
1837
1891
|
"icon": "repeat",
|
|
1838
|
-
"title": "Nothing open",
|
|
1839
1892
|
"description": "Click Open to view details in a modal overlay."
|
|
1840
1893
|
}
|
|
1841
|
-
]
|
|
1894
|
+
],
|
|
1895
|
+
"gap": "lg"
|
|
1842
1896
|
}
|
|
1843
1897
|
]
|
|
1844
1898
|
],
|
|
@@ -1851,34 +1905,30 @@
|
|
|
1851
1905
|
"render-ui",
|
|
1852
1906
|
"modal",
|
|
1853
1907
|
{
|
|
1854
|
-
"type": "stack",
|
|
1855
1908
|
"direction": "vertical",
|
|
1856
|
-
"
|
|
1909
|
+
"type": "stack",
|
|
1857
1910
|
"children": [
|
|
1858
1911
|
{
|
|
1859
|
-
"type": "stack",
|
|
1860
1912
|
"direction": "horizontal",
|
|
1861
|
-
"gap": "sm",
|
|
1862
1913
|
"children": [
|
|
1863
1914
|
{
|
|
1864
|
-
"type": "icon",
|
|
1865
1915
|
"name": "repeat",
|
|
1866
|
-
"size": "md"
|
|
1916
|
+
"size": "md",
|
|
1917
|
+
"type": "icon"
|
|
1867
1918
|
},
|
|
1868
1919
|
{
|
|
1869
1920
|
"type": "typography",
|
|
1870
1921
|
"content": "Switch Provider",
|
|
1871
1922
|
"variant": "h3"
|
|
1872
1923
|
}
|
|
1873
|
-
]
|
|
1924
|
+
],
|
|
1925
|
+
"gap": "sm",
|
|
1926
|
+
"type": "stack"
|
|
1874
1927
|
},
|
|
1875
1928
|
{
|
|
1876
1929
|
"type": "divider"
|
|
1877
1930
|
},
|
|
1878
1931
|
{
|
|
1879
|
-
"type": "stack",
|
|
1880
|
-
"direction": "horizontal",
|
|
1881
|
-
"gap": "md",
|
|
1882
1932
|
"children": [
|
|
1883
1933
|
{
|
|
1884
1934
|
"type": "typography",
|
|
@@ -1886,27 +1936,31 @@
|
|
|
1886
1936
|
"content": "Current:"
|
|
1887
1937
|
},
|
|
1888
1938
|
{
|
|
1889
|
-
"
|
|
1890
|
-
"
|
|
1939
|
+
"label": "@entity.currentProvider",
|
|
1940
|
+
"type": "badge"
|
|
1891
1941
|
},
|
|
1892
1942
|
{
|
|
1893
|
-
"
|
|
1894
|
-
"
|
|
1943
|
+
"label": "@entity.currentModel",
|
|
1944
|
+
"type": "badge"
|
|
1895
1945
|
}
|
|
1896
|
-
]
|
|
1946
|
+
],
|
|
1947
|
+
"direction": "horizontal",
|
|
1948
|
+
"type": "stack",
|
|
1949
|
+
"gap": "md"
|
|
1897
1950
|
},
|
|
1898
1951
|
{
|
|
1899
|
-
"type": "form-section",
|
|
1900
1952
|
"entity": "AgentLearner",
|
|
1901
|
-
"mode": "edit",
|
|
1902
|
-
"submitEvent": "SAVE",
|
|
1903
|
-
"cancelEvent": "CLOSE",
|
|
1904
1953
|
"fields": [
|
|
1905
1954
|
"currentProvider",
|
|
1906
1955
|
"currentModel"
|
|
1907
|
-
]
|
|
1956
|
+
],
|
|
1957
|
+
"cancelEvent": "CLOSE",
|
|
1958
|
+
"mode": "edit",
|
|
1959
|
+
"type": "form-section",
|
|
1960
|
+
"submitEvent": "SAVE"
|
|
1908
1961
|
}
|
|
1909
|
-
]
|
|
1962
|
+
],
|
|
1963
|
+
"gap": "md"
|
|
1910
1964
|
}
|
|
1911
1965
|
]
|
|
1912
1966
|
],
|
|
@@ -1930,124 +1984,51 @@
|
|
|
1930
1984
|
"main",
|
|
1931
1985
|
{
|
|
1932
1986
|
"type": "stack",
|
|
1933
|
-
"direction": "vertical",
|
|
1934
1987
|
"gap": "lg",
|
|
1935
1988
|
"children": [
|
|
1936
1989
|
{
|
|
1937
1990
|
"type": "stack",
|
|
1938
|
-
"direction": "horizontal",
|
|
1939
|
-
"gap": "md",
|
|
1940
|
-
"justify": "space-between",
|
|
1941
1991
|
"children": [
|
|
1942
1992
|
{
|
|
1943
|
-
"type": "stack",
|
|
1944
1993
|
"direction": "horizontal",
|
|
1945
|
-
"gap": "md",
|
|
1946
1994
|
"children": [
|
|
1947
1995
|
{
|
|
1948
|
-
"
|
|
1996
|
+
"size": "lg",
|
|
1949
1997
|
"name": "repeat",
|
|
1950
|
-
"
|
|
1998
|
+
"type": "icon"
|
|
1951
1999
|
},
|
|
1952
2000
|
{
|
|
2001
|
+
"variant": "h2",
|
|
1953
2002
|
"type": "typography",
|
|
1954
|
-
"content": "Switch Provider"
|
|
1955
|
-
"variant": "h2"
|
|
2003
|
+
"content": "Switch Provider"
|
|
1956
2004
|
}
|
|
1957
|
-
]
|
|
2005
|
+
],
|
|
2006
|
+
"gap": "md",
|
|
2007
|
+
"type": "stack"
|
|
1958
2008
|
},
|
|
1959
2009
|
{
|
|
1960
2010
|
"type": "button",
|
|
1961
|
-
"label": "Open",
|
|
1962
2011
|
"event": "SWITCH",
|
|
1963
|
-
"
|
|
1964
|
-
"
|
|
2012
|
+
"icon": "repeat",
|
|
2013
|
+
"label": "Open",
|
|
2014
|
+
"variant": "primary"
|
|
1965
2015
|
}
|
|
1966
|
-
]
|
|
1967
|
-
},
|
|
1968
|
-
{
|
|
1969
|
-
"type": "divider"
|
|
1970
|
-
},
|
|
1971
|
-
{
|
|
1972
|
-
"type": "empty-state",
|
|
1973
|
-
"icon": "repeat",
|
|
1974
|
-
"title": "Nothing open",
|
|
1975
|
-
"description": "Click Open to view details in a modal overlay."
|
|
1976
|
-
}
|
|
1977
|
-
]
|
|
1978
|
-
}
|
|
1979
|
-
]
|
|
1980
|
-
],
|
|
1981
|
-
"SAVE": [
|
|
1982
|
-
[
|
|
1983
|
-
"persist",
|
|
1984
|
-
"update",
|
|
1985
|
-
"AgentLearner",
|
|
1986
|
-
"@payload.data"
|
|
1987
|
-
],
|
|
1988
|
-
[
|
|
1989
|
-
"render-ui",
|
|
1990
|
-
"modal",
|
|
1991
|
-
null
|
|
1992
|
-
],
|
|
1993
|
-
[
|
|
1994
|
-
"emit",
|
|
1995
|
-
"SWITCHED"
|
|
1996
|
-
],
|
|
1997
|
-
[
|
|
1998
|
-
"ref",
|
|
1999
|
-
"AgentLearner"
|
|
2000
|
-
],
|
|
2001
|
-
[
|
|
2002
|
-
"render-ui",
|
|
2003
|
-
"main",
|
|
2004
|
-
{
|
|
2005
|
-
"type": "stack",
|
|
2006
|
-
"direction": "vertical",
|
|
2007
|
-
"gap": "lg",
|
|
2008
|
-
"children": [
|
|
2009
|
-
{
|
|
2010
|
-
"type": "stack",
|
|
2016
|
+
],
|
|
2011
2017
|
"direction": "horizontal",
|
|
2012
|
-
"gap": "md",
|
|
2013
2018
|
"justify": "space-between",
|
|
2014
|
-
"
|
|
2015
|
-
{
|
|
2016
|
-
"type": "stack",
|
|
2017
|
-
"direction": "horizontal",
|
|
2018
|
-
"gap": "md",
|
|
2019
|
-
"children": [
|
|
2020
|
-
{
|
|
2021
|
-
"type": "icon",
|
|
2022
|
-
"name": "repeat",
|
|
2023
|
-
"size": "lg"
|
|
2024
|
-
},
|
|
2025
|
-
{
|
|
2026
|
-
"type": "typography",
|
|
2027
|
-
"content": "Switch Provider",
|
|
2028
|
-
"variant": "h2"
|
|
2029
|
-
}
|
|
2030
|
-
]
|
|
2031
|
-
},
|
|
2032
|
-
{
|
|
2033
|
-
"type": "button",
|
|
2034
|
-
"label": "Open",
|
|
2035
|
-
"event": "SWITCH",
|
|
2036
|
-
"variant": "primary",
|
|
2037
|
-
"icon": "repeat"
|
|
2038
|
-
}
|
|
2039
|
-
]
|
|
2019
|
+
"gap": "md"
|
|
2040
2020
|
},
|
|
2041
2021
|
{
|
|
2042
2022
|
"type": "divider"
|
|
2043
2023
|
},
|
|
2044
2024
|
{
|
|
2045
|
-
"type": "empty-state",
|
|
2046
|
-
"icon": "repeat",
|
|
2047
2025
|
"title": "Nothing open",
|
|
2048
|
-
"description": "Click Open to view details in a modal overlay."
|
|
2026
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
2027
|
+
"type": "empty-state",
|
|
2028
|
+
"icon": "repeat"
|
|
2049
2029
|
}
|
|
2050
|
-
]
|
|
2030
|
+
],
|
|
2031
|
+
"direction": "vertical"
|
|
2051
2032
|
}
|
|
2052
2033
|
]
|
|
2053
2034
|
]
|