@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,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-agent-completion",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-agent-completion as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentCompletionOrbital",
|
|
8
8
|
"entity": {
|
|
9
9
|
"name": "AgentCompletion",
|
|
10
|
-
"persistence": "persistent",
|
|
11
10
|
"collection": "agentcompletions",
|
|
11
|
+
"persistence": "persistent",
|
|
12
12
|
"fields": [
|
|
13
13
|
{
|
|
14
14
|
"name": "id",
|
|
@@ -76,16 +76,84 @@
|
|
|
76
76
|
"traits": [
|
|
77
77
|
{
|
|
78
78
|
"name": "AgentCompletionModal",
|
|
79
|
-
"linkedEntity": "AgentCompletion",
|
|
80
79
|
"category": "interaction",
|
|
80
|
+
"linkedEntity": "AgentCompletion",
|
|
81
81
|
"emits": [
|
|
82
82
|
{
|
|
83
|
-
"event": "
|
|
84
|
-
"scope": "external"
|
|
83
|
+
"event": "GENERATED",
|
|
84
|
+
"scope": "external",
|
|
85
|
+
"payload": [
|
|
86
|
+
{
|
|
87
|
+
"name": "id",
|
|
88
|
+
"type": "string"
|
|
89
|
+
}
|
|
90
|
+
]
|
|
85
91
|
},
|
|
86
92
|
{
|
|
87
|
-
"event": "
|
|
88
|
-
"
|
|
93
|
+
"event": "AgentCompletionLoaded",
|
|
94
|
+
"description": "Fired when AgentCompletion finishes loading",
|
|
95
|
+
"scope": "internal",
|
|
96
|
+
"payload": [
|
|
97
|
+
{
|
|
98
|
+
"name": "id",
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "name",
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "description",
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "status",
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "createdAt",
|
|
115
|
+
"type": "string"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "prompt",
|
|
119
|
+
"type": "string"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "response",
|
|
123
|
+
"type": "string"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "provider",
|
|
127
|
+
"type": "string"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "model",
|
|
131
|
+
"type": "string"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "error",
|
|
135
|
+
"type": "string"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "message",
|
|
139
|
+
"type": "string"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "notificationType",
|
|
143
|
+
"type": "string"
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"event": "AgentCompletionLoadFailed",
|
|
149
|
+
"description": "Fired when AgentCompletion fails to load",
|
|
150
|
+
"scope": "internal",
|
|
151
|
+
"payload": [
|
|
152
|
+
{
|
|
153
|
+
"name": "message",
|
|
154
|
+
"type": "string"
|
|
155
|
+
}
|
|
156
|
+
]
|
|
89
157
|
}
|
|
90
158
|
],
|
|
91
159
|
"stateMachine": {
|
|
@@ -105,7 +173,7 @@
|
|
|
105
173
|
},
|
|
106
174
|
{
|
|
107
175
|
"key": "GENERATE",
|
|
108
|
-
"name": "
|
|
176
|
+
"name": "Generate"
|
|
109
177
|
},
|
|
110
178
|
{
|
|
111
179
|
"key": "CLOSE",
|
|
@@ -121,6 +189,24 @@
|
|
|
121
189
|
"required": true
|
|
122
190
|
}
|
|
123
191
|
]
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"key": "GENERATED",
|
|
195
|
+
"name": "Generated"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"key": "AgentCompletionLoaded",
|
|
199
|
+
"name": "AgentCompletion loaded"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"key": "AgentCompletionLoadFailed",
|
|
203
|
+
"name": "AgentCompletion load failed",
|
|
204
|
+
"payload": [
|
|
205
|
+
{
|
|
206
|
+
"name": "message",
|
|
207
|
+
"type": "string"
|
|
208
|
+
}
|
|
209
|
+
]
|
|
124
210
|
}
|
|
125
211
|
],
|
|
126
212
|
"transitions": [
|
|
@@ -137,18 +223,16 @@
|
|
|
137
223
|
"render-ui",
|
|
138
224
|
"main",
|
|
139
225
|
{
|
|
140
|
-
"type": "stack",
|
|
141
226
|
"direction": "vertical",
|
|
227
|
+
"type": "stack",
|
|
142
228
|
"gap": "lg",
|
|
143
229
|
"children": [
|
|
144
230
|
{
|
|
145
|
-
"type": "stack",
|
|
146
231
|
"direction": "horizontal",
|
|
232
|
+
"type": "stack",
|
|
147
233
|
"gap": "md",
|
|
148
|
-
"justify": "space-between",
|
|
149
234
|
"children": [
|
|
150
235
|
{
|
|
151
|
-
"type": "stack",
|
|
152
236
|
"direction": "horizontal",
|
|
153
237
|
"gap": "md",
|
|
154
238
|
"children": [
|
|
@@ -162,24 +246,26 @@
|
|
|
162
246
|
"content": "AgentCompletion",
|
|
163
247
|
"variant": "h2"
|
|
164
248
|
}
|
|
165
|
-
]
|
|
249
|
+
],
|
|
250
|
+
"type": "stack"
|
|
166
251
|
},
|
|
167
252
|
{
|
|
168
|
-
"type": "button",
|
|
169
253
|
"label": "Open",
|
|
170
254
|
"event": "GENERATE",
|
|
171
|
-
"
|
|
172
|
-
"icon": "sparkles"
|
|
255
|
+
"type": "button",
|
|
256
|
+
"icon": "sparkles",
|
|
257
|
+
"variant": "primary"
|
|
173
258
|
}
|
|
174
|
-
]
|
|
259
|
+
],
|
|
260
|
+
"justify": "space-between"
|
|
175
261
|
},
|
|
176
262
|
{
|
|
177
263
|
"type": "divider"
|
|
178
264
|
},
|
|
179
265
|
{
|
|
180
|
-
"type": "empty-state",
|
|
181
266
|
"icon": "sparkles",
|
|
182
267
|
"title": "Nothing open",
|
|
268
|
+
"type": "empty-state",
|
|
183
269
|
"description": "Click Open to view details in a modal overlay."
|
|
184
270
|
}
|
|
185
271
|
]
|
|
@@ -196,8 +282,8 @@
|
|
|
196
282
|
"render-ui",
|
|
197
283
|
"modal",
|
|
198
284
|
{
|
|
199
|
-
"type": "stack",
|
|
200
285
|
"direction": "vertical",
|
|
286
|
+
"type": "stack",
|
|
201
287
|
"gap": "md",
|
|
202
288
|
"children": [
|
|
203
289
|
{
|
|
@@ -206,14 +292,14 @@
|
|
|
206
292
|
"gap": "sm",
|
|
207
293
|
"children": [
|
|
208
294
|
{
|
|
209
|
-
"
|
|
295
|
+
"size": "md",
|
|
210
296
|
"name": "sparkles",
|
|
211
|
-
"
|
|
297
|
+
"type": "icon"
|
|
212
298
|
},
|
|
213
299
|
{
|
|
214
|
-
"type": "typography",
|
|
215
300
|
"content": "AgentCompletion",
|
|
216
|
-
"variant": "h3"
|
|
301
|
+
"variant": "h3",
|
|
302
|
+
"type": "typography"
|
|
217
303
|
}
|
|
218
304
|
]
|
|
219
305
|
},
|
|
@@ -221,7 +307,6 @@
|
|
|
221
307
|
"type": "divider"
|
|
222
308
|
},
|
|
223
309
|
{
|
|
224
|
-
"type": "stack",
|
|
225
310
|
"direction": "horizontal",
|
|
226
311
|
"gap": "sm",
|
|
227
312
|
"children": [
|
|
@@ -230,20 +315,21 @@
|
|
|
230
315
|
"label": "@entity.provider"
|
|
231
316
|
},
|
|
232
317
|
{
|
|
233
|
-
"
|
|
234
|
-
"
|
|
318
|
+
"label": "@entity.model",
|
|
319
|
+
"type": "badge"
|
|
235
320
|
}
|
|
236
|
-
]
|
|
321
|
+
],
|
|
322
|
+
"type": "stack"
|
|
237
323
|
},
|
|
238
324
|
{
|
|
325
|
+
"cancelEvent": "CLOSE",
|
|
239
326
|
"type": "form-section",
|
|
240
327
|
"entity": "AgentCompletion",
|
|
241
|
-
"mode": "create",
|
|
242
|
-
"submitEvent": "SAVE",
|
|
243
|
-
"cancelEvent": "CLOSE",
|
|
244
328
|
"fields": [
|
|
245
329
|
"prompt"
|
|
246
|
-
]
|
|
330
|
+
],
|
|
331
|
+
"mode": "create",
|
|
332
|
+
"submitEvent": "SAVE"
|
|
247
333
|
}
|
|
248
334
|
]
|
|
249
335
|
}
|
|
@@ -273,41 +359,41 @@
|
|
|
273
359
|
"render-ui",
|
|
274
360
|
"main",
|
|
275
361
|
{
|
|
362
|
+
"gap": "lg",
|
|
276
363
|
"type": "stack",
|
|
277
364
|
"direction": "vertical",
|
|
278
|
-
"gap": "lg",
|
|
279
365
|
"children": [
|
|
280
366
|
{
|
|
281
|
-
"type": "stack",
|
|
282
|
-
"direction": "horizontal",
|
|
283
367
|
"gap": "md",
|
|
284
368
|
"justify": "space-between",
|
|
285
369
|
"children": [
|
|
286
370
|
{
|
|
287
|
-
"type": "stack",
|
|
288
|
-
"direction": "horizontal",
|
|
289
371
|
"gap": "md",
|
|
372
|
+
"type": "stack",
|
|
290
373
|
"children": [
|
|
291
374
|
{
|
|
292
|
-
"type": "icon",
|
|
293
375
|
"name": "sparkles",
|
|
376
|
+
"type": "icon",
|
|
294
377
|
"size": "lg"
|
|
295
378
|
},
|
|
296
379
|
{
|
|
297
380
|
"type": "typography",
|
|
298
|
-
"
|
|
299
|
-
"
|
|
381
|
+
"variant": "h2",
|
|
382
|
+
"content": "AgentCompletion"
|
|
300
383
|
}
|
|
301
|
-
]
|
|
384
|
+
],
|
|
385
|
+
"direction": "horizontal"
|
|
302
386
|
},
|
|
303
387
|
{
|
|
388
|
+
"event": "GENERATE",
|
|
304
389
|
"type": "button",
|
|
305
390
|
"label": "Open",
|
|
306
|
-
"
|
|
307
|
-
"variant": "primary"
|
|
308
|
-
"icon": "sparkles"
|
|
391
|
+
"icon": "sparkles",
|
|
392
|
+
"variant": "primary"
|
|
309
393
|
}
|
|
310
|
-
]
|
|
394
|
+
],
|
|
395
|
+
"direction": "horizontal",
|
|
396
|
+
"type": "stack"
|
|
311
397
|
},
|
|
312
398
|
{
|
|
313
399
|
"type": "divider"
|
|
@@ -351,63 +437,132 @@
|
|
|
351
437
|
"render-ui",
|
|
352
438
|
"main",
|
|
353
439
|
{
|
|
354
|
-
"type": "stack",
|
|
355
440
|
"direction": "vertical",
|
|
356
|
-
"gap": "lg",
|
|
357
441
|
"children": [
|
|
358
442
|
{
|
|
359
|
-
"type": "stack",
|
|
360
443
|
"direction": "horizontal",
|
|
361
|
-
"gap": "md",
|
|
362
|
-
"justify": "space-between",
|
|
363
444
|
"children": [
|
|
364
445
|
{
|
|
365
|
-
"type": "stack",
|
|
366
446
|
"direction": "horizontal",
|
|
367
447
|
"gap": "md",
|
|
368
448
|
"children": [
|
|
369
449
|
{
|
|
370
|
-
"type": "icon",
|
|
371
450
|
"name": "sparkles",
|
|
372
|
-
"size": "lg"
|
|
451
|
+
"size": "lg",
|
|
452
|
+
"type": "icon"
|
|
373
453
|
},
|
|
374
454
|
{
|
|
455
|
+
"variant": "h2",
|
|
375
456
|
"type": "typography",
|
|
376
|
-
"content": "AgentCompletion"
|
|
377
|
-
"variant": "h2"
|
|
457
|
+
"content": "AgentCompletion"
|
|
378
458
|
}
|
|
379
|
-
]
|
|
459
|
+
],
|
|
460
|
+
"type": "stack"
|
|
380
461
|
},
|
|
381
462
|
{
|
|
382
|
-
"type": "button",
|
|
383
|
-
"label": "Open",
|
|
384
|
-
"event": "GENERATE",
|
|
385
463
|
"variant": "primary",
|
|
386
|
-
"
|
|
464
|
+
"event": "GENERATE",
|
|
465
|
+
"icon": "sparkles",
|
|
466
|
+
"type": "button",
|
|
467
|
+
"label": "Open"
|
|
387
468
|
}
|
|
388
|
-
]
|
|
469
|
+
],
|
|
470
|
+
"gap": "md",
|
|
471
|
+
"justify": "space-between",
|
|
472
|
+
"type": "stack"
|
|
389
473
|
},
|
|
390
474
|
{
|
|
391
475
|
"type": "divider"
|
|
392
476
|
},
|
|
393
477
|
{
|
|
394
|
-
"type": "empty-state",
|
|
395
|
-
"icon": "sparkles",
|
|
396
478
|
"title": "Nothing open",
|
|
397
|
-
"description": "Click Open to view details in a modal overlay."
|
|
479
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
480
|
+
"type": "empty-state",
|
|
481
|
+
"icon": "sparkles"
|
|
398
482
|
}
|
|
399
|
-
]
|
|
483
|
+
],
|
|
484
|
+
"type": "stack",
|
|
485
|
+
"gap": "lg"
|
|
400
486
|
}
|
|
401
487
|
]
|
|
402
488
|
]
|
|
403
489
|
}
|
|
404
490
|
]
|
|
405
|
-
}
|
|
491
|
+
},
|
|
492
|
+
"scope": "instance"
|
|
406
493
|
},
|
|
407
494
|
{
|
|
408
495
|
"name": "AgentCompletionNotification",
|
|
409
|
-
"linkedEntity": "AgentCompletion",
|
|
410
496
|
"category": "interaction",
|
|
497
|
+
"linkedEntity": "AgentCompletion",
|
|
498
|
+
"emits": [
|
|
499
|
+
{
|
|
500
|
+
"event": "AgentCompletionLoaded",
|
|
501
|
+
"description": "Fired when AgentCompletion finishes loading",
|
|
502
|
+
"scope": "internal",
|
|
503
|
+
"payload": [
|
|
504
|
+
{
|
|
505
|
+
"name": "id",
|
|
506
|
+
"type": "string"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"name": "name",
|
|
510
|
+
"type": "string"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "description",
|
|
514
|
+
"type": "string"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"name": "status",
|
|
518
|
+
"type": "string"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "createdAt",
|
|
522
|
+
"type": "string"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"name": "prompt",
|
|
526
|
+
"type": "string"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "response",
|
|
530
|
+
"type": "string"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"name": "provider",
|
|
534
|
+
"type": "string"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"name": "model",
|
|
538
|
+
"type": "string"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"name": "error",
|
|
542
|
+
"type": "string"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"name": "message",
|
|
546
|
+
"type": "string"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"name": "notificationType",
|
|
550
|
+
"type": "string"
|
|
551
|
+
}
|
|
552
|
+
]
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"event": "AgentCompletionLoadFailed",
|
|
556
|
+
"description": "Fired when AgentCompletion fails to load",
|
|
557
|
+
"scope": "internal",
|
|
558
|
+
"payload": [
|
|
559
|
+
{
|
|
560
|
+
"name": "message",
|
|
561
|
+
"type": "string"
|
|
562
|
+
}
|
|
563
|
+
]
|
|
564
|
+
}
|
|
565
|
+
],
|
|
411
566
|
"stateMachine": {
|
|
412
567
|
"states": [
|
|
413
568
|
{
|
|
@@ -425,7 +580,7 @@
|
|
|
425
580
|
},
|
|
426
581
|
{
|
|
427
582
|
"key": "SHOW",
|
|
428
|
-
"name": "Show
|
|
583
|
+
"name": "Show",
|
|
429
584
|
"payload": [
|
|
430
585
|
{
|
|
431
586
|
"name": "message",
|
|
@@ -440,7 +595,21 @@
|
|
|
440
595
|
},
|
|
441
596
|
{
|
|
442
597
|
"key": "HIDE",
|
|
443
|
-
"name": "Hide
|
|
598
|
+
"name": "Hide"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"key": "AgentCompletionLoaded",
|
|
602
|
+
"name": "AgentCompletion loaded"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"key": "AgentCompletionLoadFailed",
|
|
606
|
+
"name": "AgentCompletion load failed",
|
|
607
|
+
"payload": [
|
|
608
|
+
{
|
|
609
|
+
"name": "message",
|
|
610
|
+
"type": "string"
|
|
611
|
+
}
|
|
612
|
+
]
|
|
444
613
|
}
|
|
445
614
|
],
|
|
446
615
|
"transitions": [
|
|
@@ -451,7 +620,13 @@
|
|
|
451
620
|
"effects": [
|
|
452
621
|
[
|
|
453
622
|
"fetch",
|
|
454
|
-
"AgentCompletion"
|
|
623
|
+
"AgentCompletion",
|
|
624
|
+
{
|
|
625
|
+
"emit": {
|
|
626
|
+
"failure": "AgentCompletionLoadFailed",
|
|
627
|
+
"success": "AgentCompletionLoaded"
|
|
628
|
+
}
|
|
629
|
+
}
|
|
455
630
|
]
|
|
456
631
|
]
|
|
457
632
|
},
|
|
@@ -474,40 +649,40 @@
|
|
|
474
649
|
"render-ui",
|
|
475
650
|
"main",
|
|
476
651
|
{
|
|
652
|
+
"gap": "lg",
|
|
477
653
|
"type": "stack",
|
|
478
654
|
"direction": "vertical",
|
|
479
|
-
"gap": "lg",
|
|
480
655
|
"children": [
|
|
481
656
|
{
|
|
482
|
-
"type": "stack",
|
|
483
657
|
"direction": "horizontal",
|
|
484
658
|
"gap": "md",
|
|
485
|
-
"justify": "space-between",
|
|
486
659
|
"align": "center",
|
|
660
|
+
"type": "stack",
|
|
661
|
+
"justify": "space-between",
|
|
487
662
|
"children": [
|
|
488
663
|
{
|
|
489
|
-
"type": "stack",
|
|
490
|
-
"direction": "horizontal",
|
|
491
|
-
"gap": "md",
|
|
492
|
-
"align": "center",
|
|
493
664
|
"children": [
|
|
494
665
|
{
|
|
495
666
|
"type": "icon",
|
|
496
|
-
"
|
|
497
|
-
"
|
|
667
|
+
"size": "lg",
|
|
668
|
+
"name": "sparkles"
|
|
498
669
|
},
|
|
499
670
|
{
|
|
500
|
-
"type": "typography",
|
|
501
671
|
"content": "AgentCompletion Status",
|
|
502
|
-
"variant": "h2"
|
|
672
|
+
"variant": "h2",
|
|
673
|
+
"type": "typography"
|
|
503
674
|
}
|
|
504
|
-
]
|
|
675
|
+
],
|
|
676
|
+
"gap": "md",
|
|
677
|
+
"direction": "horizontal",
|
|
678
|
+
"align": "center",
|
|
679
|
+
"type": "stack"
|
|
505
680
|
},
|
|
506
681
|
{
|
|
507
|
-
"type": "button",
|
|
508
682
|
"label": "Dismiss",
|
|
509
|
-
"event": "HIDE",
|
|
510
683
|
"variant": "ghost",
|
|
684
|
+
"type": "button",
|
|
685
|
+
"event": "HIDE",
|
|
511
686
|
"icon": "x"
|
|
512
687
|
}
|
|
513
688
|
]
|
|
@@ -516,7 +691,6 @@
|
|
|
516
691
|
"type": "divider"
|
|
517
692
|
},
|
|
518
693
|
{
|
|
519
|
-
"type": "alert",
|
|
520
694
|
"variant": [
|
|
521
695
|
"object/get",
|
|
522
696
|
[
|
|
@@ -532,15 +706,14 @@
|
|
|
532
706
|
"@entity"
|
|
533
707
|
],
|
|
534
708
|
"message"
|
|
535
|
-
]
|
|
709
|
+
],
|
|
710
|
+
"type": "alert"
|
|
536
711
|
},
|
|
537
712
|
{
|
|
538
|
-
"
|
|
539
|
-
"
|
|
713
|
+
"position": "top-right",
|
|
714
|
+
"type": "toast-slot"
|
|
540
715
|
},
|
|
541
716
|
{
|
|
542
|
-
"type": "violation-alert",
|
|
543
|
-
"severity": "warning",
|
|
544
717
|
"message": [
|
|
545
718
|
"object/get",
|
|
546
719
|
[
|
|
@@ -549,7 +722,9 @@
|
|
|
549
722
|
],
|
|
550
723
|
"message"
|
|
551
724
|
],
|
|
552
|
-
"
|
|
725
|
+
"type": "violation-alert",
|
|
726
|
+
"category": "compliance",
|
|
727
|
+
"severity": "warning"
|
|
553
728
|
}
|
|
554
729
|
]
|
|
555
730
|
}
|
|
@@ -577,41 +752,40 @@
|
|
|
577
752
|
{
|
|
578
753
|
"type": "stack",
|
|
579
754
|
"direction": "vertical",
|
|
580
|
-
"gap": "lg",
|
|
581
755
|
"children": [
|
|
582
756
|
{
|
|
757
|
+
"gap": "md",
|
|
583
758
|
"type": "stack",
|
|
584
759
|
"direction": "horizontal",
|
|
585
|
-
"gap": "md",
|
|
586
|
-
"justify": "space-between",
|
|
587
760
|
"align": "center",
|
|
588
761
|
"children": [
|
|
589
762
|
{
|
|
590
|
-
"type": "stack",
|
|
591
763
|
"direction": "horizontal",
|
|
592
|
-
"gap": "md",
|
|
593
764
|
"align": "center",
|
|
765
|
+
"type": "stack",
|
|
594
766
|
"children": [
|
|
595
767
|
{
|
|
596
768
|
"type": "icon",
|
|
597
|
-
"
|
|
598
|
-
"
|
|
769
|
+
"size": "lg",
|
|
770
|
+
"name": "sparkles"
|
|
599
771
|
},
|
|
600
772
|
{
|
|
773
|
+
"variant": "h2",
|
|
601
774
|
"type": "typography",
|
|
602
|
-
"content": "AgentCompletion Status"
|
|
603
|
-
"variant": "h2"
|
|
775
|
+
"content": "AgentCompletion Status"
|
|
604
776
|
}
|
|
605
|
-
]
|
|
777
|
+
],
|
|
778
|
+
"gap": "md"
|
|
606
779
|
},
|
|
607
780
|
{
|
|
608
781
|
"type": "button",
|
|
609
|
-
"
|
|
610
|
-
"event": "HIDE",
|
|
782
|
+
"icon": "x",
|
|
611
783
|
"variant": "ghost",
|
|
612
|
-
"
|
|
784
|
+
"event": "HIDE",
|
|
785
|
+
"label": "Dismiss"
|
|
613
786
|
}
|
|
614
|
-
]
|
|
787
|
+
],
|
|
788
|
+
"justify": "space-between"
|
|
615
789
|
},
|
|
616
790
|
{
|
|
617
791
|
"type": "divider"
|
|
@@ -640,7 +814,6 @@
|
|
|
640
814
|
"position": "top-right"
|
|
641
815
|
},
|
|
642
816
|
{
|
|
643
|
-
"type": "violation-alert",
|
|
644
817
|
"severity": "warning",
|
|
645
818
|
"message": [
|
|
646
819
|
"object/get",
|
|
@@ -650,9 +823,11 @@
|
|
|
650
823
|
],
|
|
651
824
|
"message"
|
|
652
825
|
],
|
|
826
|
+
"type": "violation-alert",
|
|
653
827
|
"category": "compliance"
|
|
654
828
|
}
|
|
655
|
-
]
|
|
829
|
+
],
|
|
830
|
+
"gap": "lg"
|
|
656
831
|
}
|
|
657
832
|
]
|
|
658
833
|
]
|
|
@@ -670,12 +845,13 @@
|
|
|
670
845
|
]
|
|
671
846
|
}
|
|
672
847
|
]
|
|
673
|
-
}
|
|
848
|
+
},
|
|
849
|
+
"scope": "instance"
|
|
674
850
|
},
|
|
675
851
|
{
|
|
676
852
|
"name": "AgentCompletionAgent",
|
|
677
|
-
"linkedEntity": "AgentCompletion",
|
|
678
853
|
"category": "interaction",
|
|
854
|
+
"linkedEntity": "AgentCompletion",
|
|
679
855
|
"emits": [
|
|
680
856
|
{
|
|
681
857
|
"event": "SHOW",
|
|
@@ -686,13 +862,82 @@
|
|
|
686
862
|
"type": "string"
|
|
687
863
|
}
|
|
688
864
|
]
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"event": "AgentCompletionLoaded",
|
|
868
|
+
"description": "Fired when AgentCompletion finishes loading",
|
|
869
|
+
"scope": "internal",
|
|
870
|
+
"payload": [
|
|
871
|
+
{
|
|
872
|
+
"name": "id",
|
|
873
|
+
"type": "string"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"name": "name",
|
|
877
|
+
"type": "string"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"name": "description",
|
|
881
|
+
"type": "string"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"name": "status",
|
|
885
|
+
"type": "string"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"name": "createdAt",
|
|
889
|
+
"type": "string"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"name": "prompt",
|
|
893
|
+
"type": "string"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"name": "response",
|
|
897
|
+
"type": "string"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"name": "provider",
|
|
901
|
+
"type": "string"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"name": "model",
|
|
905
|
+
"type": "string"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"name": "error",
|
|
909
|
+
"type": "string"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"name": "message",
|
|
913
|
+
"type": "string"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"name": "notificationType",
|
|
917
|
+
"type": "string"
|
|
918
|
+
}
|
|
919
|
+
]
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"event": "AgentCompletionLoadFailed",
|
|
923
|
+
"description": "Fired when AgentCompletion fails to load",
|
|
924
|
+
"scope": "internal",
|
|
925
|
+
"payload": [
|
|
926
|
+
{
|
|
927
|
+
"name": "message",
|
|
928
|
+
"type": "string"
|
|
929
|
+
}
|
|
930
|
+
]
|
|
689
931
|
}
|
|
690
932
|
],
|
|
691
933
|
"listens": [
|
|
692
934
|
{
|
|
693
935
|
"event": "GENERATED",
|
|
694
936
|
"triggers": "GENERATED",
|
|
695
|
-
"
|
|
937
|
+
"source": {
|
|
938
|
+
"kind": "trait",
|
|
939
|
+
"trait": "AgentCompletionModal"
|
|
940
|
+
}
|
|
696
941
|
}
|
|
697
942
|
],
|
|
698
943
|
"stateMachine": {
|
|
@@ -728,21 +973,32 @@
|
|
|
728
973
|
]
|
|
729
974
|
},
|
|
730
975
|
{
|
|
731
|
-
"key": "
|
|
732
|
-
"name": "
|
|
976
|
+
"key": "GENERATED",
|
|
977
|
+
"name": "Generated"
|
|
733
978
|
},
|
|
734
979
|
{
|
|
735
980
|
"key": "RESET",
|
|
736
981
|
"name": "Reset"
|
|
737
982
|
},
|
|
738
983
|
{
|
|
739
|
-
"key": "
|
|
740
|
-
"name": "
|
|
984
|
+
"key": "RETRY",
|
|
985
|
+
"name": "Retry"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"key": "SHOW",
|
|
989
|
+
"name": "Show"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"key": "AgentCompletionLoaded",
|
|
993
|
+
"name": "AgentCompletion loaded"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"key": "AgentCompletionLoadFailed",
|
|
997
|
+
"name": "AgentCompletion load failed",
|
|
741
998
|
"payload": [
|
|
742
999
|
{
|
|
743
|
-
"name": "
|
|
744
|
-
"type": "
|
|
745
|
-
"required": true
|
|
1000
|
+
"name": "message",
|
|
1001
|
+
"type": "string"
|
|
746
1002
|
}
|
|
747
1003
|
]
|
|
748
1004
|
}
|
|
@@ -755,16 +1011,22 @@
|
|
|
755
1011
|
"effects": [
|
|
756
1012
|
[
|
|
757
1013
|
"fetch",
|
|
758
|
-
"AgentCompletion"
|
|
1014
|
+
"AgentCompletion",
|
|
1015
|
+
{
|
|
1016
|
+
"emit": {
|
|
1017
|
+
"success": "AgentCompletionLoaded",
|
|
1018
|
+
"failure": "AgentCompletionLoadFailed"
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
759
1021
|
],
|
|
760
1022
|
[
|
|
761
1023
|
"render-ui",
|
|
762
1024
|
"main",
|
|
763
1025
|
{
|
|
1026
|
+
"description": "Completion is ready",
|
|
764
1027
|
"type": "empty-state",
|
|
765
1028
|
"icon": "sparkles",
|
|
766
|
-
"title": "Completion"
|
|
767
|
-
"description": "Completion is ready"
|
|
1029
|
+
"title": "Completion"
|
|
768
1030
|
}
|
|
769
1031
|
]
|
|
770
1032
|
]
|
|
@@ -845,50 +1107,50 @@
|
|
|
845
1107
|
]
|
|
846
1108
|
},
|
|
847
1109
|
{
|
|
848
|
-
"from": "
|
|
849
|
-
"to": "
|
|
850
|
-
"event": "
|
|
851
|
-
"guard": [
|
|
852
|
-
"=",
|
|
853
|
-
"@entity.status",
|
|
854
|
-
"error"
|
|
855
|
-
],
|
|
1110
|
+
"from": "completed",
|
|
1111
|
+
"to": "idle",
|
|
1112
|
+
"event": "RESET",
|
|
856
1113
|
"effects": [
|
|
857
1114
|
[
|
|
858
1115
|
"set",
|
|
859
1116
|
"@entity.status",
|
|
860
|
-
"
|
|
1117
|
+
"idle"
|
|
861
1118
|
],
|
|
862
1119
|
[
|
|
863
1120
|
"set",
|
|
864
|
-
"@entity.
|
|
1121
|
+
"@entity.response",
|
|
865
1122
|
""
|
|
866
1123
|
],
|
|
867
1124
|
[
|
|
868
|
-
"
|
|
869
|
-
"@entity.prompt"
|
|
1125
|
+
"set",
|
|
1126
|
+
"@entity.prompt",
|
|
1127
|
+
""
|
|
870
1128
|
]
|
|
871
1129
|
]
|
|
872
1130
|
},
|
|
873
1131
|
{
|
|
874
|
-
"from": "
|
|
875
|
-
"to": "
|
|
876
|
-
"event": "
|
|
1132
|
+
"from": "error",
|
|
1133
|
+
"to": "generating",
|
|
1134
|
+
"event": "RETRY",
|
|
1135
|
+
"guard": [
|
|
1136
|
+
"=",
|
|
1137
|
+
"@entity.status",
|
|
1138
|
+
"error"
|
|
1139
|
+
],
|
|
877
1140
|
"effects": [
|
|
878
1141
|
[
|
|
879
1142
|
"set",
|
|
880
1143
|
"@entity.status",
|
|
881
|
-
"
|
|
1144
|
+
"generating"
|
|
882
1145
|
],
|
|
883
1146
|
[
|
|
884
1147
|
"set",
|
|
885
|
-
"@entity.
|
|
1148
|
+
"@entity.error",
|
|
886
1149
|
""
|
|
887
1150
|
],
|
|
888
1151
|
[
|
|
889
|
-
"
|
|
890
|
-
"@entity.prompt"
|
|
891
|
-
""
|
|
1152
|
+
"agent/generate",
|
|
1153
|
+
"@entity.prompt"
|
|
892
1154
|
]
|
|
893
1155
|
]
|
|
894
1156
|
},
|
|
@@ -910,7 +1172,8 @@
|
|
|
910
1172
|
]
|
|
911
1173
|
}
|
|
912
1174
|
]
|
|
913
|
-
}
|
|
1175
|
+
},
|
|
1176
|
+
"scope": "instance"
|
|
914
1177
|
}
|
|
915
1178
|
],
|
|
916
1179
|
"pages": [
|
|
@@ -932,4 +1195,4 @@
|
|
|
932
1195
|
]
|
|
933
1196
|
}
|
|
934
1197
|
]
|
|
935
|
-
}
|
|
1198
|
+
}
|