@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-llm",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-llm as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceLlmOrbital",
|
|
@@ -66,8 +66,69 @@
|
|
|
66
66
|
"traits": [
|
|
67
67
|
{
|
|
68
68
|
"name": "ServiceLlmLlm",
|
|
69
|
-
"linkedEntity": "ServiceLlm",
|
|
70
69
|
"category": "interaction",
|
|
70
|
+
"linkedEntity": "ServiceLlm",
|
|
71
|
+
"emits": [
|
|
72
|
+
{
|
|
73
|
+
"event": "ServiceLlmLoaded",
|
|
74
|
+
"description": "Fired when ServiceLlm finishes loading",
|
|
75
|
+
"scope": "internal",
|
|
76
|
+
"payload": [
|
|
77
|
+
{
|
|
78
|
+
"name": "id",
|
|
79
|
+
"type": "string",
|
|
80
|
+
"required": true
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "inputText",
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "action",
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "result",
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "llmStatus",
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "error",
|
|
100
|
+
"type": "string"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "name",
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "description",
|
|
108
|
+
"type": "string"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "status",
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "createdAt",
|
|
116
|
+
"type": "string"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"event": "ServiceLlmLoadFailed",
|
|
122
|
+
"description": "Fired when ServiceLlm fails to load",
|
|
123
|
+
"scope": "internal",
|
|
124
|
+
"payload": [
|
|
125
|
+
{
|
|
126
|
+
"name": "message",
|
|
127
|
+
"type": "string"
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
}
|
|
131
|
+
],
|
|
71
132
|
"stateMachine": {
|
|
72
133
|
"states": [
|
|
73
134
|
{
|
|
@@ -123,13 +184,27 @@
|
|
|
123
184
|
}
|
|
124
185
|
]
|
|
125
186
|
},
|
|
187
|
+
{
|
|
188
|
+
"key": "RESET",
|
|
189
|
+
"name": "Reset"
|
|
190
|
+
},
|
|
126
191
|
{
|
|
127
192
|
"key": "RETRY",
|
|
128
193
|
"name": "Retry"
|
|
129
194
|
},
|
|
130
195
|
{
|
|
131
|
-
"key": "
|
|
132
|
-
"name": "
|
|
196
|
+
"key": "ServiceLlmLoaded",
|
|
197
|
+
"name": "ServiceLlm loaded"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"key": "ServiceLlmLoadFailed",
|
|
201
|
+
"name": "ServiceLlm load failed",
|
|
202
|
+
"payload": [
|
|
203
|
+
{
|
|
204
|
+
"name": "message",
|
|
205
|
+
"type": "string"
|
|
206
|
+
}
|
|
207
|
+
]
|
|
133
208
|
}
|
|
134
209
|
],
|
|
135
210
|
"transitions": [
|
|
@@ -140,74 +215,80 @@
|
|
|
140
215
|
"effects": [
|
|
141
216
|
[
|
|
142
217
|
"fetch",
|
|
143
|
-
"ServiceLlm"
|
|
218
|
+
"ServiceLlm",
|
|
219
|
+
{
|
|
220
|
+
"emit": {
|
|
221
|
+
"failure": "ServiceLlmLoadFailed",
|
|
222
|
+
"success": "ServiceLlmLoaded"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
144
225
|
],
|
|
145
226
|
[
|
|
146
227
|
"render-ui",
|
|
147
228
|
"main",
|
|
148
229
|
{
|
|
149
|
-
"type": "stack",
|
|
150
|
-
"direction": "vertical",
|
|
151
|
-
"gap": "lg",
|
|
152
|
-
"align": "stretch",
|
|
153
230
|
"children": [
|
|
154
231
|
{
|
|
155
|
-
"type": "stack",
|
|
156
|
-
"direction": "horizontal",
|
|
157
|
-
"gap": "md",
|
|
158
|
-
"align": "center",
|
|
159
232
|
"children": [
|
|
160
233
|
{
|
|
161
234
|
"type": "icon",
|
|
162
|
-
"
|
|
163
|
-
"
|
|
235
|
+
"size": "lg",
|
|
236
|
+
"name": "brain"
|
|
164
237
|
},
|
|
165
238
|
{
|
|
239
|
+
"variant": "h2",
|
|
166
240
|
"type": "typography",
|
|
167
|
-
"content": "ServiceLlm LLM"
|
|
168
|
-
"variant": "h2"
|
|
241
|
+
"content": "ServiceLlm LLM"
|
|
169
242
|
}
|
|
170
|
-
]
|
|
243
|
+
],
|
|
244
|
+
"gap": "md",
|
|
245
|
+
"direction": "horizontal",
|
|
246
|
+
"align": "center",
|
|
247
|
+
"type": "stack"
|
|
171
248
|
},
|
|
172
249
|
{
|
|
173
250
|
"type": "divider"
|
|
174
251
|
},
|
|
175
252
|
{
|
|
176
253
|
"type": "textarea",
|
|
254
|
+
"placeholder": "Enter text for LLM processing...",
|
|
177
255
|
"label": "Input Text",
|
|
178
|
-
"bind": "@entity.inputText"
|
|
179
|
-
"placeholder": "Enter text for LLM processing..."
|
|
256
|
+
"bind": "@entity.inputText"
|
|
180
257
|
},
|
|
181
258
|
{
|
|
182
|
-
"type": "stack",
|
|
183
259
|
"direction": "horizontal",
|
|
260
|
+
"type": "stack",
|
|
184
261
|
"gap": "sm",
|
|
185
262
|
"justify": "center",
|
|
186
263
|
"children": [
|
|
187
264
|
{
|
|
188
265
|
"type": "button",
|
|
189
|
-
"label": "Generate",
|
|
190
266
|
"event": "GENERATE",
|
|
267
|
+
"label": "Generate",
|
|
191
268
|
"variant": "primary",
|
|
192
269
|
"icon": "sparkles"
|
|
193
270
|
},
|
|
194
271
|
{
|
|
195
272
|
"type": "button",
|
|
196
|
-
"label": "Classify",
|
|
197
|
-
"event": "CLASSIFY",
|
|
198
273
|
"variant": "secondary",
|
|
199
|
-
"icon": "tag"
|
|
274
|
+
"icon": "tag",
|
|
275
|
+
"event": "CLASSIFY",
|
|
276
|
+
"label": "Classify"
|
|
200
277
|
},
|
|
201
278
|
{
|
|
202
|
-
"type": "button",
|
|
203
279
|
"label": "Summarize",
|
|
204
|
-
"
|
|
280
|
+
"type": "button",
|
|
281
|
+
"icon": "align-left",
|
|
205
282
|
"variant": "secondary",
|
|
206
|
-
"
|
|
283
|
+
"event": "SUMMARIZE"
|
|
207
284
|
}
|
|
208
285
|
]
|
|
209
286
|
}
|
|
210
|
-
]
|
|
287
|
+
],
|
|
288
|
+
"gap": "lg",
|
|
289
|
+
"align": "stretch",
|
|
290
|
+
"type": "stack",
|
|
291
|
+
"direction": "vertical"
|
|
211
292
|
}
|
|
212
293
|
]
|
|
213
294
|
]
|
|
@@ -226,9 +307,9 @@
|
|
|
226
307
|
"render-ui",
|
|
227
308
|
"main",
|
|
228
309
|
{
|
|
229
|
-
"
|
|
310
|
+
"message": "Running servicellm LLM task...",
|
|
230
311
|
"title": "Processing...",
|
|
231
|
-
"
|
|
312
|
+
"type": "loading-state"
|
|
232
313
|
}
|
|
233
314
|
],
|
|
234
315
|
[
|
|
@@ -255,9 +336,9 @@
|
|
|
255
336
|
"render-ui",
|
|
256
337
|
"main",
|
|
257
338
|
{
|
|
258
|
-
"type": "loading-state",
|
|
259
339
|
"title": "Processing...",
|
|
260
|
-
"message": "Running servicellm LLM task..."
|
|
340
|
+
"message": "Running servicellm LLM task...",
|
|
341
|
+
"type": "loading-state"
|
|
261
342
|
}
|
|
262
343
|
],
|
|
263
344
|
[
|
|
@@ -289,9 +370,9 @@
|
|
|
289
370
|
"render-ui",
|
|
290
371
|
"main",
|
|
291
372
|
{
|
|
373
|
+
"message": "Running servicellm LLM task...",
|
|
292
374
|
"type": "loading-state",
|
|
293
|
-
"title": "Processing..."
|
|
294
|
-
"message": "Running servicellm LLM task..."
|
|
375
|
+
"title": "Processing..."
|
|
295
376
|
}
|
|
296
377
|
],
|
|
297
378
|
[
|
|
@@ -323,15 +404,15 @@
|
|
|
323
404
|
"render-ui",
|
|
324
405
|
"main",
|
|
325
406
|
{
|
|
326
|
-
"type": "stack",
|
|
327
|
-
"direction": "vertical",
|
|
328
407
|
"gap": "lg",
|
|
329
408
|
"align": "center",
|
|
409
|
+
"direction": "vertical",
|
|
410
|
+
"type": "stack",
|
|
330
411
|
"children": [
|
|
331
412
|
{
|
|
332
|
-
"
|
|
413
|
+
"size": "lg",
|
|
333
414
|
"name": "check-circle",
|
|
334
|
-
"
|
|
415
|
+
"type": "icon"
|
|
335
416
|
},
|
|
336
417
|
{
|
|
337
418
|
"type": "alert",
|
|
@@ -339,15 +420,15 @@
|
|
|
339
420
|
"message": "LLM task complete"
|
|
340
421
|
},
|
|
341
422
|
{
|
|
342
|
-
"type": "typography",
|
|
343
423
|
"variant": "body",
|
|
344
|
-
"content": "@entity.result"
|
|
424
|
+
"content": "@entity.result",
|
|
425
|
+
"type": "typography"
|
|
345
426
|
},
|
|
346
427
|
{
|
|
347
428
|
"type": "button",
|
|
429
|
+
"variant": "ghost",
|
|
348
430
|
"label": "Start Over",
|
|
349
431
|
"event": "RESET",
|
|
350
|
-
"variant": "ghost",
|
|
351
432
|
"icon": "rotate-ccw"
|
|
352
433
|
}
|
|
353
434
|
]
|
|
@@ -374,38 +455,38 @@
|
|
|
374
455
|
"render-ui",
|
|
375
456
|
"main",
|
|
376
457
|
{
|
|
377
|
-
"type": "stack",
|
|
378
458
|
"direction": "vertical",
|
|
379
|
-
"gap": "lg",
|
|
380
459
|
"align": "center",
|
|
460
|
+
"gap": "lg",
|
|
461
|
+
"type": "stack",
|
|
381
462
|
"children": [
|
|
382
463
|
{
|
|
464
|
+
"onRetry": "RETRY",
|
|
383
465
|
"type": "error-state",
|
|
384
|
-
"title": "LLM Failed",
|
|
385
466
|
"message": "@entity.error",
|
|
386
|
-
"
|
|
467
|
+
"title": "LLM Failed"
|
|
387
468
|
},
|
|
388
469
|
{
|
|
389
|
-
"type": "stack",
|
|
390
|
-
"direction": "horizontal",
|
|
391
|
-
"gap": "sm",
|
|
392
470
|
"justify": "center",
|
|
393
471
|
"children": [
|
|
394
472
|
{
|
|
395
|
-
"type": "button",
|
|
396
473
|
"label": "Retry",
|
|
397
|
-
"
|
|
474
|
+
"icon": "refresh-cw",
|
|
398
475
|
"variant": "primary",
|
|
399
|
-
"
|
|
476
|
+
"event": "RETRY",
|
|
477
|
+
"type": "button"
|
|
400
478
|
},
|
|
401
479
|
{
|
|
402
|
-
"
|
|
480
|
+
"icon": "rotate-ccw",
|
|
403
481
|
"label": "Reset",
|
|
404
|
-
"event": "RESET",
|
|
405
482
|
"variant": "ghost",
|
|
406
|
-
"
|
|
483
|
+
"event": "RESET",
|
|
484
|
+
"type": "button"
|
|
407
485
|
}
|
|
408
|
-
]
|
|
486
|
+
],
|
|
487
|
+
"type": "stack",
|
|
488
|
+
"direction": "horizontal",
|
|
489
|
+
"gap": "sm"
|
|
409
490
|
}
|
|
410
491
|
]
|
|
411
492
|
}
|
|
@@ -413,9 +494,9 @@
|
|
|
413
494
|
]
|
|
414
495
|
},
|
|
415
496
|
{
|
|
416
|
-
"from": "
|
|
497
|
+
"from": "complete",
|
|
417
498
|
"to": "idle",
|
|
418
|
-
"event": "
|
|
499
|
+
"event": "RESET",
|
|
419
500
|
"effects": [
|
|
420
501
|
[
|
|
421
502
|
"set",
|
|
@@ -426,66 +507,66 @@
|
|
|
426
507
|
"render-ui",
|
|
427
508
|
"main",
|
|
428
509
|
{
|
|
429
|
-
"type": "stack",
|
|
430
|
-
"direction": "vertical",
|
|
431
510
|
"gap": "lg",
|
|
511
|
+
"type": "stack",
|
|
432
512
|
"align": "stretch",
|
|
513
|
+
"direction": "vertical",
|
|
433
514
|
"children": [
|
|
434
515
|
{
|
|
435
|
-
"type": "stack",
|
|
436
|
-
"direction": "horizontal",
|
|
437
|
-
"gap": "md",
|
|
438
516
|
"align": "center",
|
|
439
517
|
"children": [
|
|
440
518
|
{
|
|
519
|
+
"size": "lg",
|
|
441
520
|
"type": "icon",
|
|
442
|
-
"name": "brain"
|
|
443
|
-
"size": "lg"
|
|
521
|
+
"name": "brain"
|
|
444
522
|
},
|
|
445
523
|
{
|
|
446
|
-
"type": "typography",
|
|
447
524
|
"content": "ServiceLlm LLM",
|
|
448
|
-
"variant": "h2"
|
|
525
|
+
"variant": "h2",
|
|
526
|
+
"type": "typography"
|
|
449
527
|
}
|
|
450
|
-
]
|
|
528
|
+
],
|
|
529
|
+
"type": "stack",
|
|
530
|
+
"direction": "horizontal",
|
|
531
|
+
"gap": "md"
|
|
451
532
|
},
|
|
452
533
|
{
|
|
453
534
|
"type": "divider"
|
|
454
535
|
},
|
|
455
536
|
{
|
|
456
|
-
"type": "textarea",
|
|
457
|
-
"label": "Input Text",
|
|
458
537
|
"bind": "@entity.inputText",
|
|
538
|
+
"label": "Input Text",
|
|
539
|
+
"type": "textarea",
|
|
459
540
|
"placeholder": "Enter text for LLM processing..."
|
|
460
541
|
},
|
|
461
542
|
{
|
|
462
543
|
"type": "stack",
|
|
463
|
-
"direction": "horizontal",
|
|
464
544
|
"gap": "sm",
|
|
465
545
|
"justify": "center",
|
|
466
546
|
"children": [
|
|
467
547
|
{
|
|
468
548
|
"type": "button",
|
|
469
|
-
"label": "Generate",
|
|
470
|
-
"event": "GENERATE",
|
|
471
549
|
"variant": "primary",
|
|
472
|
-
"
|
|
550
|
+
"event": "GENERATE",
|
|
551
|
+
"icon": "sparkles",
|
|
552
|
+
"label": "Generate"
|
|
473
553
|
},
|
|
474
554
|
{
|
|
475
|
-
"type": "button",
|
|
476
|
-
"label": "Classify",
|
|
477
|
-
"event": "CLASSIFY",
|
|
478
555
|
"variant": "secondary",
|
|
479
|
-
"icon": "tag"
|
|
556
|
+
"icon": "tag",
|
|
557
|
+
"label": "Classify",
|
|
558
|
+
"type": "button",
|
|
559
|
+
"event": "CLASSIFY"
|
|
480
560
|
},
|
|
481
561
|
{
|
|
482
|
-
"type": "button",
|
|
483
562
|
"label": "Summarize",
|
|
484
563
|
"event": "SUMMARIZE",
|
|
485
|
-
"
|
|
486
|
-
"icon": "align-left"
|
|
564
|
+
"type": "button",
|
|
565
|
+
"icon": "align-left",
|
|
566
|
+
"variant": "secondary"
|
|
487
567
|
}
|
|
488
|
-
]
|
|
568
|
+
],
|
|
569
|
+
"direction": "horizontal"
|
|
489
570
|
}
|
|
490
571
|
]
|
|
491
572
|
}
|
|
@@ -493,9 +574,9 @@
|
|
|
493
574
|
]
|
|
494
575
|
},
|
|
495
576
|
{
|
|
496
|
-
"from": "
|
|
577
|
+
"from": "error",
|
|
497
578
|
"to": "idle",
|
|
498
|
-
"event": "
|
|
579
|
+
"event": "RETRY",
|
|
499
580
|
"effects": [
|
|
500
581
|
[
|
|
501
582
|
"set",
|
|
@@ -506,26 +587,24 @@
|
|
|
506
587
|
"render-ui",
|
|
507
588
|
"main",
|
|
508
589
|
{
|
|
509
|
-
"type": "stack",
|
|
510
|
-
"direction": "vertical",
|
|
511
|
-
"gap": "lg",
|
|
512
590
|
"align": "stretch",
|
|
591
|
+
"type": "stack",
|
|
513
592
|
"children": [
|
|
514
593
|
{
|
|
515
594
|
"type": "stack",
|
|
516
|
-
"direction": "horizontal",
|
|
517
595
|
"gap": "md",
|
|
596
|
+
"direction": "horizontal",
|
|
518
597
|
"align": "center",
|
|
519
598
|
"children": [
|
|
520
599
|
{
|
|
521
|
-
"
|
|
600
|
+
"size": "lg",
|
|
522
601
|
"name": "brain",
|
|
523
|
-
"
|
|
602
|
+
"type": "icon"
|
|
524
603
|
},
|
|
525
604
|
{
|
|
526
|
-
"
|
|
605
|
+
"variant": "h2",
|
|
527
606
|
"content": "ServiceLlm LLM",
|
|
528
|
-
"
|
|
607
|
+
"type": "typography"
|
|
529
608
|
}
|
|
530
609
|
]
|
|
531
610
|
},
|
|
@@ -533,20 +612,16 @@
|
|
|
533
612
|
"type": "divider"
|
|
534
613
|
},
|
|
535
614
|
{
|
|
536
|
-
"type": "textarea",
|
|
537
615
|
"label": "Input Text",
|
|
538
616
|
"bind": "@entity.inputText",
|
|
617
|
+
"type": "textarea",
|
|
539
618
|
"placeholder": "Enter text for LLM processing..."
|
|
540
619
|
},
|
|
541
620
|
{
|
|
542
|
-
"type": "stack",
|
|
543
|
-
"direction": "horizontal",
|
|
544
|
-
"gap": "sm",
|
|
545
|
-
"justify": "center",
|
|
546
621
|
"children": [
|
|
547
622
|
{
|
|
548
|
-
"type": "button",
|
|
549
623
|
"label": "Generate",
|
|
624
|
+
"type": "button",
|
|
550
625
|
"event": "GENERATE",
|
|
551
626
|
"variant": "primary",
|
|
552
627
|
"icon": "sparkles"
|
|
@@ -559,15 +634,21 @@
|
|
|
559
634
|
"icon": "tag"
|
|
560
635
|
},
|
|
561
636
|
{
|
|
562
|
-
"type": "button",
|
|
563
|
-
"label": "Summarize",
|
|
564
637
|
"event": "SUMMARIZE",
|
|
638
|
+
"type": "button",
|
|
565
639
|
"variant": "secondary",
|
|
640
|
+
"label": "Summarize",
|
|
566
641
|
"icon": "align-left"
|
|
567
642
|
}
|
|
568
|
-
]
|
|
643
|
+
],
|
|
644
|
+
"type": "stack",
|
|
645
|
+
"gap": "sm",
|
|
646
|
+
"direction": "horizontal",
|
|
647
|
+
"justify": "center"
|
|
569
648
|
}
|
|
570
|
-
]
|
|
649
|
+
],
|
|
650
|
+
"gap": "lg",
|
|
651
|
+
"direction": "vertical"
|
|
571
652
|
}
|
|
572
653
|
]
|
|
573
654
|
]
|
|
@@ -586,16 +667,11 @@
|
|
|
586
667
|
"render-ui",
|
|
587
668
|
"main",
|
|
588
669
|
{
|
|
589
|
-
"type": "stack",
|
|
590
670
|
"direction": "vertical",
|
|
591
671
|
"gap": "lg",
|
|
592
|
-
"align": "stretch",
|
|
593
672
|
"children": [
|
|
594
673
|
{
|
|
595
|
-
"type": "stack",
|
|
596
674
|
"direction": "horizontal",
|
|
597
|
-
"gap": "md",
|
|
598
|
-
"align": "center",
|
|
599
675
|
"children": [
|
|
600
676
|
{
|
|
601
677
|
"type": "icon",
|
|
@@ -604,39 +680,42 @@
|
|
|
604
680
|
},
|
|
605
681
|
{
|
|
606
682
|
"type": "typography",
|
|
607
|
-
"
|
|
608
|
-
"
|
|
683
|
+
"variant": "h2",
|
|
684
|
+
"content": "ServiceLlm LLM"
|
|
609
685
|
}
|
|
610
|
-
]
|
|
686
|
+
],
|
|
687
|
+
"gap": "md",
|
|
688
|
+
"type": "stack",
|
|
689
|
+
"align": "center"
|
|
611
690
|
},
|
|
612
691
|
{
|
|
613
692
|
"type": "divider"
|
|
614
693
|
},
|
|
615
694
|
{
|
|
616
|
-
"type": "textarea",
|
|
617
|
-
"label": "Input Text",
|
|
618
695
|
"bind": "@entity.inputText",
|
|
696
|
+
"label": "Input Text",
|
|
697
|
+
"type": "textarea",
|
|
619
698
|
"placeholder": "Enter text for LLM processing..."
|
|
620
699
|
},
|
|
621
700
|
{
|
|
622
|
-
"type": "stack",
|
|
623
701
|
"direction": "horizontal",
|
|
624
702
|
"gap": "sm",
|
|
703
|
+
"type": "stack",
|
|
625
704
|
"justify": "center",
|
|
626
705
|
"children": [
|
|
627
706
|
{
|
|
628
|
-
"type": "button",
|
|
629
|
-
"label": "Generate",
|
|
630
707
|
"event": "GENERATE",
|
|
631
708
|
"variant": "primary",
|
|
632
|
-
"
|
|
709
|
+
"type": "button",
|
|
710
|
+
"icon": "sparkles",
|
|
711
|
+
"label": "Generate"
|
|
633
712
|
},
|
|
634
713
|
{
|
|
635
|
-
"type": "button",
|
|
636
714
|
"label": "Classify",
|
|
637
|
-
"event": "CLASSIFY",
|
|
638
715
|
"variant": "secondary",
|
|
639
|
-
"
|
|
716
|
+
"event": "CLASSIFY",
|
|
717
|
+
"icon": "tag",
|
|
718
|
+
"type": "button"
|
|
640
719
|
},
|
|
641
720
|
{
|
|
642
721
|
"type": "button",
|
|
@@ -647,13 +726,16 @@
|
|
|
647
726
|
}
|
|
648
727
|
]
|
|
649
728
|
}
|
|
650
|
-
]
|
|
729
|
+
],
|
|
730
|
+
"type": "stack",
|
|
731
|
+
"align": "stretch"
|
|
651
732
|
}
|
|
652
733
|
]
|
|
653
734
|
]
|
|
654
735
|
}
|
|
655
736
|
]
|
|
656
|
-
}
|
|
737
|
+
},
|
|
738
|
+
"scope": "instance"
|
|
657
739
|
}
|
|
658
740
|
],
|
|
659
741
|
"pages": [
|
|
@@ -669,4 +751,4 @@
|
|
|
669
751
|
]
|
|
670
752
|
}
|
|
671
753
|
]
|
|
672
|
-
}
|
|
754
|
+
}
|