@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-rag",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "std-agent-rag
|
|
4
|
+
"description": "std-agent-rag as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentRagOrbital",
|
|
@@ -71,12 +71,12 @@
|
|
|
71
71
|
{
|
|
72
72
|
"name": "memoryHits",
|
|
73
73
|
"type": "number",
|
|
74
|
-
"default": 0
|
|
74
|
+
"default": 0.0
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
77
|
"name": "searchHits",
|
|
78
78
|
"type": "number",
|
|
79
|
-
"default": 0
|
|
79
|
+
"default": 0.0
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"name": "error",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
{
|
|
102
102
|
"name": "strength",
|
|
103
103
|
"type": "number",
|
|
104
|
-
"default": 1
|
|
104
|
+
"default": 1.0
|
|
105
105
|
},
|
|
106
106
|
{
|
|
107
107
|
"name": "pinned",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
{
|
|
117
117
|
"name": "resultCount",
|
|
118
118
|
"type": "number",
|
|
119
|
-
"default": 0
|
|
119
|
+
"default": 0.0
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
"name": "results",
|
|
@@ -143,8 +143,8 @@
|
|
|
143
143
|
"traits": [
|
|
144
144
|
{
|
|
145
145
|
"name": "AgentRagRag",
|
|
146
|
-
"linkedEntity": "AgentRag",
|
|
147
146
|
"category": "interaction",
|
|
147
|
+
"linkedEntity": "AgentRag",
|
|
148
148
|
"stateMachine": {
|
|
149
149
|
"states": [
|
|
150
150
|
{
|
|
@@ -192,22 +192,22 @@
|
|
|
192
192
|
]
|
|
193
193
|
},
|
|
194
194
|
{
|
|
195
|
-
"key": "
|
|
196
|
-
"name": "
|
|
195
|
+
"key": "FAILED",
|
|
196
|
+
"name": "Failed",
|
|
197
197
|
"payload": [
|
|
198
198
|
{
|
|
199
|
-
"name": "
|
|
199
|
+
"name": "error",
|
|
200
200
|
"type": "string",
|
|
201
201
|
"required": true
|
|
202
202
|
}
|
|
203
203
|
]
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
|
-
"key": "
|
|
207
|
-
"name": "
|
|
206
|
+
"key": "GENERATION_DONE",
|
|
207
|
+
"name": "Generation Done",
|
|
208
208
|
"payload": [
|
|
209
209
|
{
|
|
210
|
-
"name": "
|
|
210
|
+
"name": "response",
|
|
211
211
|
"type": "string",
|
|
212
212
|
"required": true
|
|
213
213
|
}
|
|
@@ -228,58 +228,58 @@
|
|
|
228
228
|
"render-ui",
|
|
229
229
|
"main",
|
|
230
230
|
{
|
|
231
|
-
"type": "stack",
|
|
232
|
-
"direction": "vertical",
|
|
233
|
-
"gap": "lg",
|
|
234
231
|
"children": [
|
|
235
232
|
{
|
|
236
|
-
"type": "stack",
|
|
237
|
-
"direction": "horizontal",
|
|
238
|
-
"gap": "sm",
|
|
239
|
-
"align": "center",
|
|
240
233
|
"children": [
|
|
241
234
|
{
|
|
235
|
+
"size": "lg",
|
|
242
236
|
"type": "icon",
|
|
243
|
-
"name": "brain"
|
|
244
|
-
"size": "lg"
|
|
237
|
+
"name": "brain"
|
|
245
238
|
},
|
|
246
239
|
{
|
|
247
|
-
"type": "typography",
|
|
248
240
|
"content": "RAG Pipeline",
|
|
249
|
-
"variant": "h2"
|
|
241
|
+
"variant": "h2",
|
|
242
|
+
"type": "typography"
|
|
250
243
|
}
|
|
251
|
-
]
|
|
244
|
+
],
|
|
245
|
+
"align": "center",
|
|
246
|
+
"direction": "horizontal",
|
|
247
|
+
"gap": "sm",
|
|
248
|
+
"type": "stack"
|
|
252
249
|
},
|
|
253
250
|
{
|
|
254
251
|
"type": "divider"
|
|
255
252
|
},
|
|
256
253
|
{
|
|
257
|
-
"type": "card",
|
|
258
254
|
"children": [
|
|
259
255
|
{
|
|
260
256
|
"type": "stack",
|
|
261
257
|
"direction": "vertical",
|
|
262
|
-
"gap": "md",
|
|
263
258
|
"children": [
|
|
264
259
|
{
|
|
265
260
|
"type": "typography",
|
|
266
|
-
"
|
|
267
|
-
"
|
|
261
|
+
"variant": "body",
|
|
262
|
+
"content": "Enter a query to retrieve context and generate a response"
|
|
268
263
|
},
|
|
269
264
|
{
|
|
270
|
-
"type": "form-section",
|
|
271
265
|
"entity": "AgentRag",
|
|
272
|
-
"mode": "edit",
|
|
273
266
|
"submitEvent": "GENERATE",
|
|
267
|
+
"type": "form-section",
|
|
268
|
+
"mode": "edit",
|
|
274
269
|
"fields": [
|
|
275
270
|
"query"
|
|
276
271
|
]
|
|
277
272
|
}
|
|
278
|
-
]
|
|
273
|
+
],
|
|
274
|
+
"gap": "md"
|
|
279
275
|
}
|
|
280
|
-
]
|
|
276
|
+
],
|
|
277
|
+
"type": "card"
|
|
281
278
|
}
|
|
282
|
-
]
|
|
279
|
+
],
|
|
280
|
+
"gap": "lg",
|
|
281
|
+
"type": "stack",
|
|
282
|
+
"direction": "vertical"
|
|
283
283
|
}
|
|
284
284
|
]
|
|
285
285
|
]
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
[
|
|
298
298
|
"agent/recall",
|
|
299
299
|
"@entity.query",
|
|
300
|
-
5
|
|
300
|
+
5.0
|
|
301
301
|
],
|
|
302
302
|
[
|
|
303
303
|
"agent/search-code",
|
|
@@ -308,14 +308,14 @@
|
|
|
308
308
|
"main",
|
|
309
309
|
{
|
|
310
310
|
"type": "stack",
|
|
311
|
-
"direction": "vertical",
|
|
312
311
|
"gap": "lg",
|
|
312
|
+
"direction": "vertical",
|
|
313
313
|
"align": "center",
|
|
314
314
|
"children": [
|
|
315
315
|
{
|
|
316
|
+
"size": "lg",
|
|
316
317
|
"type": "icon",
|
|
317
|
-
"name": "search"
|
|
318
|
-
"size": "lg"
|
|
318
|
+
"name": "search"
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
321
|
"type": "typography",
|
|
@@ -323,14 +323,12 @@
|
|
|
323
323
|
"variant": "h3"
|
|
324
324
|
},
|
|
325
325
|
{
|
|
326
|
-
"
|
|
327
|
-
"
|
|
326
|
+
"size": "lg",
|
|
327
|
+
"type": "spinner"
|
|
328
328
|
},
|
|
329
329
|
{
|
|
330
330
|
"type": "stack",
|
|
331
331
|
"direction": "horizontal",
|
|
332
|
-
"gap": "md",
|
|
333
|
-
"justify": "center",
|
|
334
332
|
"children": [
|
|
335
333
|
{
|
|
336
334
|
"type": "badge",
|
|
@@ -340,7 +338,9 @@
|
|
|
340
338
|
"type": "badge",
|
|
341
339
|
"label": "Searching code"
|
|
342
340
|
}
|
|
343
|
-
]
|
|
341
|
+
],
|
|
342
|
+
"gap": "md",
|
|
343
|
+
"justify": "center"
|
|
344
344
|
}
|
|
345
345
|
]
|
|
346
346
|
}
|
|
@@ -387,50 +387,107 @@
|
|
|
387
387
|
"render-ui",
|
|
388
388
|
"main",
|
|
389
389
|
{
|
|
390
|
-
"type": "stack",
|
|
391
|
-
"direction": "vertical",
|
|
392
|
-
"gap": "lg",
|
|
393
|
-
"align": "center",
|
|
394
390
|
"children": [
|
|
395
391
|
{
|
|
396
|
-
"type": "icon",
|
|
397
392
|
"name": "cpu",
|
|
393
|
+
"type": "icon",
|
|
398
394
|
"size": "lg"
|
|
399
395
|
},
|
|
400
396
|
{
|
|
401
397
|
"type": "typography",
|
|
402
|
-
"
|
|
403
|
-
"
|
|
398
|
+
"variant": "h3",
|
|
399
|
+
"content": "Generating response..."
|
|
404
400
|
},
|
|
405
401
|
{
|
|
406
402
|
"type": "spinner",
|
|
407
403
|
"size": "lg"
|
|
408
404
|
},
|
|
409
405
|
{
|
|
410
|
-
"type": "stack",
|
|
411
|
-
"direction": "horizontal",
|
|
412
|
-
"gap": "md",
|
|
413
|
-
"justify": "center",
|
|
414
406
|
"children": [
|
|
415
407
|
{
|
|
416
408
|
"type": "badge",
|
|
417
409
|
"label": [
|
|
418
410
|
"str/concat",
|
|
419
|
-
|
|
411
|
+
[
|
|
412
|
+
"str/concat",
|
|
413
|
+
"@entity.memoryHits"
|
|
414
|
+
],
|
|
420
415
|
" memories"
|
|
421
416
|
]
|
|
422
417
|
},
|
|
423
418
|
{
|
|
424
|
-
"type": "badge",
|
|
425
419
|
"label": [
|
|
426
420
|
"str/concat",
|
|
427
|
-
|
|
421
|
+
[
|
|
422
|
+
"str/concat",
|
|
423
|
+
"@entity.searchHits"
|
|
424
|
+
],
|
|
428
425
|
" code hits"
|
|
429
|
-
]
|
|
426
|
+
],
|
|
427
|
+
"type": "badge"
|
|
430
428
|
}
|
|
431
|
-
]
|
|
429
|
+
],
|
|
430
|
+
"justify": "center",
|
|
431
|
+
"type": "stack",
|
|
432
|
+
"direction": "horizontal",
|
|
433
|
+
"gap": "md"
|
|
432
434
|
}
|
|
433
|
-
]
|
|
435
|
+
],
|
|
436
|
+
"align": "center",
|
|
437
|
+
"gap": "lg",
|
|
438
|
+
"type": "stack",
|
|
439
|
+
"direction": "vertical"
|
|
440
|
+
}
|
|
441
|
+
]
|
|
442
|
+
]
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"from": "retrieving",
|
|
446
|
+
"to": "idle",
|
|
447
|
+
"event": "FAILED",
|
|
448
|
+
"effects": [
|
|
449
|
+
[
|
|
450
|
+
"set",
|
|
451
|
+
"@entity.error",
|
|
452
|
+
"@payload.error"
|
|
453
|
+
],
|
|
454
|
+
[
|
|
455
|
+
"set",
|
|
456
|
+
"@entity.status",
|
|
457
|
+
"error"
|
|
458
|
+
],
|
|
459
|
+
[
|
|
460
|
+
"render-ui",
|
|
461
|
+
"main",
|
|
462
|
+
{
|
|
463
|
+
"align": "center",
|
|
464
|
+
"type": "stack",
|
|
465
|
+
"children": [
|
|
466
|
+
{
|
|
467
|
+
"size": "lg",
|
|
468
|
+
"name": "alert-triangle",
|
|
469
|
+
"type": "icon"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"type": "typography",
|
|
473
|
+
"content": "RAG Pipeline Error",
|
|
474
|
+
"variant": "h2"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"type": "alert",
|
|
478
|
+
"variant": "error",
|
|
479
|
+
"message": "@entity.error"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"label": "Try Again",
|
|
483
|
+
"type": "button",
|
|
484
|
+
"event": "RESET",
|
|
485
|
+
"variant": "primary",
|
|
486
|
+
"icon": "rotate-ccw"
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"gap": "lg",
|
|
490
|
+
"direction": "vertical"
|
|
434
491
|
}
|
|
435
492
|
]
|
|
436
493
|
]
|
|
@@ -464,20 +521,17 @@
|
|
|
464
521
|
"main",
|
|
465
522
|
{
|
|
466
523
|
"type": "stack",
|
|
467
|
-
"direction": "vertical",
|
|
468
|
-
"gap": "lg",
|
|
469
524
|
"children": [
|
|
470
525
|
{
|
|
471
|
-
"type": "stack",
|
|
472
526
|
"direction": "horizontal",
|
|
473
527
|
"gap": "sm",
|
|
474
528
|
"align": "center",
|
|
529
|
+
"type": "stack",
|
|
475
530
|
"justify": "space-between",
|
|
476
531
|
"children": [
|
|
477
532
|
{
|
|
478
|
-
"type": "stack",
|
|
479
533
|
"direction": "horizontal",
|
|
480
|
-
"
|
|
534
|
+
"type": "stack",
|
|
481
535
|
"align": "center",
|
|
482
536
|
"children": [
|
|
483
537
|
{
|
|
@@ -487,17 +541,18 @@
|
|
|
487
541
|
},
|
|
488
542
|
{
|
|
489
543
|
"type": "typography",
|
|
490
|
-
"
|
|
491
|
-
"
|
|
544
|
+
"variant": "h2",
|
|
545
|
+
"content": "RAG Complete"
|
|
492
546
|
}
|
|
493
|
-
]
|
|
547
|
+
],
|
|
548
|
+
"gap": "sm"
|
|
494
549
|
},
|
|
495
550
|
{
|
|
496
551
|
"type": "button",
|
|
497
|
-
"label": "New Query",
|
|
498
552
|
"event": "RESET",
|
|
553
|
+
"icon": "rotate-ccw",
|
|
499
554
|
"variant": "ghost",
|
|
500
|
-
"
|
|
555
|
+
"label": "New Query"
|
|
501
556
|
}
|
|
502
557
|
]
|
|
503
558
|
},
|
|
@@ -506,19 +561,19 @@
|
|
|
506
561
|
},
|
|
507
562
|
{
|
|
508
563
|
"type": "simple-grid",
|
|
509
|
-
"columns": 2,
|
|
564
|
+
"columns": 2.0,
|
|
510
565
|
"children": [
|
|
511
566
|
{
|
|
512
567
|
"type": "stat-display",
|
|
568
|
+
"icon": "brain",
|
|
513
569
|
"label": "Memory Hits",
|
|
514
|
-
"value": "@entity.memoryHits"
|
|
515
|
-
"icon": "brain"
|
|
570
|
+
"value": "@entity.memoryHits"
|
|
516
571
|
},
|
|
517
572
|
{
|
|
573
|
+
"icon": "code",
|
|
518
574
|
"type": "stat-display",
|
|
519
575
|
"label": "Code Hits",
|
|
520
|
-
"value": "@entity.searchHits"
|
|
521
|
-
"icon": "code"
|
|
576
|
+
"value": "@entity.searchHits"
|
|
522
577
|
}
|
|
523
578
|
]
|
|
524
579
|
},
|
|
@@ -529,9 +584,9 @@
|
|
|
529
584
|
"type": "card",
|
|
530
585
|
"children": [
|
|
531
586
|
{
|
|
532
|
-
"type": "stack",
|
|
533
|
-
"direction": "vertical",
|
|
534
587
|
"gap": "md",
|
|
588
|
+
"direction": "vertical",
|
|
589
|
+
"type": "stack",
|
|
535
590
|
"children": [
|
|
536
591
|
{
|
|
537
592
|
"type": "typography",
|
|
@@ -539,22 +594,22 @@
|
|
|
539
594
|
"variant": "caption"
|
|
540
595
|
},
|
|
541
596
|
{
|
|
542
|
-
"type": "typography",
|
|
543
597
|
"content": "@entity.query",
|
|
544
|
-
"variant": "body"
|
|
598
|
+
"variant": "body",
|
|
599
|
+
"type": "typography"
|
|
545
600
|
},
|
|
546
601
|
{
|
|
547
602
|
"type": "divider"
|
|
548
603
|
},
|
|
549
604
|
{
|
|
550
605
|
"type": "typography",
|
|
551
|
-
"
|
|
552
|
-
"
|
|
606
|
+
"variant": "caption",
|
|
607
|
+
"content": "Response"
|
|
553
608
|
},
|
|
554
609
|
{
|
|
555
|
-
"type": "typography",
|
|
556
610
|
"content": "@entity.response",
|
|
557
|
-
"variant": "body"
|
|
611
|
+
"variant": "body",
|
|
612
|
+
"type": "typography"
|
|
558
613
|
}
|
|
559
614
|
]
|
|
560
615
|
}
|
|
@@ -565,8 +620,8 @@
|
|
|
565
620
|
"children": [
|
|
566
621
|
{
|
|
567
622
|
"type": "stack",
|
|
568
|
-
"direction": "vertical",
|
|
569
623
|
"gap": "sm",
|
|
624
|
+
"direction": "vertical",
|
|
570
625
|
"children": [
|
|
571
626
|
{
|
|
572
627
|
"type": "typography",
|
|
@@ -574,66 +629,17 @@
|
|
|
574
629
|
"variant": "caption"
|
|
575
630
|
},
|
|
576
631
|
{
|
|
577
|
-
"type": "typography",
|
|
578
632
|
"content": "@entity.context",
|
|
633
|
+
"type": "typography",
|
|
579
634
|
"variant": "body"
|
|
580
635
|
}
|
|
581
636
|
]
|
|
582
637
|
}
|
|
583
638
|
]
|
|
584
639
|
}
|
|
585
|
-
]
|
|
586
|
-
}
|
|
587
|
-
]
|
|
588
|
-
]
|
|
589
|
-
},
|
|
590
|
-
{
|
|
591
|
-
"from": "retrieving",
|
|
592
|
-
"to": "idle",
|
|
593
|
-
"event": "FAILED",
|
|
594
|
-
"effects": [
|
|
595
|
-
[
|
|
596
|
-
"set",
|
|
597
|
-
"@entity.error",
|
|
598
|
-
"@payload.error"
|
|
599
|
-
],
|
|
600
|
-
[
|
|
601
|
-
"set",
|
|
602
|
-
"@entity.status",
|
|
603
|
-
"error"
|
|
604
|
-
],
|
|
605
|
-
[
|
|
606
|
-
"render-ui",
|
|
607
|
-
"main",
|
|
608
|
-
{
|
|
609
|
-
"type": "stack",
|
|
640
|
+
],
|
|
610
641
|
"direction": "vertical",
|
|
611
|
-
"gap": "lg"
|
|
612
|
-
"align": "center",
|
|
613
|
-
"children": [
|
|
614
|
-
{
|
|
615
|
-
"type": "icon",
|
|
616
|
-
"name": "alert-triangle",
|
|
617
|
-
"size": "lg"
|
|
618
|
-
},
|
|
619
|
-
{
|
|
620
|
-
"type": "typography",
|
|
621
|
-
"content": "RAG Pipeline Error",
|
|
622
|
-
"variant": "h2"
|
|
623
|
-
},
|
|
624
|
-
{
|
|
625
|
-
"type": "alert",
|
|
626
|
-
"variant": "error",
|
|
627
|
-
"message": "@entity.error"
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"type": "button",
|
|
631
|
-
"label": "Try Again",
|
|
632
|
-
"event": "RESET",
|
|
633
|
-
"variant": "primary",
|
|
634
|
-
"icon": "rotate-ccw"
|
|
635
|
-
}
|
|
636
|
-
]
|
|
642
|
+
"gap": "lg"
|
|
637
643
|
}
|
|
638
644
|
]
|
|
639
645
|
]
|
|
@@ -657,10 +663,8 @@
|
|
|
657
663
|
"render-ui",
|
|
658
664
|
"main",
|
|
659
665
|
{
|
|
660
|
-
"type": "stack",
|
|
661
|
-
"direction": "vertical",
|
|
662
|
-
"gap": "lg",
|
|
663
666
|
"align": "center",
|
|
667
|
+
"type": "stack",
|
|
664
668
|
"children": [
|
|
665
669
|
{
|
|
666
670
|
"type": "icon",
|
|
@@ -668,23 +672,25 @@
|
|
|
668
672
|
"size": "lg"
|
|
669
673
|
},
|
|
670
674
|
{
|
|
671
|
-
"
|
|
675
|
+
"variant": "h2",
|
|
672
676
|
"content": "RAG Pipeline Error",
|
|
673
|
-
"
|
|
677
|
+
"type": "typography"
|
|
674
678
|
},
|
|
675
679
|
{
|
|
680
|
+
"message": "@entity.error",
|
|
676
681
|
"type": "alert",
|
|
677
|
-
"variant": "error"
|
|
678
|
-
"message": "@entity.error"
|
|
682
|
+
"variant": "error"
|
|
679
683
|
},
|
|
680
684
|
{
|
|
685
|
+
"icon": "rotate-ccw",
|
|
681
686
|
"type": "button",
|
|
682
|
-
"label": "Try Again",
|
|
683
|
-
"event": "RESET",
|
|
684
687
|
"variant": "primary",
|
|
685
|
-
"
|
|
688
|
+
"event": "RESET",
|
|
689
|
+
"label": "Try Again"
|
|
686
690
|
}
|
|
687
|
-
]
|
|
691
|
+
],
|
|
692
|
+
"direction": "vertical",
|
|
693
|
+
"gap": "lg"
|
|
688
694
|
}
|
|
689
695
|
]
|
|
690
696
|
]
|
|
@@ -712,12 +718,12 @@
|
|
|
712
718
|
[
|
|
713
719
|
"set",
|
|
714
720
|
"@entity.memoryHits",
|
|
715
|
-
0
|
|
721
|
+
0.0
|
|
716
722
|
],
|
|
717
723
|
[
|
|
718
724
|
"set",
|
|
719
725
|
"@entity.searchHits",
|
|
720
|
-
0
|
|
726
|
+
0.0
|
|
721
727
|
],
|
|
722
728
|
[
|
|
723
729
|
"set",
|
|
@@ -728,27 +734,24 @@
|
|
|
728
734
|
"render-ui",
|
|
729
735
|
"main",
|
|
730
736
|
{
|
|
731
|
-
"type": "stack",
|
|
732
|
-
"direction": "vertical",
|
|
733
|
-
"gap": "lg",
|
|
734
737
|
"children": [
|
|
735
738
|
{
|
|
736
|
-
"type": "stack",
|
|
737
|
-
"direction": "horizontal",
|
|
738
739
|
"gap": "sm",
|
|
739
740
|
"align": "center",
|
|
740
741
|
"children": [
|
|
741
742
|
{
|
|
742
|
-
"type": "icon",
|
|
743
743
|
"name": "brain",
|
|
744
|
-
"size": "lg"
|
|
744
|
+
"size": "lg",
|
|
745
|
+
"type": "icon"
|
|
745
746
|
},
|
|
746
747
|
{
|
|
747
|
-
"type": "typography",
|
|
748
748
|
"content": "RAG Pipeline",
|
|
749
|
+
"type": "typography",
|
|
749
750
|
"variant": "h2"
|
|
750
751
|
}
|
|
751
|
-
]
|
|
752
|
+
],
|
|
753
|
+
"direction": "horizontal",
|
|
754
|
+
"type": "stack"
|
|
752
755
|
},
|
|
753
756
|
{
|
|
754
757
|
"type": "divider"
|
|
@@ -757,35 +760,39 @@
|
|
|
757
760
|
"type": "card",
|
|
758
761
|
"children": [
|
|
759
762
|
{
|
|
760
|
-
"type": "stack",
|
|
761
763
|
"direction": "vertical",
|
|
762
764
|
"gap": "md",
|
|
763
765
|
"children": [
|
|
764
766
|
{
|
|
765
767
|
"type": "typography",
|
|
766
|
-
"
|
|
767
|
-
"
|
|
768
|
+
"variant": "body",
|
|
769
|
+
"content": "Enter a query to retrieve context and generate a response"
|
|
768
770
|
},
|
|
769
771
|
{
|
|
770
|
-
"type": "form-section",
|
|
771
|
-
"entity": "AgentRag",
|
|
772
|
-
"mode": "edit",
|
|
773
|
-
"submitEvent": "GENERATE",
|
|
774
772
|
"fields": [
|
|
775
773
|
"query"
|
|
776
|
-
]
|
|
774
|
+
],
|
|
775
|
+
"submitEvent": "GENERATE",
|
|
776
|
+
"type": "form-section",
|
|
777
|
+
"mode": "edit",
|
|
778
|
+
"entity": "AgentRag"
|
|
777
779
|
}
|
|
778
|
-
]
|
|
780
|
+
],
|
|
781
|
+
"type": "stack"
|
|
779
782
|
}
|
|
780
783
|
]
|
|
781
784
|
}
|
|
782
|
-
]
|
|
785
|
+
],
|
|
786
|
+
"type": "stack",
|
|
787
|
+
"direction": "vertical",
|
|
788
|
+
"gap": "lg"
|
|
783
789
|
}
|
|
784
790
|
]
|
|
785
791
|
]
|
|
786
792
|
}
|
|
787
793
|
]
|
|
788
|
-
}
|
|
794
|
+
},
|
|
795
|
+
"scope": "collection"
|
|
789
796
|
},
|
|
790
797
|
{
|
|
791
798
|
"ref": "Tabs.traits.TabContentTabs",
|
|
@@ -802,32 +809,32 @@
|
|
|
802
809
|
"main",
|
|
803
810
|
{
|
|
804
811
|
"type": "stack",
|
|
805
|
-
"direction": "vertical",
|
|
806
|
-
"gap": "lg",
|
|
807
812
|
"children": [
|
|
808
813
|
{
|
|
809
814
|
"type": "stack",
|
|
810
|
-
"direction": "horizontal",
|
|
811
|
-
"gap": "sm",
|
|
812
815
|
"align": "center",
|
|
813
816
|
"children": [
|
|
814
817
|
{
|
|
815
|
-
"type": "icon",
|
|
816
818
|
"name": "brain",
|
|
819
|
+
"type": "icon",
|
|
817
820
|
"size": "lg"
|
|
818
821
|
},
|
|
819
822
|
{
|
|
823
|
+
"variant": "h2",
|
|
820
824
|
"type": "typography",
|
|
821
|
-
"content": "RAG Pipeline"
|
|
822
|
-
"variant": "h2"
|
|
825
|
+
"content": "RAG Pipeline"
|
|
823
826
|
}
|
|
824
|
-
]
|
|
827
|
+
],
|
|
828
|
+
"direction": "horizontal",
|
|
829
|
+
"gap": "sm"
|
|
825
830
|
},
|
|
826
831
|
{
|
|
827
832
|
"type": "divider"
|
|
828
833
|
},
|
|
829
834
|
{
|
|
835
|
+
"onTabChange": "SELECT_TAB",
|
|
830
836
|
"type": "tabs",
|
|
837
|
+
"defaultActiveTab": "query",
|
|
831
838
|
"tabs": [
|
|
832
839
|
{
|
|
833
840
|
"label": "Query",
|
|
@@ -841,44 +848,44 @@
|
|
|
841
848
|
"label": "Response",
|
|
842
849
|
"value": "response"
|
|
843
850
|
}
|
|
844
|
-
]
|
|
845
|
-
"defaultActiveTab": "query",
|
|
846
|
-
"onTabChange": "SELECT_TAB"
|
|
851
|
+
]
|
|
847
852
|
},
|
|
848
853
|
{
|
|
849
854
|
"type": "divider"
|
|
850
855
|
},
|
|
851
856
|
{
|
|
852
|
-
"type": "data-grid",
|
|
853
|
-
"entity": "AgentRag",
|
|
854
|
-
"emptyIcon": "inbox",
|
|
855
|
-
"emptyTitle": "No agentrags yet",
|
|
856
|
-
"emptyDescription": "Add agentrags to see them here.",
|
|
857
|
-
"className": "transition-shadow hover:shadow-md cursor-pointer",
|
|
858
857
|
"renderItem": [
|
|
859
858
|
"fn",
|
|
860
859
|
"item",
|
|
861
860
|
{
|
|
862
|
-
"type": "stack",
|
|
863
|
-
"direction": "vertical",
|
|
864
|
-
"gap": "sm",
|
|
865
861
|
"children": [
|
|
866
862
|
{
|
|
867
|
-
"type": "typography",
|
|
868
863
|
"variant": "h4",
|
|
869
|
-
"content": "@item.name"
|
|
864
|
+
"content": "@item.name",
|
|
865
|
+
"type": "typography"
|
|
870
866
|
},
|
|
871
867
|
{
|
|
872
868
|
"type": "typography",
|
|
869
|
+
"content": "@item.query",
|
|
873
870
|
"variant": "caption",
|
|
874
|
-
"color": "muted"
|
|
875
|
-
"content": "@item.query"
|
|
871
|
+
"color": "muted"
|
|
876
872
|
}
|
|
877
|
-
]
|
|
873
|
+
],
|
|
874
|
+
"type": "stack",
|
|
875
|
+
"direction": "vertical",
|
|
876
|
+
"gap": "sm"
|
|
878
877
|
}
|
|
879
|
-
]
|
|
878
|
+
],
|
|
879
|
+
"entity": "AgentRag",
|
|
880
|
+
"emptyTitle": "No agentrags yet",
|
|
881
|
+
"type": "data-grid",
|
|
882
|
+
"className": "transition-shadow hover:shadow-md cursor-pointer",
|
|
883
|
+
"emptyIcon": "inbox",
|
|
884
|
+
"emptyDescription": "Add agentrags to see them here."
|
|
880
885
|
}
|
|
881
|
-
]
|
|
886
|
+
],
|
|
887
|
+
"gap": "lg",
|
|
888
|
+
"direction": "vertical"
|
|
882
889
|
}
|
|
883
890
|
]
|
|
884
891
|
],
|
|
@@ -892,14 +899,9 @@
|
|
|
892
899
|
"main",
|
|
893
900
|
{
|
|
894
901
|
"type": "stack",
|
|
895
|
-
"direction": "vertical",
|
|
896
902
|
"gap": "lg",
|
|
897
903
|
"children": [
|
|
898
904
|
{
|
|
899
|
-
"type": "stack",
|
|
900
|
-
"direction": "horizontal",
|
|
901
|
-
"gap": "sm",
|
|
902
|
-
"align": "center",
|
|
903
905
|
"children": [
|
|
904
906
|
{
|
|
905
907
|
"type": "icon",
|
|
@@ -907,16 +909,21 @@
|
|
|
907
909
|
"size": "lg"
|
|
908
910
|
},
|
|
909
911
|
{
|
|
910
|
-
"type": "typography",
|
|
911
912
|
"content": "RAG Pipeline",
|
|
913
|
+
"type": "typography",
|
|
912
914
|
"variant": "h2"
|
|
913
915
|
}
|
|
914
|
-
]
|
|
916
|
+
],
|
|
917
|
+
"type": "stack",
|
|
918
|
+
"direction": "horizontal",
|
|
919
|
+
"gap": "sm",
|
|
920
|
+
"align": "center"
|
|
915
921
|
},
|
|
916
922
|
{
|
|
917
923
|
"type": "divider"
|
|
918
924
|
},
|
|
919
925
|
{
|
|
926
|
+
"activeTab": "@payload.tab",
|
|
920
927
|
"type": "tabs",
|
|
921
928
|
"tabs": [
|
|
922
929
|
{
|
|
@@ -924,8 +931,8 @@
|
|
|
924
931
|
"value": "query"
|
|
925
932
|
},
|
|
926
933
|
{
|
|
927
|
-
"
|
|
928
|
-
"
|
|
934
|
+
"value": "sources",
|
|
935
|
+
"label": "Sources"
|
|
929
936
|
},
|
|
930
937
|
{
|
|
931
938
|
"label": "Response",
|
|
@@ -933,26 +940,17 @@
|
|
|
933
940
|
}
|
|
934
941
|
],
|
|
935
942
|
"defaultActiveTab": "query",
|
|
936
|
-
"activeTab": "@payload.tab",
|
|
937
943
|
"onTabChange": "SELECT_TAB"
|
|
938
944
|
},
|
|
939
945
|
{
|
|
940
946
|
"type": "divider"
|
|
941
947
|
},
|
|
942
948
|
{
|
|
943
|
-
"type": "data-grid",
|
|
944
|
-
"entity": "AgentRag",
|
|
945
|
-
"emptyIcon": "inbox",
|
|
946
|
-
"emptyTitle": "No agentrags yet",
|
|
947
|
-
"emptyDescription": "Add agentrags to see them here.",
|
|
948
|
-
"className": "transition-shadow hover:shadow-md cursor-pointer",
|
|
949
949
|
"renderItem": [
|
|
950
950
|
"fn",
|
|
951
951
|
"item",
|
|
952
952
|
{
|
|
953
|
-
"type": "stack",
|
|
954
953
|
"direction": "vertical",
|
|
955
|
-
"gap": "sm",
|
|
956
954
|
"children": [
|
|
957
955
|
{
|
|
958
956
|
"type": "typography",
|
|
@@ -960,16 +958,25 @@
|
|
|
960
958
|
"content": "@item.name"
|
|
961
959
|
},
|
|
962
960
|
{
|
|
963
|
-
"type": "typography",
|
|
964
961
|
"variant": "caption",
|
|
962
|
+
"content": "@item.query",
|
|
965
963
|
"color": "muted",
|
|
966
|
-
"
|
|
964
|
+
"type": "typography"
|
|
967
965
|
}
|
|
968
|
-
]
|
|
966
|
+
],
|
|
967
|
+
"type": "stack",
|
|
968
|
+
"gap": "sm"
|
|
969
969
|
}
|
|
970
|
-
]
|
|
970
|
+
],
|
|
971
|
+
"emptyTitle": "No agentrags yet",
|
|
972
|
+
"entity": "AgentRag",
|
|
973
|
+
"emptyIcon": "inbox",
|
|
974
|
+
"type": "data-grid",
|
|
975
|
+
"className": "transition-shadow hover:shadow-md cursor-pointer",
|
|
976
|
+
"emptyDescription": "Add agentrags to see them here."
|
|
971
977
|
}
|
|
972
|
-
]
|
|
978
|
+
],
|
|
979
|
+
"direction": "vertical"
|
|
973
980
|
}
|
|
974
981
|
]
|
|
975
982
|
]
|
|
@@ -979,7 +986,6 @@
|
|
|
979
986
|
"ref": "AgentMemory.traits.AgentMemoryBrowse",
|
|
980
987
|
"name": "RagMemoryLifecycle",
|
|
981
988
|
"linkedEntity": "AgentRag",
|
|
982
|
-
"listens": [],
|
|
983
989
|
"emitsScope": "internal",
|
|
984
990
|
"effects": {
|
|
985
991
|
"INIT": [
|
|
@@ -991,47 +997,40 @@
|
|
|
991
997
|
"render-ui",
|
|
992
998
|
"main",
|
|
993
999
|
{
|
|
994
|
-
"type": "stack",
|
|
995
|
-
"direction": "vertical",
|
|
996
1000
|
"gap": "lg",
|
|
997
1001
|
"className": "max-w-5xl mx-auto w-full",
|
|
998
1002
|
"children": [
|
|
999
1003
|
{
|
|
1000
|
-
"type": "stack",
|
|
1001
|
-
"direction": "horizontal",
|
|
1002
1004
|
"gap": "md",
|
|
1003
1005
|
"justify": "space-between",
|
|
1004
1006
|
"align": "center",
|
|
1005
1007
|
"children": [
|
|
1006
1008
|
{
|
|
1007
|
-
"type": "stack",
|
|
1008
|
-
"direction": "horizontal",
|
|
1009
|
-
"gap": "sm",
|
|
1010
|
-
"align": "center",
|
|
1011
1009
|
"children": [
|
|
1012
1010
|
{
|
|
1013
1011
|
"type": "icon",
|
|
1014
|
-
"
|
|
1015
|
-
"
|
|
1012
|
+
"size": "lg",
|
|
1013
|
+
"name": "brain"
|
|
1016
1014
|
},
|
|
1017
1015
|
{
|
|
1018
1016
|
"type": "typography",
|
|
1019
1017
|
"content": "AgentRag Manager",
|
|
1020
1018
|
"variant": "h2"
|
|
1021
1019
|
}
|
|
1022
|
-
]
|
|
1023
|
-
},
|
|
1024
|
-
{
|
|
1020
|
+
],
|
|
1025
1021
|
"type": "stack",
|
|
1026
|
-
"direction": "horizontal",
|
|
1027
1022
|
"gap": "sm",
|
|
1023
|
+
"align": "center",
|
|
1024
|
+
"direction": "horizontal"
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1028
1027
|
"children": [
|
|
1029
1028
|
{
|
|
1030
1029
|
"type": "button",
|
|
1031
|
-
"label": "Memorize",
|
|
1032
1030
|
"event": "MEMORIZE",
|
|
1033
|
-
"
|
|
1034
|
-
"
|
|
1031
|
+
"icon": "plus",
|
|
1032
|
+
"label": "Memorize",
|
|
1033
|
+
"variant": "primary"
|
|
1035
1034
|
},
|
|
1036
1035
|
{
|
|
1037
1036
|
"type": "button",
|
|
@@ -1041,79 +1040,86 @@
|
|
|
1041
1040
|
"icon": "search"
|
|
1042
1041
|
},
|
|
1043
1042
|
{
|
|
1044
|
-
"type": "button",
|
|
1045
1043
|
"label": "Decay All",
|
|
1044
|
+
"icon": "clock",
|
|
1045
|
+
"type": "button",
|
|
1046
1046
|
"event": "DECAY",
|
|
1047
|
-
"variant": "ghost"
|
|
1048
|
-
"icon": "clock"
|
|
1047
|
+
"variant": "ghost"
|
|
1049
1048
|
}
|
|
1050
|
-
]
|
|
1049
|
+
],
|
|
1050
|
+
"type": "stack",
|
|
1051
|
+
"gap": "sm",
|
|
1052
|
+
"direction": "horizontal"
|
|
1051
1053
|
}
|
|
1052
|
-
]
|
|
1054
|
+
],
|
|
1055
|
+
"direction": "horizontal",
|
|
1056
|
+
"type": "stack"
|
|
1053
1057
|
},
|
|
1054
1058
|
{
|
|
1055
1059
|
"type": "divider"
|
|
1056
1060
|
},
|
|
1057
1061
|
{
|
|
1058
|
-
"type": "data-grid",
|
|
1059
|
-
"entity": "AgentRag",
|
|
1060
|
-
"emptyIcon": "inbox",
|
|
1061
1062
|
"emptyTitle": "No memories yet",
|
|
1062
|
-
"
|
|
1063
|
+
"type": "data-grid",
|
|
1063
1064
|
"itemActions": [
|
|
1064
1065
|
{
|
|
1065
1066
|
"label": "Pin",
|
|
1066
|
-
"
|
|
1067
|
+
"size": "sm",
|
|
1067
1068
|
"variant": "ghost",
|
|
1068
|
-
"
|
|
1069
|
+
"event": "PIN"
|
|
1069
1070
|
},
|
|
1070
1071
|
{
|
|
1071
|
-
"
|
|
1072
|
-
"event": "REINFORCE",
|
|
1072
|
+
"size": "sm",
|
|
1073
1073
|
"variant": "ghost",
|
|
1074
|
-
"
|
|
1074
|
+
"label": "Reinforce",
|
|
1075
|
+
"event": "REINFORCE"
|
|
1075
1076
|
},
|
|
1076
1077
|
{
|
|
1077
|
-
"label": "Forget",
|
|
1078
1078
|
"event": "FORGET",
|
|
1079
|
-
"
|
|
1080
|
-
"size": "sm"
|
|
1079
|
+
"label": "Forget",
|
|
1080
|
+
"size": "sm",
|
|
1081
|
+
"variant": "danger"
|
|
1081
1082
|
}
|
|
1082
1083
|
],
|
|
1084
|
+
"entity": "AgentRag",
|
|
1083
1085
|
"columns": [
|
|
1084
1086
|
{
|
|
1085
|
-
"name": "content",
|
|
1086
1087
|
"label": "Content",
|
|
1087
1088
|
"variant": "h4",
|
|
1089
|
+
"name": "content",
|
|
1088
1090
|
"icon": "brain"
|
|
1089
1091
|
},
|
|
1090
1092
|
{
|
|
1091
|
-
"name": "category",
|
|
1092
|
-
"label": "Category",
|
|
1093
|
-
"variant": "badge",
|
|
1094
1093
|
"colorMap": {
|
|
1094
|
+
"error": "destructive",
|
|
1095
|
+
"scheduled": "warning",
|
|
1096
|
+
"cancelled": "destructive",
|
|
1095
1097
|
"active": "success",
|
|
1096
|
-
"completed": "success",
|
|
1097
|
-
"done": "success",
|
|
1098
|
-
"pending": "warning",
|
|
1099
1098
|
"draft": "warning",
|
|
1100
|
-
"scheduled": "warning",
|
|
1101
1099
|
"inactive": "neutral",
|
|
1102
|
-
"
|
|
1100
|
+
"pending": "warning",
|
|
1101
|
+
"failed": "destructive",
|
|
1102
|
+
"completed": "success",
|
|
1103
1103
|
"disabled": "neutral",
|
|
1104
|
-
"
|
|
1105
|
-
"
|
|
1106
|
-
|
|
1107
|
-
|
|
1104
|
+
"archived": "neutral",
|
|
1105
|
+
"done": "success"
|
|
1106
|
+
},
|
|
1107
|
+
"name": "category",
|
|
1108
|
+
"label": "Category",
|
|
1109
|
+
"variant": "badge"
|
|
1108
1110
|
},
|
|
1109
1111
|
{
|
|
1110
|
-
"name": "strength",
|
|
1111
1112
|
"label": "Strength",
|
|
1113
|
+
"name": "strength",
|
|
1112
1114
|
"variant": "caption"
|
|
1113
1115
|
}
|
|
1114
|
-
]
|
|
1116
|
+
],
|
|
1117
|
+
"emptyDescription": "Create your first memory to get started.",
|
|
1118
|
+
"emptyIcon": "inbox"
|
|
1115
1119
|
}
|
|
1116
|
-
]
|
|
1120
|
+
],
|
|
1121
|
+
"direction": "vertical",
|
|
1122
|
+
"type": "stack"
|
|
1117
1123
|
}
|
|
1118
1124
|
]
|
|
1119
1125
|
]
|
|
@@ -1123,7 +1129,6 @@
|
|
|
1123
1129
|
"ref": "AgentSearch.traits.AgentSearchBrowse",
|
|
1124
1130
|
"name": "RagSearchLifecycle",
|
|
1125
1131
|
"linkedEntity": "AgentRag",
|
|
1126
|
-
"listens": [],
|
|
1127
1132
|
"emitsScope": "internal",
|
|
1128
1133
|
"effects": {
|
|
1129
1134
|
"INIT": [
|
|
@@ -1135,27 +1140,21 @@
|
|
|
1135
1140
|
"render-ui",
|
|
1136
1141
|
"main",
|
|
1137
1142
|
{
|
|
1138
|
-
"type": "stack",
|
|
1139
|
-
"direction": "vertical",
|
|
1140
|
-
"gap": "lg",
|
|
1141
|
-
"className": "max-w-5xl mx-auto w-full",
|
|
1142
1143
|
"children": [
|
|
1143
1144
|
{
|
|
1144
1145
|
"type": "stack",
|
|
1145
|
-
"direction": "horizontal",
|
|
1146
1146
|
"gap": "md",
|
|
1147
|
-
"justify": "space-between",
|
|
1148
1147
|
"align": "center",
|
|
1148
|
+
"direction": "horizontal",
|
|
1149
|
+
"justify": "space-between",
|
|
1149
1150
|
"children": [
|
|
1150
1151
|
{
|
|
1151
|
-
"type": "stack",
|
|
1152
|
-
"direction": "horizontal",
|
|
1153
|
-
"gap": "sm",
|
|
1154
1152
|
"align": "center",
|
|
1153
|
+
"type": "stack",
|
|
1155
1154
|
"children": [
|
|
1156
1155
|
{
|
|
1157
|
-
"type": "icon",
|
|
1158
1156
|
"name": "search",
|
|
1157
|
+
"type": "icon",
|
|
1159
1158
|
"size": "lg"
|
|
1160
1159
|
},
|
|
1161
1160
|
{
|
|
@@ -1163,26 +1162,28 @@
|
|
|
1163
1162
|
"content": "AgentRag",
|
|
1164
1163
|
"variant": "h2"
|
|
1165
1164
|
}
|
|
1166
|
-
]
|
|
1165
|
+
],
|
|
1166
|
+
"direction": "horizontal",
|
|
1167
|
+
"gap": "sm"
|
|
1167
1168
|
},
|
|
1168
1169
|
{
|
|
1169
|
-
"type": "stack",
|
|
1170
1170
|
"direction": "horizontal",
|
|
1171
|
+
"type": "stack",
|
|
1171
1172
|
"gap": "sm",
|
|
1172
1173
|
"children": [
|
|
1173
1174
|
{
|
|
1174
1175
|
"type": "button",
|
|
1175
|
-
"label": "Search",
|
|
1176
1176
|
"event": "SEARCH",
|
|
1177
1177
|
"variant": "primary",
|
|
1178
|
-
"icon": "search"
|
|
1178
|
+
"icon": "search",
|
|
1179
|
+
"label": "Search"
|
|
1179
1180
|
},
|
|
1180
1181
|
{
|
|
1181
1182
|
"type": "button",
|
|
1182
1183
|
"label": "Clear",
|
|
1184
|
+
"icon": "x",
|
|
1183
1185
|
"event": "CLEAR",
|
|
1184
|
-
"variant": "ghost"
|
|
1185
|
-
"icon": "x"
|
|
1186
|
+
"variant": "ghost"
|
|
1186
1187
|
}
|
|
1187
1188
|
]
|
|
1188
1189
|
}
|
|
@@ -1192,41 +1193,28 @@
|
|
|
1192
1193
|
"type": "divider"
|
|
1193
1194
|
},
|
|
1194
1195
|
{
|
|
1195
|
-
"type": "data-grid",
|
|
1196
|
-
"entity": "AgentRag",
|
|
1197
|
-
"emptyIcon": "inbox",
|
|
1198
|
-
"emptyTitle": "No search results",
|
|
1199
|
-
"emptyDescription": "Enter a query to search the codebase.",
|
|
1200
|
-
"itemActions": [
|
|
1201
|
-
{
|
|
1202
|
-
"label": "View",
|
|
1203
|
-
"event": "VIEW",
|
|
1204
|
-
"variant": "ghost",
|
|
1205
|
-
"size": "sm"
|
|
1206
|
-
}
|
|
1207
|
-
],
|
|
1208
1196
|
"columns": [
|
|
1209
1197
|
{
|
|
1210
1198
|
"name": "query",
|
|
1211
|
-
"label": "Query",
|
|
1212
1199
|
"variant": "h4",
|
|
1200
|
+
"label": "Query",
|
|
1213
1201
|
"icon": "search"
|
|
1214
1202
|
},
|
|
1215
1203
|
{
|
|
1216
|
-
"name": "language",
|
|
1217
1204
|
"label": "Language",
|
|
1205
|
+
"name": "language",
|
|
1218
1206
|
"variant": "badge",
|
|
1219
1207
|
"colorMap": {
|
|
1220
|
-
"active": "success",
|
|
1221
1208
|
"completed": "success",
|
|
1222
|
-
"
|
|
1223
|
-
"pending": "warning",
|
|
1209
|
+
"archived": "neutral",
|
|
1224
1210
|
"draft": "warning",
|
|
1211
|
+
"error": "destructive",
|
|
1212
|
+
"active": "success",
|
|
1225
1213
|
"scheduled": "warning",
|
|
1214
|
+
"pending": "warning",
|
|
1226
1215
|
"inactive": "neutral",
|
|
1227
|
-
"
|
|
1216
|
+
"done": "success",
|
|
1228
1217
|
"disabled": "neutral",
|
|
1229
|
-
"error": "destructive",
|
|
1230
1218
|
"cancelled": "destructive",
|
|
1231
1219
|
"failed": "destructive"
|
|
1232
1220
|
}
|
|
@@ -1236,9 +1224,26 @@
|
|
|
1236
1224
|
"label": "Result Count",
|
|
1237
1225
|
"variant": "caption"
|
|
1238
1226
|
}
|
|
1227
|
+
],
|
|
1228
|
+
"emptyIcon": "inbox",
|
|
1229
|
+
"emptyDescription": "Enter a query to search the codebase.",
|
|
1230
|
+
"type": "data-grid",
|
|
1231
|
+
"entity": "AgentRag",
|
|
1232
|
+
"emptyTitle": "No search results",
|
|
1233
|
+
"itemActions": [
|
|
1234
|
+
{
|
|
1235
|
+
"label": "View",
|
|
1236
|
+
"event": "VIEW",
|
|
1237
|
+
"size": "sm",
|
|
1238
|
+
"variant": "ghost"
|
|
1239
|
+
}
|
|
1239
1240
|
]
|
|
1240
1241
|
}
|
|
1241
|
-
]
|
|
1242
|
+
],
|
|
1243
|
+
"gap": "lg",
|
|
1244
|
+
"type": "stack",
|
|
1245
|
+
"direction": "vertical",
|
|
1246
|
+
"className": "max-w-5xl mx-auto w-full"
|
|
1242
1247
|
}
|
|
1243
1248
|
]
|
|
1244
1249
|
]
|
|
@@ -1248,80 +1253,18 @@
|
|
|
1248
1253
|
"ref": "AgentCompletion.traits.AgentCompletionModal",
|
|
1249
1254
|
"name": "RagCompletionFlow",
|
|
1250
1255
|
"linkedEntity": "AgentRag",
|
|
1251
|
-
"listens": [],
|
|
1252
1256
|
"emitsScope": "internal",
|
|
1253
1257
|
"effects": {
|
|
1254
|
-
"INIT": [
|
|
1255
|
-
[
|
|
1256
|
-
"ref",
|
|
1257
|
-
"AgentRag"
|
|
1258
|
-
],
|
|
1259
|
-
[
|
|
1260
|
-
"render-ui",
|
|
1261
|
-
"main",
|
|
1262
|
-
{
|
|
1263
|
-
"type": "stack",
|
|
1264
|
-
"direction": "vertical",
|
|
1265
|
-
"gap": "lg",
|
|
1266
|
-
"children": [
|
|
1267
|
-
{
|
|
1268
|
-
"type": "stack",
|
|
1269
|
-
"direction": "horizontal",
|
|
1270
|
-
"gap": "md",
|
|
1271
|
-
"justify": "space-between",
|
|
1272
|
-
"children": [
|
|
1273
|
-
{
|
|
1274
|
-
"type": "stack",
|
|
1275
|
-
"direction": "horizontal",
|
|
1276
|
-
"gap": "md",
|
|
1277
|
-
"children": [
|
|
1278
|
-
{
|
|
1279
|
-
"type": "icon",
|
|
1280
|
-
"name": "sparkles",
|
|
1281
|
-
"size": "lg"
|
|
1282
|
-
},
|
|
1283
|
-
{
|
|
1284
|
-
"type": "typography",
|
|
1285
|
-
"content": "AgentRag",
|
|
1286
|
-
"variant": "h2"
|
|
1287
|
-
}
|
|
1288
|
-
]
|
|
1289
|
-
},
|
|
1290
|
-
{
|
|
1291
|
-
"type": "button",
|
|
1292
|
-
"label": "Open",
|
|
1293
|
-
"event": "GENERATE",
|
|
1294
|
-
"variant": "primary",
|
|
1295
|
-
"icon": "sparkles"
|
|
1296
|
-
}
|
|
1297
|
-
]
|
|
1298
|
-
},
|
|
1299
|
-
{
|
|
1300
|
-
"type": "divider"
|
|
1301
|
-
},
|
|
1302
|
-
{
|
|
1303
|
-
"type": "empty-state",
|
|
1304
|
-
"icon": "sparkles",
|
|
1305
|
-
"title": "Nothing open",
|
|
1306
|
-
"description": "Click Open to view details in a modal overlay."
|
|
1307
|
-
}
|
|
1308
|
-
]
|
|
1309
|
-
}
|
|
1310
|
-
]
|
|
1311
|
-
],
|
|
1312
1258
|
"GENERATE": [
|
|
1313
1259
|
[
|
|
1314
1260
|
"render-ui",
|
|
1315
1261
|
"modal",
|
|
1316
1262
|
{
|
|
1317
1263
|
"type": "stack",
|
|
1318
|
-
"direction": "vertical",
|
|
1319
|
-
"gap": "md",
|
|
1320
1264
|
"children": [
|
|
1321
1265
|
{
|
|
1322
1266
|
"type": "stack",
|
|
1323
1267
|
"direction": "horizontal",
|
|
1324
|
-
"gap": "sm",
|
|
1325
1268
|
"children": [
|
|
1326
1269
|
{
|
|
1327
1270
|
"type": "icon",
|
|
@@ -1333,37 +1276,40 @@
|
|
|
1333
1276
|
"content": "AgentRag",
|
|
1334
1277
|
"variant": "h3"
|
|
1335
1278
|
}
|
|
1336
|
-
]
|
|
1279
|
+
],
|
|
1280
|
+
"gap": "sm"
|
|
1337
1281
|
},
|
|
1338
1282
|
{
|
|
1339
1283
|
"type": "divider"
|
|
1340
1284
|
},
|
|
1341
1285
|
{
|
|
1342
|
-
"type": "stack",
|
|
1343
|
-
"direction": "horizontal",
|
|
1344
|
-
"gap": "sm",
|
|
1345
1286
|
"children": [
|
|
1346
1287
|
{
|
|
1347
1288
|
"type": "badge",
|
|
1348
1289
|
"label": "@entity.provider"
|
|
1349
1290
|
},
|
|
1350
1291
|
{
|
|
1351
|
-
"
|
|
1352
|
-
"
|
|
1292
|
+
"label": "@entity.model",
|
|
1293
|
+
"type": "badge"
|
|
1353
1294
|
}
|
|
1354
|
-
]
|
|
1295
|
+
],
|
|
1296
|
+
"type": "stack",
|
|
1297
|
+
"direction": "horizontal",
|
|
1298
|
+
"gap": "sm"
|
|
1355
1299
|
},
|
|
1356
1300
|
{
|
|
1357
|
-
"type": "form-section",
|
|
1358
|
-
"entity": "AgentRag",
|
|
1359
1301
|
"mode": "create",
|
|
1360
|
-
"
|
|
1302
|
+
"entity": "AgentRag",
|
|
1361
1303
|
"cancelEvent": "CLOSE",
|
|
1362
1304
|
"fields": [
|
|
1363
1305
|
"prompt"
|
|
1364
|
-
]
|
|
1306
|
+
],
|
|
1307
|
+
"type": "form-section",
|
|
1308
|
+
"submitEvent": "SAVE"
|
|
1365
1309
|
}
|
|
1366
|
-
]
|
|
1310
|
+
],
|
|
1311
|
+
"direction": "vertical",
|
|
1312
|
+
"gap": "md"
|
|
1367
1313
|
}
|
|
1368
1314
|
]
|
|
1369
1315
|
],
|
|
@@ -1386,49 +1332,49 @@
|
|
|
1386
1332
|
"render-ui",
|
|
1387
1333
|
"main",
|
|
1388
1334
|
{
|
|
1335
|
+
"gap": "lg",
|
|
1389
1336
|
"type": "stack",
|
|
1390
1337
|
"direction": "vertical",
|
|
1391
|
-
"gap": "lg",
|
|
1392
1338
|
"children": [
|
|
1393
1339
|
{
|
|
1394
1340
|
"type": "stack",
|
|
1395
|
-
"direction": "horizontal",
|
|
1396
|
-
"gap": "md",
|
|
1397
1341
|
"justify": "space-between",
|
|
1342
|
+
"gap": "md",
|
|
1398
1343
|
"children": [
|
|
1399
1344
|
{
|
|
1345
|
+
"gap": "md",
|
|
1400
1346
|
"type": "stack",
|
|
1401
1347
|
"direction": "horizontal",
|
|
1402
|
-
"gap": "md",
|
|
1403
1348
|
"children": [
|
|
1404
1349
|
{
|
|
1405
|
-
"type": "icon",
|
|
1406
1350
|
"name": "sparkles",
|
|
1407
|
-
"size": "lg"
|
|
1351
|
+
"size": "lg",
|
|
1352
|
+
"type": "icon"
|
|
1408
1353
|
},
|
|
1409
1354
|
{
|
|
1410
|
-
"type": "typography",
|
|
1411
1355
|
"content": "AgentRag",
|
|
1356
|
+
"type": "typography",
|
|
1412
1357
|
"variant": "h2"
|
|
1413
1358
|
}
|
|
1414
1359
|
]
|
|
1415
1360
|
},
|
|
1416
1361
|
{
|
|
1417
|
-
"
|
|
1418
|
-
"label": "Open",
|
|
1419
|
-
"event": "GENERATE",
|
|
1362
|
+
"icon": "sparkles",
|
|
1420
1363
|
"variant": "primary",
|
|
1421
|
-
"
|
|
1364
|
+
"label": "Open",
|
|
1365
|
+
"type": "button",
|
|
1366
|
+
"event": "GENERATE"
|
|
1422
1367
|
}
|
|
1423
|
-
]
|
|
1368
|
+
],
|
|
1369
|
+
"direction": "horizontal"
|
|
1424
1370
|
},
|
|
1425
1371
|
{
|
|
1426
1372
|
"type": "divider"
|
|
1427
1373
|
},
|
|
1428
1374
|
{
|
|
1429
|
-
"type": "empty-state",
|
|
1430
|
-
"icon": "sparkles",
|
|
1431
1375
|
"title": "Nothing open",
|
|
1376
|
+
"icon": "sparkles",
|
|
1377
|
+
"type": "empty-state",
|
|
1432
1378
|
"description": "Click Open to view details in a modal overlay."
|
|
1433
1379
|
}
|
|
1434
1380
|
]
|
|
@@ -1459,52 +1405,110 @@
|
|
|
1459
1405
|
"render-ui",
|
|
1460
1406
|
"main",
|
|
1461
1407
|
{
|
|
1462
|
-
"type": "stack",
|
|
1463
|
-
"direction": "vertical",
|
|
1464
|
-
"gap": "lg",
|
|
1465
1408
|
"children": [
|
|
1466
1409
|
{
|
|
1410
|
+
"gap": "md",
|
|
1467
1411
|
"type": "stack",
|
|
1412
|
+
"children": [
|
|
1413
|
+
{
|
|
1414
|
+
"children": [
|
|
1415
|
+
{
|
|
1416
|
+
"type": "icon",
|
|
1417
|
+
"name": "sparkles",
|
|
1418
|
+
"size": "lg"
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"variant": "h2",
|
|
1422
|
+
"type": "typography",
|
|
1423
|
+
"content": "AgentRag"
|
|
1424
|
+
}
|
|
1425
|
+
],
|
|
1426
|
+
"gap": "md",
|
|
1427
|
+
"type": "stack",
|
|
1428
|
+
"direction": "horizontal"
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"icon": "sparkles",
|
|
1432
|
+
"variant": "primary",
|
|
1433
|
+
"label": "Open",
|
|
1434
|
+
"type": "button",
|
|
1435
|
+
"event": "GENERATE"
|
|
1436
|
+
}
|
|
1437
|
+
],
|
|
1468
1438
|
"direction": "horizontal",
|
|
1469
|
-
"
|
|
1439
|
+
"justify": "space-between"
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"type": "divider"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"type": "empty-state",
|
|
1446
|
+
"icon": "sparkles",
|
|
1447
|
+
"title": "Nothing open",
|
|
1448
|
+
"description": "Click Open to view details in a modal overlay."
|
|
1449
|
+
}
|
|
1450
|
+
],
|
|
1451
|
+
"gap": "lg",
|
|
1452
|
+
"type": "stack",
|
|
1453
|
+
"direction": "vertical"
|
|
1454
|
+
}
|
|
1455
|
+
]
|
|
1456
|
+
],
|
|
1457
|
+
"INIT": [
|
|
1458
|
+
[
|
|
1459
|
+
"ref",
|
|
1460
|
+
"AgentRag"
|
|
1461
|
+
],
|
|
1462
|
+
[
|
|
1463
|
+
"render-ui",
|
|
1464
|
+
"main",
|
|
1465
|
+
{
|
|
1466
|
+
"children": [
|
|
1467
|
+
{
|
|
1470
1468
|
"justify": "space-between",
|
|
1471
1469
|
"children": [
|
|
1472
1470
|
{
|
|
1473
1471
|
"type": "stack",
|
|
1474
1472
|
"direction": "horizontal",
|
|
1475
|
-
"gap": "md",
|
|
1476
1473
|
"children": [
|
|
1477
1474
|
{
|
|
1478
|
-
"type": "icon",
|
|
1479
1475
|
"name": "sparkles",
|
|
1480
|
-
"size": "lg"
|
|
1476
|
+
"size": "lg",
|
|
1477
|
+
"type": "icon"
|
|
1481
1478
|
},
|
|
1482
1479
|
{
|
|
1480
|
+
"variant": "h2",
|
|
1483
1481
|
"type": "typography",
|
|
1484
|
-
"content": "AgentRag"
|
|
1485
|
-
"variant": "h2"
|
|
1482
|
+
"content": "AgentRag"
|
|
1486
1483
|
}
|
|
1487
|
-
]
|
|
1484
|
+
],
|
|
1485
|
+
"gap": "md"
|
|
1488
1486
|
},
|
|
1489
1487
|
{
|
|
1490
|
-
"type": "button",
|
|
1491
1488
|
"label": "Open",
|
|
1492
1489
|
"event": "GENERATE",
|
|
1490
|
+
"type": "button",
|
|
1493
1491
|
"variant": "primary",
|
|
1494
1492
|
"icon": "sparkles"
|
|
1495
1493
|
}
|
|
1496
|
-
]
|
|
1494
|
+
],
|
|
1495
|
+
"type": "stack",
|
|
1496
|
+
"direction": "horizontal",
|
|
1497
|
+
"gap": "md"
|
|
1497
1498
|
},
|
|
1498
1499
|
{
|
|
1499
1500
|
"type": "divider"
|
|
1500
1501
|
},
|
|
1501
1502
|
{
|
|
1502
|
-
"type": "empty-state",
|
|
1503
1503
|
"icon": "sparkles",
|
|
1504
1504
|
"title": "Nothing open",
|
|
1505
|
-
"description": "Click Open to view details in a modal overlay."
|
|
1505
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
1506
|
+
"type": "empty-state"
|
|
1506
1507
|
}
|
|
1507
|
-
]
|
|
1508
|
+
],
|
|
1509
|
+
"type": "stack",
|
|
1510
|
+
"gap": "lg",
|
|
1511
|
+
"direction": "vertical"
|
|
1508
1512
|
}
|
|
1509
1513
|
]
|
|
1510
1514
|
]
|