@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-service-content-pipeline",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-content-pipeline as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceContentPipelineOrbital",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"traits": [
|
|
71
71
|
{
|
|
72
72
|
"name": "ServiceContentPipelinePipeline",
|
|
73
|
-
"linkedEntity": "ServiceContentPipeline",
|
|
74
73
|
"category": "interaction",
|
|
74
|
+
"linkedEntity": "ServiceContentPipeline",
|
|
75
75
|
"stateMachine": {
|
|
76
76
|
"states": [
|
|
77
77
|
{
|
|
@@ -114,9 +114,20 @@
|
|
|
114
114
|
}
|
|
115
115
|
]
|
|
116
116
|
},
|
|
117
|
+
{
|
|
118
|
+
"key": "FAILED",
|
|
119
|
+
"name": "Failed",
|
|
120
|
+
"payload": [
|
|
121
|
+
{
|
|
122
|
+
"name": "error",
|
|
123
|
+
"type": "string",
|
|
124
|
+
"required": true
|
|
125
|
+
}
|
|
126
|
+
]
|
|
127
|
+
},
|
|
117
128
|
{
|
|
118
129
|
"key": "SELECT_AND_SUMMARIZE",
|
|
119
|
-
"name": "Select
|
|
130
|
+
"name": "Select And Summarize",
|
|
120
131
|
"payload": [
|
|
121
132
|
{
|
|
122
133
|
"name": "videoId",
|
|
@@ -125,6 +136,10 @@
|
|
|
125
136
|
}
|
|
126
137
|
]
|
|
127
138
|
},
|
|
139
|
+
{
|
|
140
|
+
"key": "RESET",
|
|
141
|
+
"name": "Reset"
|
|
142
|
+
},
|
|
128
143
|
{
|
|
129
144
|
"key": "VIDEO_FETCHED",
|
|
130
145
|
"name": "Video Fetched",
|
|
@@ -151,21 +166,6 @@
|
|
|
151
166
|
"required": true
|
|
152
167
|
}
|
|
153
168
|
]
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"key": "FAILED",
|
|
157
|
-
"name": "Failed",
|
|
158
|
-
"payload": [
|
|
159
|
-
{
|
|
160
|
-
"name": "error",
|
|
161
|
-
"type": "string",
|
|
162
|
-
"required": true
|
|
163
|
-
}
|
|
164
|
-
]
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"key": "RESET",
|
|
168
|
-
"name": "Reset"
|
|
169
169
|
}
|
|
170
170
|
],
|
|
171
171
|
"transitions": [
|
|
@@ -184,21 +184,21 @@
|
|
|
184
184
|
"children": [
|
|
185
185
|
{
|
|
186
186
|
"type": "stack",
|
|
187
|
-
"direction": "horizontal",
|
|
188
|
-
"gap": "sm",
|
|
189
|
-
"align": "center",
|
|
190
187
|
"children": [
|
|
191
188
|
{
|
|
189
|
+
"size": "lg",
|
|
192
190
|
"type": "icon",
|
|
193
|
-
"name": "search"
|
|
194
|
-
"size": "lg"
|
|
191
|
+
"name": "search"
|
|
195
192
|
},
|
|
196
193
|
{
|
|
197
|
-
"type": "typography",
|
|
198
194
|
"content": "Content Research",
|
|
199
|
-
"variant": "h2"
|
|
195
|
+
"variant": "h2",
|
|
196
|
+
"type": "typography"
|
|
200
197
|
}
|
|
201
|
-
]
|
|
198
|
+
],
|
|
199
|
+
"gap": "sm",
|
|
200
|
+
"align": "center",
|
|
201
|
+
"direction": "horizontal"
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
"type": "divider"
|
|
@@ -207,9 +207,9 @@
|
|
|
207
207
|
"type": "card",
|
|
208
208
|
"children": [
|
|
209
209
|
{
|
|
210
|
-
"type": "stack",
|
|
211
210
|
"direction": "vertical",
|
|
212
211
|
"gap": "md",
|
|
212
|
+
"type": "stack",
|
|
213
213
|
"children": [
|
|
214
214
|
{
|
|
215
215
|
"type": "typography",
|
|
@@ -218,12 +218,12 @@
|
|
|
218
218
|
},
|
|
219
219
|
{
|
|
220
220
|
"type": "form-section",
|
|
221
|
-
"entity": "ServiceContentPipeline",
|
|
222
|
-
"mode": "edit",
|
|
223
221
|
"submitEvent": "SEARCH",
|
|
222
|
+
"entity": "ServiceContentPipeline",
|
|
224
223
|
"fields": [
|
|
225
224
|
"query"
|
|
226
|
-
]
|
|
225
|
+
],
|
|
226
|
+
"mode": "edit"
|
|
227
227
|
}
|
|
228
228
|
]
|
|
229
229
|
}
|
|
@@ -249,9 +249,9 @@
|
|
|
249
249
|
"youtube",
|
|
250
250
|
"search",
|
|
251
251
|
{
|
|
252
|
+
"type": "video",
|
|
252
253
|
"query": "@entity.query",
|
|
253
|
-
"maxResults": 5
|
|
254
|
-
"type": "video"
|
|
254
|
+
"maxResults": 5.0
|
|
255
255
|
}
|
|
256
256
|
],
|
|
257
257
|
[
|
|
@@ -269,18 +269,18 @@
|
|
|
269
269
|
"size": "lg"
|
|
270
270
|
},
|
|
271
271
|
{
|
|
272
|
-
"type": "typography",
|
|
273
272
|
"content": "Searching YouTube...",
|
|
274
|
-
"variant": "h3"
|
|
273
|
+
"variant": "h3",
|
|
274
|
+
"type": "typography"
|
|
275
275
|
},
|
|
276
276
|
{
|
|
277
277
|
"type": "spinner",
|
|
278
278
|
"size": "lg"
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
|
-
"type": "typography",
|
|
282
281
|
"content": "@entity.query",
|
|
283
|
-
"variant": "caption"
|
|
282
|
+
"variant": "caption",
|
|
283
|
+
"type": "typography"
|
|
284
284
|
}
|
|
285
285
|
]
|
|
286
286
|
}
|
|
@@ -301,39 +301,36 @@
|
|
|
301
301
|
"render-ui",
|
|
302
302
|
"main",
|
|
303
303
|
{
|
|
304
|
-
"type": "stack",
|
|
305
|
-
"direction": "vertical",
|
|
306
|
-
"gap": "lg",
|
|
307
304
|
"children": [
|
|
308
305
|
{
|
|
309
|
-
"type": "stack",
|
|
310
306
|
"direction": "horizontal",
|
|
311
|
-
"gap": "sm",
|
|
312
307
|
"align": "center",
|
|
308
|
+
"gap": "sm",
|
|
309
|
+
"type": "stack",
|
|
313
310
|
"justify": "space-between",
|
|
314
311
|
"children": [
|
|
315
312
|
{
|
|
316
|
-
"type": "stack",
|
|
317
|
-
"direction": "horizontal",
|
|
318
|
-
"gap": "sm",
|
|
319
|
-
"align": "center",
|
|
320
313
|
"children": [
|
|
321
314
|
{
|
|
322
|
-
"
|
|
315
|
+
"size": "lg",
|
|
323
316
|
"name": "video",
|
|
324
|
-
"
|
|
317
|
+
"type": "icon"
|
|
325
318
|
},
|
|
326
319
|
{
|
|
327
|
-
"type": "typography",
|
|
328
320
|
"content": "Search Results",
|
|
321
|
+
"type": "typography",
|
|
329
322
|
"variant": "h2"
|
|
330
323
|
}
|
|
331
|
-
]
|
|
324
|
+
],
|
|
325
|
+
"gap": "sm",
|
|
326
|
+
"type": "stack",
|
|
327
|
+
"direction": "horizontal",
|
|
328
|
+
"align": "center"
|
|
332
329
|
},
|
|
333
330
|
{
|
|
331
|
+
"event": "RESET",
|
|
334
332
|
"type": "button",
|
|
335
333
|
"label": "New Search",
|
|
336
|
-
"event": "RESET",
|
|
337
334
|
"variant": "ghost",
|
|
338
335
|
"icon": "rotate-ccw"
|
|
339
336
|
}
|
|
@@ -343,34 +340,88 @@
|
|
|
343
340
|
"type": "divider"
|
|
344
341
|
},
|
|
345
342
|
{
|
|
346
|
-
"type": "data-grid",
|
|
347
|
-
"entity": "ServiceContentPipeline",
|
|
348
|
-
"emptyIcon": "inbox",
|
|
349
|
-
"emptyTitle": "No results found",
|
|
350
343
|
"emptyDescription": "Try a different search query.",
|
|
351
|
-
"
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
"event": "SELECT_AND_SUMMARIZE",
|
|
355
|
-
"variant": "primary",
|
|
356
|
-
"size": "sm"
|
|
357
|
-
}
|
|
358
|
-
],
|
|
344
|
+
"emptyIcon": "inbox",
|
|
345
|
+
"entity": "ServiceContentPipeline",
|
|
346
|
+
"type": "data-grid",
|
|
359
347
|
"columns": [
|
|
360
348
|
{
|
|
361
|
-
"
|
|
362
|
-
"label": "Title",
|
|
349
|
+
"icon": "video",
|
|
363
350
|
"variant": "h4",
|
|
364
|
-
"
|
|
351
|
+
"label": "Title",
|
|
352
|
+
"name": "videoTitle"
|
|
365
353
|
},
|
|
366
354
|
{
|
|
367
355
|
"name": "videoDescription",
|
|
368
356
|
"label": "Description",
|
|
369
357
|
"variant": "caption"
|
|
370
358
|
}
|
|
371
|
-
]
|
|
359
|
+
],
|
|
360
|
+
"itemActions": [
|
|
361
|
+
{
|
|
362
|
+
"variant": "primary",
|
|
363
|
+
"event": "SELECT_AND_SUMMARIZE",
|
|
364
|
+
"label": "Summarize",
|
|
365
|
+
"size": "sm"
|
|
366
|
+
}
|
|
367
|
+
],
|
|
368
|
+
"emptyTitle": "No results found"
|
|
372
369
|
}
|
|
373
|
-
]
|
|
370
|
+
],
|
|
371
|
+
"type": "stack",
|
|
372
|
+
"gap": "lg",
|
|
373
|
+
"direction": "vertical"
|
|
374
|
+
}
|
|
375
|
+
]
|
|
376
|
+
]
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"from": "searching",
|
|
380
|
+
"to": "error",
|
|
381
|
+
"event": "FAILED",
|
|
382
|
+
"effects": [
|
|
383
|
+
[
|
|
384
|
+
"set",
|
|
385
|
+
"@entity.error",
|
|
386
|
+
"@payload.error"
|
|
387
|
+
],
|
|
388
|
+
[
|
|
389
|
+
"set",
|
|
390
|
+
"@entity.pipelineStatus",
|
|
391
|
+
"error"
|
|
392
|
+
],
|
|
393
|
+
[
|
|
394
|
+
"render-ui",
|
|
395
|
+
"main",
|
|
396
|
+
{
|
|
397
|
+
"gap": "lg",
|
|
398
|
+
"children": [
|
|
399
|
+
{
|
|
400
|
+
"size": "lg",
|
|
401
|
+
"name": "alert-triangle",
|
|
402
|
+
"type": "icon"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"content": "Pipeline Error",
|
|
406
|
+
"variant": "h2",
|
|
407
|
+
"type": "typography"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"type": "alert",
|
|
411
|
+
"message": "@entity.error",
|
|
412
|
+
"variant": "error"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"type": "button",
|
|
416
|
+
"event": "RESET",
|
|
417
|
+
"icon": "rotate-ccw",
|
|
418
|
+
"label": "Try Again",
|
|
419
|
+
"variant": "primary"
|
|
420
|
+
}
|
|
421
|
+
],
|
|
422
|
+
"type": "stack",
|
|
423
|
+
"align": "center",
|
|
424
|
+
"direction": "vertical"
|
|
374
425
|
}
|
|
375
426
|
]
|
|
376
427
|
]
|
|
@@ -398,14 +449,14 @@
|
|
|
398
449
|
"main",
|
|
399
450
|
{
|
|
400
451
|
"type": "stack",
|
|
452
|
+
"align": "center",
|
|
401
453
|
"direction": "vertical",
|
|
402
454
|
"gap": "lg",
|
|
403
|
-
"align": "center",
|
|
404
455
|
"children": [
|
|
405
456
|
{
|
|
406
|
-
"
|
|
457
|
+
"size": "lg",
|
|
407
458
|
"name": "cpu",
|
|
408
|
-
"
|
|
459
|
+
"type": "icon"
|
|
409
460
|
},
|
|
410
461
|
{
|
|
411
462
|
"type": "typography",
|
|
@@ -413,19 +464,89 @@
|
|
|
413
464
|
"variant": "h3"
|
|
414
465
|
},
|
|
415
466
|
{
|
|
416
|
-
"
|
|
417
|
-
"
|
|
467
|
+
"size": "lg",
|
|
468
|
+
"type": "spinner"
|
|
418
469
|
},
|
|
419
470
|
{
|
|
420
471
|
"type": "typography",
|
|
421
|
-
"
|
|
422
|
-
"
|
|
472
|
+
"variant": "caption",
|
|
473
|
+
"content": "@entity.videoTitle"
|
|
423
474
|
}
|
|
424
475
|
]
|
|
425
476
|
}
|
|
426
477
|
]
|
|
427
478
|
]
|
|
428
479
|
},
|
|
480
|
+
{
|
|
481
|
+
"from": "results",
|
|
482
|
+
"to": "idle",
|
|
483
|
+
"event": "RESET",
|
|
484
|
+
"effects": [
|
|
485
|
+
[
|
|
486
|
+
"set",
|
|
487
|
+
"@entity.pipelineStatus",
|
|
488
|
+
"idle"
|
|
489
|
+
],
|
|
490
|
+
[
|
|
491
|
+
"render-ui",
|
|
492
|
+
"main",
|
|
493
|
+
{
|
|
494
|
+
"gap": "lg",
|
|
495
|
+
"type": "stack",
|
|
496
|
+
"children": [
|
|
497
|
+
{
|
|
498
|
+
"gap": "sm",
|
|
499
|
+
"align": "center",
|
|
500
|
+
"type": "stack",
|
|
501
|
+
"children": [
|
|
502
|
+
{
|
|
503
|
+
"name": "search",
|
|
504
|
+
"size": "lg",
|
|
505
|
+
"type": "icon"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"type": "typography",
|
|
509
|
+
"content": "Content Research",
|
|
510
|
+
"variant": "h2"
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
"direction": "horizontal"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"type": "divider"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"type": "card",
|
|
520
|
+
"children": [
|
|
521
|
+
{
|
|
522
|
+
"gap": "md",
|
|
523
|
+
"type": "stack",
|
|
524
|
+
"children": [
|
|
525
|
+
{
|
|
526
|
+
"variant": "body",
|
|
527
|
+
"type": "typography",
|
|
528
|
+
"content": "Search YouTube for content to summarize"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"mode": "edit",
|
|
532
|
+
"entity": "ServiceContentPipeline",
|
|
533
|
+
"submitEvent": "SEARCH",
|
|
534
|
+
"fields": [
|
|
535
|
+
"query"
|
|
536
|
+
],
|
|
537
|
+
"type": "form-section"
|
|
538
|
+
}
|
|
539
|
+
],
|
|
540
|
+
"direction": "vertical"
|
|
541
|
+
}
|
|
542
|
+
]
|
|
543
|
+
}
|
|
544
|
+
],
|
|
545
|
+
"direction": "vertical"
|
|
546
|
+
}
|
|
547
|
+
]
|
|
548
|
+
]
|
|
549
|
+
},
|
|
429
550
|
{
|
|
430
551
|
"from": "summarizing",
|
|
431
552
|
"to": "summarizing",
|
|
@@ -471,21 +592,14 @@
|
|
|
471
592
|
"main",
|
|
472
593
|
{
|
|
473
594
|
"type": "stack",
|
|
474
|
-
"direction": "vertical",
|
|
475
595
|
"gap": "lg",
|
|
596
|
+
"direction": "vertical",
|
|
476
597
|
"children": [
|
|
477
598
|
{
|
|
478
|
-
"type": "stack",
|
|
479
|
-
"direction": "horizontal",
|
|
480
599
|
"gap": "sm",
|
|
481
|
-
"align": "center",
|
|
482
|
-
"justify": "space-between",
|
|
483
600
|
"children": [
|
|
484
601
|
{
|
|
485
|
-
"type": "stack",
|
|
486
602
|
"direction": "horizontal",
|
|
487
|
-
"gap": "sm",
|
|
488
|
-
"align": "center",
|
|
489
603
|
"children": [
|
|
490
604
|
{
|
|
491
605
|
"type": "icon",
|
|
@@ -494,19 +608,26 @@
|
|
|
494
608
|
},
|
|
495
609
|
{
|
|
496
610
|
"type": "typography",
|
|
497
|
-
"
|
|
498
|
-
"
|
|
611
|
+
"variant": "h2",
|
|
612
|
+
"content": "Research Complete"
|
|
499
613
|
}
|
|
500
|
-
]
|
|
614
|
+
],
|
|
615
|
+
"align": "center",
|
|
616
|
+
"type": "stack",
|
|
617
|
+
"gap": "sm"
|
|
501
618
|
},
|
|
502
619
|
{
|
|
503
|
-
"type": "button",
|
|
504
|
-
"label": "New Search",
|
|
505
620
|
"event": "RESET",
|
|
506
621
|
"variant": "ghost",
|
|
507
|
-
"
|
|
622
|
+
"label": "New Search",
|
|
623
|
+
"icon": "rotate-ccw",
|
|
624
|
+
"type": "button"
|
|
508
625
|
}
|
|
509
|
-
]
|
|
626
|
+
],
|
|
627
|
+
"align": "center",
|
|
628
|
+
"justify": "space-between",
|
|
629
|
+
"direction": "horizontal",
|
|
630
|
+
"type": "stack"
|
|
510
631
|
},
|
|
511
632
|
{
|
|
512
633
|
"type": "divider"
|
|
@@ -515,7 +636,6 @@
|
|
|
515
636
|
"type": "card",
|
|
516
637
|
"children": [
|
|
517
638
|
{
|
|
518
|
-
"type": "stack",
|
|
519
639
|
"direction": "vertical",
|
|
520
640
|
"gap": "md",
|
|
521
641
|
"children": [
|
|
@@ -526,14 +646,14 @@
|
|
|
526
646
|
"align": "center",
|
|
527
647
|
"children": [
|
|
528
648
|
{
|
|
649
|
+
"size": "sm",
|
|
529
650
|
"type": "icon",
|
|
530
|
-
"name": "video"
|
|
531
|
-
"size": "sm"
|
|
651
|
+
"name": "video"
|
|
532
652
|
},
|
|
533
653
|
{
|
|
534
654
|
"type": "typography",
|
|
535
|
-
"
|
|
536
|
-
"
|
|
655
|
+
"variant": "h3",
|
|
656
|
+
"content": "@entity.videoTitle"
|
|
537
657
|
}
|
|
538
658
|
]
|
|
539
659
|
},
|
|
@@ -542,15 +662,16 @@
|
|
|
542
662
|
},
|
|
543
663
|
{
|
|
544
664
|
"type": "typography",
|
|
545
|
-
"
|
|
546
|
-
"
|
|
665
|
+
"variant": "caption",
|
|
666
|
+
"content": "Summary"
|
|
547
667
|
},
|
|
548
668
|
{
|
|
549
|
-
"
|
|
669
|
+
"variant": "body",
|
|
550
670
|
"content": "@entity.summary",
|
|
551
|
-
"
|
|
671
|
+
"type": "typography"
|
|
552
672
|
}
|
|
553
|
-
]
|
|
673
|
+
],
|
|
674
|
+
"type": "stack"
|
|
554
675
|
}
|
|
555
676
|
]
|
|
556
677
|
}
|
|
@@ -559,57 +680,6 @@
|
|
|
559
680
|
]
|
|
560
681
|
]
|
|
561
682
|
},
|
|
562
|
-
{
|
|
563
|
-
"from": "searching",
|
|
564
|
-
"to": "error",
|
|
565
|
-
"event": "FAILED",
|
|
566
|
-
"effects": [
|
|
567
|
-
[
|
|
568
|
-
"set",
|
|
569
|
-
"@entity.error",
|
|
570
|
-
"@payload.error"
|
|
571
|
-
],
|
|
572
|
-
[
|
|
573
|
-
"set",
|
|
574
|
-
"@entity.pipelineStatus",
|
|
575
|
-
"error"
|
|
576
|
-
],
|
|
577
|
-
[
|
|
578
|
-
"render-ui",
|
|
579
|
-
"main",
|
|
580
|
-
{
|
|
581
|
-
"type": "stack",
|
|
582
|
-
"direction": "vertical",
|
|
583
|
-
"gap": "lg",
|
|
584
|
-
"align": "center",
|
|
585
|
-
"children": [
|
|
586
|
-
{
|
|
587
|
-
"type": "icon",
|
|
588
|
-
"name": "alert-triangle",
|
|
589
|
-
"size": "lg"
|
|
590
|
-
},
|
|
591
|
-
{
|
|
592
|
-
"type": "typography",
|
|
593
|
-
"content": "Pipeline Error",
|
|
594
|
-
"variant": "h2"
|
|
595
|
-
},
|
|
596
|
-
{
|
|
597
|
-
"type": "alert",
|
|
598
|
-
"variant": "error",
|
|
599
|
-
"message": "@entity.error"
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
"type": "button",
|
|
603
|
-
"label": "Try Again",
|
|
604
|
-
"event": "RESET",
|
|
605
|
-
"variant": "primary",
|
|
606
|
-
"icon": "rotate-ccw"
|
|
607
|
-
}
|
|
608
|
-
]
|
|
609
|
-
}
|
|
610
|
-
]
|
|
611
|
-
]
|
|
612
|
-
},
|
|
613
683
|
{
|
|
614
684
|
"from": "summarizing",
|
|
615
685
|
"to": "error",
|
|
@@ -629,20 +699,20 @@
|
|
|
629
699
|
"render-ui",
|
|
630
700
|
"main",
|
|
631
701
|
{
|
|
702
|
+
"align": "center",
|
|
632
703
|
"type": "stack",
|
|
633
|
-
"direction": "vertical",
|
|
634
704
|
"gap": "lg",
|
|
635
|
-
"
|
|
705
|
+
"direction": "vertical",
|
|
636
706
|
"children": [
|
|
637
707
|
{
|
|
708
|
+
"size": "lg",
|
|
638
709
|
"type": "icon",
|
|
639
|
-
"name": "alert-triangle"
|
|
640
|
-
"size": "lg"
|
|
710
|
+
"name": "alert-triangle"
|
|
641
711
|
},
|
|
642
712
|
{
|
|
643
|
-
"
|
|
713
|
+
"variant": "h2",
|
|
644
714
|
"content": "Pipeline Error",
|
|
645
|
-
"
|
|
715
|
+
"type": "typography"
|
|
646
716
|
},
|
|
647
717
|
{
|
|
648
718
|
"type": "alert",
|
|
@@ -652,9 +722,9 @@
|
|
|
652
722
|
{
|
|
653
723
|
"type": "button",
|
|
654
724
|
"label": "Try Again",
|
|
655
|
-
"event": "RESET",
|
|
656
725
|
"variant": "primary",
|
|
657
|
-
"icon": "rotate-ccw"
|
|
726
|
+
"icon": "rotate-ccw",
|
|
727
|
+
"event": "RESET"
|
|
658
728
|
}
|
|
659
729
|
]
|
|
660
730
|
}
|
|
@@ -695,97 +765,24 @@
|
|
|
695
765
|
"render-ui",
|
|
696
766
|
"main",
|
|
697
767
|
{
|
|
698
|
-
"type": "stack",
|
|
699
|
-
"direction": "vertical",
|
|
700
|
-
"gap": "lg",
|
|
701
768
|
"children": [
|
|
702
769
|
{
|
|
703
|
-
"type": "stack",
|
|
704
|
-
"direction": "horizontal",
|
|
705
770
|
"gap": "sm",
|
|
706
|
-
"align": "center",
|
|
707
771
|
"children": [
|
|
708
772
|
{
|
|
773
|
+
"size": "lg",
|
|
709
774
|
"type": "icon",
|
|
710
|
-
"name": "search"
|
|
711
|
-
"size": "lg"
|
|
775
|
+
"name": "search"
|
|
712
776
|
},
|
|
713
777
|
{
|
|
714
|
-
"type": "typography",
|
|
715
778
|
"content": "Content Research",
|
|
716
|
-
"variant": "h2"
|
|
779
|
+
"variant": "h2",
|
|
780
|
+
"type": "typography"
|
|
717
781
|
}
|
|
718
|
-
]
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"type": "divider"
|
|
722
|
-
},
|
|
723
|
-
{
|
|
724
|
-
"type": "card",
|
|
725
|
-
"children": [
|
|
726
|
-
{
|
|
727
|
-
"type": "stack",
|
|
728
|
-
"direction": "vertical",
|
|
729
|
-
"gap": "md",
|
|
730
|
-
"children": [
|
|
731
|
-
{
|
|
732
|
-
"type": "typography",
|
|
733
|
-
"content": "Search YouTube for content to summarize",
|
|
734
|
-
"variant": "body"
|
|
735
|
-
},
|
|
736
|
-
{
|
|
737
|
-
"type": "form-section",
|
|
738
|
-
"entity": "ServiceContentPipeline",
|
|
739
|
-
"mode": "edit",
|
|
740
|
-
"submitEvent": "SEARCH",
|
|
741
|
-
"fields": [
|
|
742
|
-
"query"
|
|
743
|
-
]
|
|
744
|
-
}
|
|
745
|
-
]
|
|
746
|
-
}
|
|
747
|
-
]
|
|
748
|
-
}
|
|
749
|
-
]
|
|
750
|
-
}
|
|
751
|
-
]
|
|
752
|
-
]
|
|
753
|
-
},
|
|
754
|
-
{
|
|
755
|
-
"from": "results",
|
|
756
|
-
"to": "idle",
|
|
757
|
-
"event": "RESET",
|
|
758
|
-
"effects": [
|
|
759
|
-
[
|
|
760
|
-
"set",
|
|
761
|
-
"@entity.pipelineStatus",
|
|
762
|
-
"idle"
|
|
763
|
-
],
|
|
764
|
-
[
|
|
765
|
-
"render-ui",
|
|
766
|
-
"main",
|
|
767
|
-
{
|
|
768
|
-
"type": "stack",
|
|
769
|
-
"direction": "vertical",
|
|
770
|
-
"gap": "lg",
|
|
771
|
-
"children": [
|
|
772
|
-
{
|
|
782
|
+
],
|
|
773
783
|
"type": "stack",
|
|
774
784
|
"direction": "horizontal",
|
|
775
|
-
"
|
|
776
|
-
"align": "center",
|
|
777
|
-
"children": [
|
|
778
|
-
{
|
|
779
|
-
"type": "icon",
|
|
780
|
-
"name": "search",
|
|
781
|
-
"size": "lg"
|
|
782
|
-
},
|
|
783
|
-
{
|
|
784
|
-
"type": "typography",
|
|
785
|
-
"content": "Content Research",
|
|
786
|
-
"variant": "h2"
|
|
787
|
-
}
|
|
788
|
-
]
|
|
785
|
+
"align": "center"
|
|
789
786
|
},
|
|
790
787
|
{
|
|
791
788
|
"type": "divider"
|
|
@@ -794,29 +791,32 @@
|
|
|
794
791
|
"type": "card",
|
|
795
792
|
"children": [
|
|
796
793
|
{
|
|
797
|
-
"type": "stack",
|
|
798
794
|
"direction": "vertical",
|
|
799
|
-
"gap": "md",
|
|
800
795
|
"children": [
|
|
801
796
|
{
|
|
802
797
|
"type": "typography",
|
|
803
|
-
"
|
|
804
|
-
"
|
|
798
|
+
"variant": "body",
|
|
799
|
+
"content": "Search YouTube for content to summarize"
|
|
805
800
|
},
|
|
806
801
|
{
|
|
807
802
|
"type": "form-section",
|
|
808
|
-
"entity": "ServiceContentPipeline",
|
|
809
|
-
"mode": "edit",
|
|
810
|
-
"submitEvent": "SEARCH",
|
|
811
803
|
"fields": [
|
|
812
804
|
"query"
|
|
813
|
-
]
|
|
805
|
+
],
|
|
806
|
+
"submitEvent": "SEARCH",
|
|
807
|
+
"mode": "edit",
|
|
808
|
+
"entity": "ServiceContentPipeline"
|
|
814
809
|
}
|
|
815
|
-
]
|
|
810
|
+
],
|
|
811
|
+
"gap": "md",
|
|
812
|
+
"type": "stack"
|
|
816
813
|
}
|
|
817
814
|
]
|
|
818
815
|
}
|
|
819
|
-
]
|
|
816
|
+
],
|
|
817
|
+
"gap": "lg",
|
|
818
|
+
"type": "stack",
|
|
819
|
+
"direction": "vertical"
|
|
820
820
|
}
|
|
821
821
|
]
|
|
822
822
|
]
|
|
@@ -841,37 +841,34 @@
|
|
|
841
841
|
"main",
|
|
842
842
|
{
|
|
843
843
|
"type": "stack",
|
|
844
|
-
"direction": "vertical",
|
|
845
844
|
"gap": "lg",
|
|
845
|
+
"direction": "vertical",
|
|
846
846
|
"children": [
|
|
847
847
|
{
|
|
848
|
-
"type": "stack",
|
|
849
|
-
"direction": "horizontal",
|
|
850
|
-
"gap": "sm",
|
|
851
848
|
"align": "center",
|
|
849
|
+
"gap": "sm",
|
|
850
|
+
"type": "stack",
|
|
852
851
|
"children": [
|
|
853
852
|
{
|
|
853
|
+
"size": "lg",
|
|
854
854
|
"type": "icon",
|
|
855
|
-
"name": "search"
|
|
856
|
-
"size": "lg"
|
|
855
|
+
"name": "search"
|
|
857
856
|
},
|
|
858
857
|
{
|
|
859
858
|
"type": "typography",
|
|
860
|
-
"
|
|
861
|
-
"
|
|
859
|
+
"variant": "h2",
|
|
860
|
+
"content": "Content Research"
|
|
862
861
|
}
|
|
863
|
-
]
|
|
862
|
+
],
|
|
863
|
+
"direction": "horizontal"
|
|
864
864
|
},
|
|
865
865
|
{
|
|
866
866
|
"type": "divider"
|
|
867
867
|
},
|
|
868
868
|
{
|
|
869
|
-
"type": "card",
|
|
870
869
|
"children": [
|
|
871
870
|
{
|
|
872
|
-
"type": "stack",
|
|
873
871
|
"direction": "vertical",
|
|
874
|
-
"gap": "md",
|
|
875
872
|
"children": [
|
|
876
873
|
{
|
|
877
874
|
"type": "typography",
|
|
@@ -880,16 +877,19 @@
|
|
|
880
877
|
},
|
|
881
878
|
{
|
|
882
879
|
"type": "form-section",
|
|
883
|
-
"entity": "ServiceContentPipeline",
|
|
884
|
-
"mode": "edit",
|
|
885
|
-
"submitEvent": "SEARCH",
|
|
886
880
|
"fields": [
|
|
887
881
|
"query"
|
|
888
|
-
]
|
|
882
|
+
],
|
|
883
|
+
"entity": "ServiceContentPipeline",
|
|
884
|
+
"submitEvent": "SEARCH",
|
|
885
|
+
"mode": "edit"
|
|
889
886
|
}
|
|
890
|
-
]
|
|
887
|
+
],
|
|
888
|
+
"gap": "md",
|
|
889
|
+
"type": "stack"
|
|
891
890
|
}
|
|
892
|
-
]
|
|
891
|
+
],
|
|
892
|
+
"type": "card"
|
|
893
893
|
}
|
|
894
894
|
]
|
|
895
895
|
}
|
|
@@ -897,7 +897,8 @@
|
|
|
897
897
|
]
|
|
898
898
|
}
|
|
899
899
|
]
|
|
900
|
-
}
|
|
900
|
+
},
|
|
901
|
+
"scope": "collection"
|
|
901
902
|
}
|
|
902
903
|
],
|
|
903
904
|
"pages": [
|
|
@@ -913,4 +914,4 @@
|
|
|
913
914
|
]
|
|
914
915
|
}
|
|
915
916
|
]
|
|
916
|
-
}
|
|
917
|
+
}
|