@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-chat-thread",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-agent-chat-thread as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentChatThreadOrbital",
|
|
8
8
|
"entity": {
|
|
9
9
|
"name": "AgentChatThread",
|
|
10
|
-
"persistence": "persistent",
|
|
11
10
|
"collection": "agentchatthreads",
|
|
11
|
+
"persistence": "persistent",
|
|
12
12
|
"fields": [
|
|
13
13
|
{
|
|
14
14
|
"name": "id",
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"traits": [
|
|
62
62
|
{
|
|
63
63
|
"name": "AgentChatThreadThread",
|
|
64
|
-
"linkedEntity": "AgentChatThread",
|
|
65
64
|
"category": "interaction",
|
|
65
|
+
"linkedEntity": "AgentChatThread",
|
|
66
66
|
"emits": [
|
|
67
67
|
{
|
|
68
68
|
"event": "SEND_MESSAGE",
|
|
@@ -73,6 +73,60 @@
|
|
|
73
73
|
"type": "string"
|
|
74
74
|
}
|
|
75
75
|
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"event": "AgentChatThreadLoaded",
|
|
79
|
+
"description": "Fired when AgentChatThread finishes loading",
|
|
80
|
+
"scope": "internal",
|
|
81
|
+
"payload": [
|
|
82
|
+
{
|
|
83
|
+
"name": "id",
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "name",
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "description",
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "status",
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "createdAt",
|
|
100
|
+
"type": "string"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "role",
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "content",
|
|
108
|
+
"type": "string"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "timestamp",
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "toolName",
|
|
116
|
+
"type": "string"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"event": "AgentChatThreadLoadFailed",
|
|
122
|
+
"description": "Fired when AgentChatThread fails to load",
|
|
123
|
+
"scope": "internal",
|
|
124
|
+
"payload": [
|
|
125
|
+
{
|
|
126
|
+
"name": "message",
|
|
127
|
+
"type": "string"
|
|
128
|
+
}
|
|
129
|
+
]
|
|
76
130
|
}
|
|
77
131
|
],
|
|
78
132
|
"stateMachine": {
|
|
@@ -92,11 +146,15 @@
|
|
|
92
146
|
},
|
|
93
147
|
{
|
|
94
148
|
"key": "COMPOSE",
|
|
95
|
-
"name": "Compose
|
|
149
|
+
"name": "Compose"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"key": "CLEAR",
|
|
153
|
+
"name": "Clear"
|
|
96
154
|
},
|
|
97
155
|
{
|
|
98
156
|
"key": "SEND",
|
|
99
|
-
"name": "Send
|
|
157
|
+
"name": "Send",
|
|
100
158
|
"payload": [
|
|
101
159
|
{
|
|
102
160
|
"name": "content",
|
|
@@ -106,8 +164,22 @@
|
|
|
106
164
|
]
|
|
107
165
|
},
|
|
108
166
|
{
|
|
109
|
-
"key": "
|
|
110
|
-
"name": "
|
|
167
|
+
"key": "SEND_MESSAGE",
|
|
168
|
+
"name": "Send Message"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"key": "AgentChatThreadLoaded",
|
|
172
|
+
"name": "AgentChatThread loaded"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"key": "AgentChatThreadLoadFailed",
|
|
176
|
+
"name": "AgentChatThread load failed",
|
|
177
|
+
"payload": [
|
|
178
|
+
{
|
|
179
|
+
"name": "message",
|
|
180
|
+
"type": "string"
|
|
181
|
+
}
|
|
182
|
+
]
|
|
111
183
|
}
|
|
112
184
|
],
|
|
113
185
|
"transitions": [
|
|
@@ -118,58 +190,61 @@
|
|
|
118
190
|
"effects": [
|
|
119
191
|
[
|
|
120
192
|
"fetch",
|
|
121
|
-
"AgentChatThread"
|
|
193
|
+
"AgentChatThread",
|
|
194
|
+
{
|
|
195
|
+
"emit": {
|
|
196
|
+
"failure": "AgentChatThreadLoadFailed",
|
|
197
|
+
"success": "AgentChatThreadLoaded"
|
|
198
|
+
}
|
|
199
|
+
}
|
|
122
200
|
],
|
|
123
201
|
[
|
|
124
202
|
"render-ui",
|
|
125
203
|
"main",
|
|
126
204
|
{
|
|
127
|
-
"type": "stack",
|
|
128
205
|
"direction": "vertical",
|
|
129
|
-
"gap": "lg",
|
|
130
206
|
"children": [
|
|
131
207
|
{
|
|
132
|
-
"type": "stack",
|
|
133
|
-
"direction": "horizontal",
|
|
134
|
-
"gap": "sm",
|
|
135
|
-
"justify": "space-between",
|
|
136
|
-
"align": "center",
|
|
137
208
|
"children": [
|
|
138
209
|
{
|
|
139
|
-
"type": "stack",
|
|
140
210
|
"direction": "horizontal",
|
|
141
211
|
"gap": "sm",
|
|
142
212
|
"align": "center",
|
|
143
213
|
"children": [
|
|
144
214
|
{
|
|
215
|
+
"size": "lg",
|
|
145
216
|
"type": "icon",
|
|
146
|
-
"name": "message-circle"
|
|
147
|
-
"size": "lg"
|
|
217
|
+
"name": "message-circle"
|
|
148
218
|
},
|
|
149
219
|
{
|
|
150
|
-
"type": "typography",
|
|
151
220
|
"content": "AgentChatThread Thread",
|
|
152
|
-
"variant": "h2"
|
|
221
|
+
"variant": "h2",
|
|
222
|
+
"type": "typography"
|
|
153
223
|
}
|
|
154
|
-
]
|
|
224
|
+
],
|
|
225
|
+
"type": "stack"
|
|
155
226
|
},
|
|
156
227
|
{
|
|
157
|
-
"type": "button",
|
|
158
228
|
"label": "New Message",
|
|
159
|
-
"
|
|
229
|
+
"icon": "plus",
|
|
230
|
+
"type": "button",
|
|
160
231
|
"variant": "primary",
|
|
161
|
-
"
|
|
232
|
+
"event": "COMPOSE"
|
|
162
233
|
}
|
|
163
|
-
]
|
|
234
|
+
],
|
|
235
|
+
"type": "stack",
|
|
236
|
+
"gap": "sm",
|
|
237
|
+
"direction": "horizontal",
|
|
238
|
+
"justify": "space-between",
|
|
239
|
+
"align": "center"
|
|
164
240
|
},
|
|
165
241
|
{
|
|
166
242
|
"type": "divider"
|
|
167
243
|
},
|
|
168
244
|
{
|
|
169
|
-
"type": "data-list",
|
|
170
245
|
"entity": "AgentChatThread",
|
|
171
|
-
"emptyIcon": "message-circle",
|
|
172
246
|
"emptyTitle": "No messages yet",
|
|
247
|
+
"emptyIcon": "message-circle",
|
|
173
248
|
"emptyDescription": "Start a conversation by sending a message.",
|
|
174
249
|
"renderItem": [
|
|
175
250
|
"fn",
|
|
@@ -181,37 +256,40 @@
|
|
|
181
256
|
"children": [
|
|
182
257
|
{
|
|
183
258
|
"type": "stack",
|
|
184
|
-
"direction": "horizontal",
|
|
185
|
-
"gap": "sm",
|
|
186
|
-
"align": "center",
|
|
187
259
|
"children": [
|
|
188
260
|
{
|
|
189
|
-
"
|
|
190
|
-
"
|
|
261
|
+
"label": "@item.role",
|
|
262
|
+
"type": "badge"
|
|
191
263
|
},
|
|
192
264
|
{
|
|
193
|
-
"type": "badge",
|
|
194
265
|
"label": "@item.status",
|
|
195
|
-
"variant": "outline"
|
|
266
|
+
"variant": "outline",
|
|
267
|
+
"type": "badge"
|
|
196
268
|
},
|
|
197
269
|
{
|
|
198
|
-
"type": "typography",
|
|
199
270
|
"variant": "caption",
|
|
200
271
|
"color": "muted",
|
|
272
|
+
"type": "typography",
|
|
201
273
|
"content": "@item.timestamp"
|
|
202
274
|
}
|
|
203
|
-
]
|
|
275
|
+
],
|
|
276
|
+
"gap": "sm",
|
|
277
|
+
"direction": "horizontal",
|
|
278
|
+
"align": "center"
|
|
204
279
|
},
|
|
205
280
|
{
|
|
206
|
-
"
|
|
281
|
+
"content": "@item.content",
|
|
207
282
|
"variant": "body",
|
|
208
|
-
"
|
|
283
|
+
"type": "typography"
|
|
209
284
|
}
|
|
210
285
|
]
|
|
211
286
|
}
|
|
212
|
-
]
|
|
287
|
+
],
|
|
288
|
+
"type": "data-list"
|
|
213
289
|
}
|
|
214
|
-
]
|
|
290
|
+
],
|
|
291
|
+
"gap": "lg",
|
|
292
|
+
"type": "stack"
|
|
215
293
|
}
|
|
216
294
|
]
|
|
217
295
|
]
|
|
@@ -225,16 +303,8 @@
|
|
|
225
303
|
"render-ui",
|
|
226
304
|
"main",
|
|
227
305
|
{
|
|
228
|
-
"type": "stack",
|
|
229
|
-
"direction": "vertical",
|
|
230
|
-
"gap": "lg",
|
|
231
306
|
"children": [
|
|
232
307
|
{
|
|
233
|
-
"type": "stack",
|
|
234
|
-
"direction": "horizontal",
|
|
235
|
-
"gap": "sm",
|
|
236
|
-
"justify": "space-between",
|
|
237
|
-
"align": "center",
|
|
238
308
|
"children": [
|
|
239
309
|
{
|
|
240
310
|
"type": "stack",
|
|
@@ -243,9 +313,9 @@
|
|
|
243
313
|
"align": "center",
|
|
244
314
|
"children": [
|
|
245
315
|
{
|
|
316
|
+
"size": "lg",
|
|
246
317
|
"type": "icon",
|
|
247
|
-
"name": "message-circle"
|
|
248
|
-
"size": "lg"
|
|
318
|
+
"name": "message-circle"
|
|
249
319
|
},
|
|
250
320
|
{
|
|
251
321
|
"type": "typography",
|
|
@@ -255,187 +325,170 @@
|
|
|
255
325
|
]
|
|
256
326
|
},
|
|
257
327
|
{
|
|
258
|
-
"type": "button",
|
|
259
328
|
"label": "New Message",
|
|
260
329
|
"event": "COMPOSE",
|
|
261
330
|
"variant": "primary",
|
|
262
331
|
"icon": "plus",
|
|
332
|
+
"type": "button",
|
|
263
333
|
"disabled": true
|
|
264
334
|
}
|
|
265
|
-
]
|
|
335
|
+
],
|
|
336
|
+
"justify": "space-between",
|
|
337
|
+
"direction": "horizontal",
|
|
338
|
+
"type": "stack",
|
|
339
|
+
"gap": "sm",
|
|
340
|
+
"align": "center"
|
|
266
341
|
},
|
|
267
342
|
{
|
|
268
343
|
"type": "divider"
|
|
269
344
|
},
|
|
270
345
|
{
|
|
271
|
-
"type": "data-list",
|
|
272
346
|
"entity": "AgentChatThread",
|
|
273
|
-
"emptyIcon": "message-circle",
|
|
274
|
-
"emptyTitle": "No messages yet",
|
|
275
347
|
"emptyDescription": "Start a conversation by sending a message.",
|
|
276
348
|
"renderItem": [
|
|
277
349
|
"fn",
|
|
278
350
|
"item",
|
|
279
351
|
{
|
|
280
|
-
"type": "stack",
|
|
281
352
|
"direction": "vertical",
|
|
282
353
|
"gap": "xs",
|
|
354
|
+
"type": "stack",
|
|
283
355
|
"children": [
|
|
284
356
|
{
|
|
285
|
-
"
|
|
357
|
+
"align": "center",
|
|
286
358
|
"direction": "horizontal",
|
|
359
|
+
"type": "stack",
|
|
287
360
|
"gap": "sm",
|
|
288
|
-
"align": "center",
|
|
289
361
|
"children": [
|
|
290
362
|
{
|
|
291
|
-
"
|
|
292
|
-
"
|
|
363
|
+
"label": "@item.role",
|
|
364
|
+
"type": "badge"
|
|
293
365
|
},
|
|
294
366
|
{
|
|
295
|
-
"type": "badge",
|
|
296
367
|
"label": "@item.status",
|
|
297
|
-
"variant": "outline"
|
|
368
|
+
"variant": "outline",
|
|
369
|
+
"type": "badge"
|
|
298
370
|
},
|
|
299
371
|
{
|
|
300
|
-
"
|
|
301
|
-
"variant": "caption",
|
|
372
|
+
"content": "@item.timestamp",
|
|
302
373
|
"color": "muted",
|
|
303
|
-
"
|
|
374
|
+
"type": "typography",
|
|
375
|
+
"variant": "caption"
|
|
304
376
|
}
|
|
305
377
|
]
|
|
306
378
|
},
|
|
307
379
|
{
|
|
308
380
|
"type": "typography",
|
|
309
|
-
"
|
|
310
|
-
"
|
|
381
|
+
"content": "@item.content",
|
|
382
|
+
"variant": "body"
|
|
311
383
|
}
|
|
312
384
|
]
|
|
313
385
|
}
|
|
314
|
-
]
|
|
386
|
+
],
|
|
387
|
+
"emptyIcon": "message-circle",
|
|
388
|
+
"type": "data-list",
|
|
389
|
+
"emptyTitle": "No messages yet"
|
|
315
390
|
},
|
|
316
391
|
{
|
|
317
|
-
"type": "form-section",
|
|
318
392
|
"title": "Compose Message",
|
|
393
|
+
"type": "form-section",
|
|
319
394
|
"children": [
|
|
320
395
|
{
|
|
321
|
-
"type": "textarea",
|
|
322
396
|
"label": "Message",
|
|
397
|
+
"placeholder": "Type your message...",
|
|
323
398
|
"bind": "@entity.content",
|
|
324
|
-
"
|
|
399
|
+
"type": "textarea"
|
|
325
400
|
},
|
|
326
401
|
{
|
|
327
|
-
"type": "stack",
|
|
328
|
-
"direction": "horizontal",
|
|
329
|
-
"gap": "sm",
|
|
330
402
|
"children": [
|
|
331
403
|
{
|
|
332
|
-
"type": "button",
|
|
333
|
-
"label": "Send",
|
|
334
|
-
"event": "SEND",
|
|
335
404
|
"variant": "primary",
|
|
336
|
-
"
|
|
405
|
+
"event": "SEND",
|
|
406
|
+
"icon": "send",
|
|
407
|
+
"type": "button",
|
|
408
|
+
"label": "Send"
|
|
337
409
|
}
|
|
338
|
-
]
|
|
410
|
+
],
|
|
411
|
+
"direction": "horizontal",
|
|
412
|
+
"gap": "sm",
|
|
413
|
+
"type": "stack"
|
|
339
414
|
}
|
|
340
415
|
]
|
|
341
416
|
}
|
|
342
|
-
]
|
|
417
|
+
],
|
|
418
|
+
"type": "stack",
|
|
419
|
+
"gap": "lg",
|
|
420
|
+
"direction": "vertical"
|
|
343
421
|
}
|
|
344
422
|
]
|
|
345
423
|
]
|
|
346
424
|
},
|
|
347
425
|
{
|
|
348
|
-
"from": "
|
|
426
|
+
"from": "idle",
|
|
349
427
|
"to": "idle",
|
|
350
|
-
"event": "
|
|
428
|
+
"event": "CLEAR",
|
|
351
429
|
"effects": [
|
|
352
430
|
[
|
|
353
|
-
"
|
|
354
|
-
"
|
|
355
|
-
"
|
|
356
|
-
],
|
|
357
|
-
[
|
|
358
|
-
"set",
|
|
359
|
-
"@entity.role",
|
|
360
|
-
"user"
|
|
361
|
-
],
|
|
362
|
-
[
|
|
363
|
-
"set",
|
|
364
|
-
"@entity.timestamp",
|
|
365
|
-
"@now"
|
|
366
|
-
],
|
|
367
|
-
[
|
|
368
|
-
"set",
|
|
369
|
-
"@entity.status",
|
|
370
|
-
"sent"
|
|
431
|
+
"persist",
|
|
432
|
+
"delete",
|
|
433
|
+
"AgentChatThread"
|
|
371
434
|
],
|
|
372
435
|
[
|
|
373
|
-
"
|
|
374
|
-
"create",
|
|
436
|
+
"fetch",
|
|
375
437
|
"AgentChatThread",
|
|
376
438
|
{
|
|
377
|
-
"
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
439
|
+
"emit": {
|
|
440
|
+
"success": "AgentChatThreadLoaded",
|
|
441
|
+
"failure": "AgentChatThreadLoadFailed"
|
|
442
|
+
}
|
|
381
443
|
}
|
|
382
444
|
],
|
|
383
|
-
[
|
|
384
|
-
"emit",
|
|
385
|
-
"SEND_MESSAGE"
|
|
386
|
-
],
|
|
387
|
-
[
|
|
388
|
-
"fetch",
|
|
389
|
-
"AgentChatThread"
|
|
390
|
-
],
|
|
391
445
|
[
|
|
392
446
|
"render-ui",
|
|
393
447
|
"main",
|
|
394
448
|
{
|
|
395
|
-
"type": "stack",
|
|
396
|
-
"direction": "vertical",
|
|
397
449
|
"gap": "lg",
|
|
450
|
+
"direction": "vertical",
|
|
398
451
|
"children": [
|
|
399
452
|
{
|
|
400
|
-
"type": "stack",
|
|
401
|
-
"direction": "horizontal",
|
|
402
|
-
"gap": "sm",
|
|
403
|
-
"justify": "space-between",
|
|
404
453
|
"align": "center",
|
|
454
|
+
"gap": "sm",
|
|
405
455
|
"children": [
|
|
406
456
|
{
|
|
407
457
|
"type": "stack",
|
|
408
|
-
"direction": "horizontal",
|
|
409
|
-
"gap": "sm",
|
|
410
458
|
"align": "center",
|
|
411
459
|
"children": [
|
|
412
460
|
{
|
|
413
461
|
"type": "icon",
|
|
414
|
-
"
|
|
415
|
-
"
|
|
462
|
+
"size": "lg",
|
|
463
|
+
"name": "message-circle"
|
|
416
464
|
},
|
|
417
465
|
{
|
|
418
|
-
"type": "typography",
|
|
419
466
|
"content": "AgentChatThread Thread",
|
|
467
|
+
"type": "typography",
|
|
420
468
|
"variant": "h2"
|
|
421
469
|
}
|
|
422
|
-
]
|
|
470
|
+
],
|
|
471
|
+
"direction": "horizontal",
|
|
472
|
+
"gap": "sm"
|
|
423
473
|
},
|
|
424
474
|
{
|
|
425
|
-
"type": "button",
|
|
426
|
-
"label": "New Message",
|
|
427
475
|
"event": "COMPOSE",
|
|
476
|
+
"type": "button",
|
|
477
|
+
"icon": "plus",
|
|
428
478
|
"variant": "primary",
|
|
429
|
-
"
|
|
479
|
+
"label": "New Message"
|
|
430
480
|
}
|
|
431
|
-
]
|
|
481
|
+
],
|
|
482
|
+
"direction": "horizontal",
|
|
483
|
+
"justify": "space-between",
|
|
484
|
+
"type": "stack"
|
|
432
485
|
},
|
|
433
486
|
{
|
|
434
487
|
"type": "divider"
|
|
435
488
|
},
|
|
436
489
|
{
|
|
437
|
-
"type": "data-list",
|
|
438
490
|
"entity": "AgentChatThread",
|
|
491
|
+
"type": "data-list",
|
|
439
492
|
"emptyIcon": "message-circle",
|
|
440
493
|
"emptyTitle": "No messages yet",
|
|
441
494
|
"emptyDescription": "Start a conversation by sending a message.",
|
|
@@ -444,8 +497,6 @@
|
|
|
444
497
|
"item",
|
|
445
498
|
{
|
|
446
499
|
"type": "stack",
|
|
447
|
-
"direction": "vertical",
|
|
448
|
-
"gap": "xs",
|
|
449
500
|
"children": [
|
|
450
501
|
{
|
|
451
502
|
"type": "stack",
|
|
@@ -464,8 +515,8 @@
|
|
|
464
515
|
},
|
|
465
516
|
{
|
|
466
517
|
"type": "typography",
|
|
467
|
-
"variant": "caption",
|
|
468
518
|
"color": "muted",
|
|
519
|
+
"variant": "caption",
|
|
469
520
|
"content": "@item.timestamp"
|
|
470
521
|
}
|
|
471
522
|
]
|
|
@@ -475,53 +526,87 @@
|
|
|
475
526
|
"variant": "body",
|
|
476
527
|
"content": "@item.content"
|
|
477
528
|
}
|
|
478
|
-
]
|
|
529
|
+
],
|
|
530
|
+
"direction": "vertical",
|
|
531
|
+
"gap": "xs"
|
|
479
532
|
}
|
|
480
533
|
]
|
|
481
534
|
}
|
|
482
|
-
]
|
|
535
|
+
],
|
|
536
|
+
"type": "stack"
|
|
483
537
|
}
|
|
484
538
|
]
|
|
485
539
|
]
|
|
486
540
|
},
|
|
487
541
|
{
|
|
488
|
-
"from": "
|
|
542
|
+
"from": "composing",
|
|
489
543
|
"to": "idle",
|
|
490
|
-
"event": "
|
|
544
|
+
"event": "SEND",
|
|
491
545
|
"effects": [
|
|
546
|
+
[
|
|
547
|
+
"set",
|
|
548
|
+
"@entity.content",
|
|
549
|
+
"@payload.content"
|
|
550
|
+
],
|
|
551
|
+
[
|
|
552
|
+
"set",
|
|
553
|
+
"@entity.role",
|
|
554
|
+
"user"
|
|
555
|
+
],
|
|
556
|
+
[
|
|
557
|
+
"set",
|
|
558
|
+
"@entity.timestamp",
|
|
559
|
+
"@now"
|
|
560
|
+
],
|
|
561
|
+
[
|
|
562
|
+
"set",
|
|
563
|
+
"@entity.status",
|
|
564
|
+
"sent"
|
|
565
|
+
],
|
|
492
566
|
[
|
|
493
567
|
"persist",
|
|
494
|
-
"
|
|
495
|
-
"AgentChatThread"
|
|
568
|
+
"create",
|
|
569
|
+
"AgentChatThread",
|
|
570
|
+
{
|
|
571
|
+
"timestamp": "@now",
|
|
572
|
+
"content": "@payload.content",
|
|
573
|
+
"status": "sent",
|
|
574
|
+
"role": "user"
|
|
575
|
+
}
|
|
576
|
+
],
|
|
577
|
+
[
|
|
578
|
+
"emit",
|
|
579
|
+
"SEND_MESSAGE"
|
|
496
580
|
],
|
|
497
581
|
[
|
|
498
582
|
"fetch",
|
|
499
|
-
"AgentChatThread"
|
|
583
|
+
"AgentChatThread",
|
|
584
|
+
{
|
|
585
|
+
"emit": {
|
|
586
|
+
"success": "AgentChatThreadLoaded",
|
|
587
|
+
"failure": "AgentChatThreadLoadFailed"
|
|
588
|
+
}
|
|
589
|
+
}
|
|
500
590
|
],
|
|
501
591
|
[
|
|
502
592
|
"render-ui",
|
|
503
593
|
"main",
|
|
504
594
|
{
|
|
505
|
-
"type": "stack",
|
|
506
595
|
"direction": "vertical",
|
|
596
|
+
"type": "stack",
|
|
507
597
|
"gap": "lg",
|
|
508
598
|
"children": [
|
|
509
599
|
{
|
|
510
|
-
"type": "stack",
|
|
511
600
|
"direction": "horizontal",
|
|
512
|
-
"
|
|
513
|
-
"justify": "space-between",
|
|
601
|
+
"type": "stack",
|
|
514
602
|
"align": "center",
|
|
515
603
|
"children": [
|
|
516
604
|
{
|
|
517
|
-
"type": "stack",
|
|
518
605
|
"direction": "horizontal",
|
|
519
|
-
"gap": "sm",
|
|
520
|
-
"align": "center",
|
|
521
606
|
"children": [
|
|
522
607
|
{
|
|
523
|
-
"type": "icon",
|
|
524
608
|
"name": "message-circle",
|
|
609
|
+
"type": "icon",
|
|
525
610
|
"size": "lg"
|
|
526
611
|
},
|
|
527
612
|
{
|
|
@@ -529,7 +614,10 @@
|
|
|
529
614
|
"content": "AgentChatThread Thread",
|
|
530
615
|
"variant": "h2"
|
|
531
616
|
}
|
|
532
|
-
]
|
|
617
|
+
],
|
|
618
|
+
"type": "stack",
|
|
619
|
+
"gap": "sm",
|
|
620
|
+
"align": "center"
|
|
533
621
|
},
|
|
534
622
|
{
|
|
535
623
|
"type": "button",
|
|
@@ -538,56 +626,58 @@
|
|
|
538
626
|
"variant": "primary",
|
|
539
627
|
"icon": "plus"
|
|
540
628
|
}
|
|
541
|
-
]
|
|
629
|
+
],
|
|
630
|
+
"justify": "space-between",
|
|
631
|
+
"gap": "sm"
|
|
542
632
|
},
|
|
543
633
|
{
|
|
544
634
|
"type": "divider"
|
|
545
635
|
},
|
|
546
636
|
{
|
|
547
|
-
"type": "data-list",
|
|
548
|
-
"entity": "AgentChatThread",
|
|
549
|
-
"emptyIcon": "message-circle",
|
|
550
|
-
"emptyTitle": "No messages yet",
|
|
551
637
|
"emptyDescription": "Start a conversation by sending a message.",
|
|
552
638
|
"renderItem": [
|
|
553
639
|
"fn",
|
|
554
640
|
"item",
|
|
555
641
|
{
|
|
556
|
-
"type": "stack",
|
|
557
642
|
"direction": "vertical",
|
|
643
|
+
"type": "stack",
|
|
558
644
|
"gap": "xs",
|
|
559
645
|
"children": [
|
|
560
646
|
{
|
|
561
|
-
"type": "stack",
|
|
562
|
-
"direction": "horizontal",
|
|
563
647
|
"gap": "sm",
|
|
564
|
-
"align": "center",
|
|
565
648
|
"children": [
|
|
566
649
|
{
|
|
567
|
-
"
|
|
568
|
-
"
|
|
650
|
+
"label": "@item.role",
|
|
651
|
+
"type": "badge"
|
|
569
652
|
},
|
|
570
653
|
{
|
|
571
654
|
"type": "badge",
|
|
572
|
-
"
|
|
573
|
-
"
|
|
655
|
+
"variant": "outline",
|
|
656
|
+
"label": "@item.status"
|
|
574
657
|
},
|
|
575
658
|
{
|
|
659
|
+
"color": "muted",
|
|
576
660
|
"type": "typography",
|
|
577
661
|
"variant": "caption",
|
|
578
|
-
"color": "muted",
|
|
579
662
|
"content": "@item.timestamp"
|
|
580
663
|
}
|
|
581
|
-
]
|
|
664
|
+
],
|
|
665
|
+
"type": "stack",
|
|
666
|
+
"direction": "horizontal",
|
|
667
|
+
"align": "center"
|
|
582
668
|
},
|
|
583
669
|
{
|
|
584
670
|
"type": "typography",
|
|
585
|
-
"
|
|
586
|
-
"
|
|
671
|
+
"content": "@item.content",
|
|
672
|
+
"variant": "body"
|
|
587
673
|
}
|
|
588
674
|
]
|
|
589
675
|
}
|
|
590
|
-
]
|
|
676
|
+
],
|
|
677
|
+
"type": "data-list",
|
|
678
|
+
"entity": "AgentChatThread",
|
|
679
|
+
"emptyTitle": "No messages yet",
|
|
680
|
+
"emptyIcon": "message-circle"
|
|
591
681
|
}
|
|
592
682
|
]
|
|
593
683
|
}
|
|
@@ -606,7 +696,13 @@
|
|
|
606
696
|
],
|
|
607
697
|
[
|
|
608
698
|
"fetch",
|
|
609
|
-
"AgentChatThread"
|
|
699
|
+
"AgentChatThread",
|
|
700
|
+
{
|
|
701
|
+
"emit": {
|
|
702
|
+
"success": "AgentChatThreadLoaded",
|
|
703
|
+
"failure": "AgentChatThreadLoadFailed"
|
|
704
|
+
}
|
|
705
|
+
}
|
|
610
706
|
],
|
|
611
707
|
[
|
|
612
708
|
"render-ui",
|
|
@@ -617,36 +713,36 @@
|
|
|
617
713
|
"gap": "lg",
|
|
618
714
|
"children": [
|
|
619
715
|
{
|
|
620
|
-
"type": "stack",
|
|
621
716
|
"direction": "horizontal",
|
|
622
|
-
"gap": "sm",
|
|
623
717
|
"justify": "space-between",
|
|
624
718
|
"align": "center",
|
|
719
|
+
"gap": "sm",
|
|
720
|
+
"type": "stack",
|
|
625
721
|
"children": [
|
|
626
722
|
{
|
|
627
|
-
"type": "stack",
|
|
628
|
-
"direction": "horizontal",
|
|
629
|
-
"gap": "sm",
|
|
630
|
-
"align": "center",
|
|
631
723
|
"children": [
|
|
632
724
|
{
|
|
633
|
-
"
|
|
725
|
+
"size": "lg",
|
|
634
726
|
"name": "message-circle",
|
|
635
|
-
"
|
|
727
|
+
"type": "icon"
|
|
636
728
|
},
|
|
637
729
|
{
|
|
638
730
|
"type": "typography",
|
|
639
731
|
"content": "AgentChatThread Thread",
|
|
640
732
|
"variant": "h2"
|
|
641
733
|
}
|
|
642
|
-
]
|
|
734
|
+
],
|
|
735
|
+
"type": "stack",
|
|
736
|
+
"gap": "sm",
|
|
737
|
+
"align": "center",
|
|
738
|
+
"direction": "horizontal"
|
|
643
739
|
},
|
|
644
740
|
{
|
|
645
741
|
"type": "button",
|
|
646
|
-
"
|
|
742
|
+
"icon": "plus",
|
|
647
743
|
"event": "COMPOSE",
|
|
648
|
-
"
|
|
649
|
-
"
|
|
744
|
+
"label": "New Message",
|
|
745
|
+
"variant": "primary"
|
|
650
746
|
}
|
|
651
747
|
]
|
|
652
748
|
},
|
|
@@ -654,39 +750,36 @@
|
|
|
654
750
|
"type": "divider"
|
|
655
751
|
},
|
|
656
752
|
{
|
|
657
|
-
"type": "data-list",
|
|
658
753
|
"entity": "AgentChatThread",
|
|
659
|
-
"emptyIcon": "message-circle",
|
|
660
|
-
"emptyTitle": "No messages yet",
|
|
661
754
|
"emptyDescription": "Start a conversation by sending a message.",
|
|
755
|
+
"emptyTitle": "No messages yet",
|
|
756
|
+
"type": "data-list",
|
|
757
|
+
"emptyIcon": "message-circle",
|
|
662
758
|
"renderItem": [
|
|
663
759
|
"fn",
|
|
664
760
|
"item",
|
|
665
761
|
{
|
|
666
|
-
"type": "stack",
|
|
667
|
-
"direction": "vertical",
|
|
668
|
-
"gap": "xs",
|
|
669
762
|
"children": [
|
|
670
763
|
{
|
|
671
|
-
"type": "stack",
|
|
672
764
|
"direction": "horizontal",
|
|
673
|
-
"gap": "sm",
|
|
674
765
|
"align": "center",
|
|
766
|
+
"gap": "sm",
|
|
767
|
+
"type": "stack",
|
|
675
768
|
"children": [
|
|
676
769
|
{
|
|
677
|
-
"
|
|
678
|
-
"
|
|
770
|
+
"label": "@item.role",
|
|
771
|
+
"type": "badge"
|
|
679
772
|
},
|
|
680
773
|
{
|
|
681
|
-
"
|
|
774
|
+
"variant": "outline",
|
|
682
775
|
"label": "@item.status",
|
|
683
|
-
"
|
|
776
|
+
"type": "badge"
|
|
684
777
|
},
|
|
685
778
|
{
|
|
686
|
-
"type": "typography",
|
|
687
|
-
"variant": "caption",
|
|
688
779
|
"color": "muted",
|
|
689
|
-
"content": "@item.timestamp"
|
|
780
|
+
"content": "@item.timestamp",
|
|
781
|
+
"type": "typography",
|
|
782
|
+
"variant": "caption"
|
|
690
783
|
}
|
|
691
784
|
]
|
|
692
785
|
},
|
|
@@ -695,7 +788,10 @@
|
|
|
695
788
|
"variant": "body",
|
|
696
789
|
"content": "@item.content"
|
|
697
790
|
}
|
|
698
|
-
]
|
|
791
|
+
],
|
|
792
|
+
"type": "stack",
|
|
793
|
+
"direction": "vertical",
|
|
794
|
+
"gap": "xs"
|
|
699
795
|
}
|
|
700
796
|
]
|
|
701
797
|
}
|
|
@@ -705,7 +801,8 @@
|
|
|
705
801
|
]
|
|
706
802
|
}
|
|
707
803
|
]
|
|
708
|
-
}
|
|
804
|
+
},
|
|
805
|
+
"scope": "collection"
|
|
709
806
|
}
|
|
710
807
|
],
|
|
711
808
|
"pages": [
|
|
@@ -721,4 +818,4 @@
|
|
|
721
818
|
]
|
|
722
819
|
}
|
|
723
820
|
]
|
|
724
|
-
}
|
|
821
|
+
}
|