@abot-ai/runtime 1.1.0 → 1.3.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/README.md +20 -3
- package/dist/src/bridge/request-steering.d.ts +2 -1
- package/dist/src/bridge/request-steering.js +4 -2
- package/dist/src/bridge/runtime-replay.js +2 -19
- package/dist/src/bridge/start-agent-bridge.js +1 -1
- package/dist/src/capabilities/normal-invocation/validator.js +1 -1
- package/dist/src/capabilities/tool-definition-validator/event-presentation.js +3 -0
- package/dist/src/capabilities/tool-definition-validator/event-result-metadata.d.ts +2 -0
- package/dist/src/capabilities/tool-definition-validator/event-result-metadata.js +74 -0
- package/dist/src/capabilities/tool-event-metadata.js +3 -0
- package/dist/src/capabilities/tool-result-event-projection.d.ts +3 -0
- package/dist/src/capabilities/tool-result-event-projection.js +82 -0
- package/dist/src/capabilities/tool-types.d.ts +6 -1
- package/dist/src/cli/abot.js +2 -11
- package/dist/src/model-gateway/providers/ollama/generation-options.d.ts +1 -3
- package/dist/src/model-gateway/providers/ollama/generation-options.js +1 -5
- package/dist/src/model-gateway/providers/ollama/payload.js +0 -8
- package/dist/src/model-gateway/server/request-body.js +1 -0
- package/dist/src/plugin-sdk/index.d.ts +2 -0
- package/dist/src/plugin-sdk/index.js +2 -0
- package/dist/src/plugin-sdk/tool-availability-brief.d.ts +9 -0
- package/dist/src/plugin-sdk/tool-availability-brief.js +48 -0
- package/dist/src/plugin-sdk/tool-availability-overview.d.ts +9 -0
- package/dist/src/plugin-sdk/tool-availability-overview.js +62 -0
- package/dist/src/runtime/adapters/in-memory-session-store.js +1 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/acquisition.js +11 -2
- package/dist/src/runtime/adapters/long-term-memory/file-lock/contracts.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/synchronous-release.d.ts +2 -0
- package/dist/src/runtime/adapters/long-term-memory/file-lock/synchronous-release.js +40 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/approval.d.ts +3 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/approval.js +9 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/rejection-event.d.ts +13 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/rejection-event.js +25 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/run.js +18 -2
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/executor.js +8 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/payload/lifecycle.js +7 -3
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/contracts.d.ts +17 -2
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/event-metadata.d.ts +9 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/event-metadata.js +8 -0
- package/dist/src/runtime/adapters/registered-tool-payload-plan.d.ts +0 -9
- package/dist/src/runtime/adapters/registered-tool-payload-plan.js +0 -67
- package/dist/src/runtime/adapters/registered-tool-payload-related-artifacts.d.ts +13 -0
- package/dist/src/runtime/adapters/registered-tool-payload-related-artifacts.js +84 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/catalog.js +4 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/execution.js +19 -1
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-lifecycle.d.ts +1 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-lifecycle.js +11 -1
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-observability.js +2 -2
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-stages.d.ts +1 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-stages.js +9 -1
- package/dist/src/runtime/adapters/scheduled-request-outcome.d.ts +11 -0
- package/dist/src/runtime/adapters/scheduled-request-outcome.js +41 -0
- package/dist/src/runtime/adapters/scheduler-runtime.d.ts +19 -0
- package/dist/src/runtime/adapters/scheduler-runtime.js +138 -0
- package/dist/src/runtime/capabilities/request-bound-tool-registry.js +1 -24
- package/dist/src/runtime/capabilities/scheduling/create-operations.d.ts +55 -0
- package/dist/src/runtime/capabilities/scheduling/create-operations.js +30 -0
- package/dist/src/runtime/capabilities/scheduling/create-time-zone.d.ts +1 -0
- package/dist/src/runtime/capabilities/scheduling/create-time-zone.js +11 -0
- package/dist/src/runtime/capabilities/scheduling/job-list-page.d.ts +25 -0
- package/dist/src/runtime/capabilities/scheduling/job-list-page.js +40 -0
- package/dist/src/runtime/capabilities/scheduling/model-validation.d.ts +2 -0
- package/dist/src/runtime/capabilities/scheduling/model-validation.js +15 -0
- package/dist/src/runtime/capabilities/scheduling/tool-contract.d.ts +2 -0
- package/dist/src/runtime/capabilities/scheduling/tool-contract.js +35 -0
- package/dist/src/runtime/capabilities/scheduling/tool-input-properties.d.ts +43 -0
- package/dist/src/runtime/capabilities/scheduling/tool-input-properties.js +27 -0
- package/dist/src/runtime/capabilities/scheduling/tool-module.d.ts +4 -0
- package/dist/src/runtime/capabilities/scheduling/tool-module.js +158 -0
- package/dist/src/runtime/capabilities/scheduling/update-operations.d.ts +2 -0
- package/dist/src/runtime/capabilities/scheduling/update-operations.js +49 -0
- package/dist/src/runtime/capabilities/tool-availability.d.ts +6 -0
- package/dist/src/runtime/capabilities/tool-availability.js +28 -0
- package/dist/src/runtime/composition.d.ts +23 -3
- package/dist/src/runtime/composition.js +12 -17
- package/dist/src/runtime/config/environment-paths.d.ts +10 -0
- package/dist/src/runtime/config/environment-paths.js +31 -0
- package/dist/src/runtime/config/environment-storage.d.ts +9 -0
- package/dist/src/runtime/config/environment-storage.js +65 -0
- package/dist/src/runtime/config/fields.js +7 -0
- package/dist/src/runtime/config/long-term-memory.js +15 -0
- package/dist/src/runtime/config/schema.js +8 -0
- package/dist/src/runtime/config.js +9 -5
- package/dist/src/runtime/context/capability-brief.d.ts +25 -0
- package/dist/src/runtime/context/capability-brief.js +106 -0
- package/dist/src/runtime/context/request-tool-results-message-binding.d.ts +6 -0
- package/dist/src/runtime/context/request-tool-results-message-binding.js +30 -0
- package/dist/src/runtime/context/request-tool-results-scope.d.ts +3 -0
- package/dist/src/runtime/context/request-tool-results-scope.js +8 -0
- package/dist/src/runtime/context/request-tool-results.d.ts +8 -4
- package/dist/src/runtime/context/request-tool-results.js +49 -38
- package/dist/src/runtime/context/scheduled-execution-context.d.ts +10 -0
- package/dist/src/runtime/context/scheduled-execution-context.js +52 -0
- package/dist/src/runtime/default-adapters.d.ts +3 -32
- package/dist/src/runtime/default-adapters.js +3 -270
- package/dist/src/runtime/default-environment-adapters.d.ts +19 -0
- package/dist/src/runtime/default-environment-adapters.js +144 -0
- package/dist/src/runtime/index.d.ts +5 -0
- package/dist/src/runtime/index.js +4 -0
- package/dist/src/runtime/local-application.d.ts +22 -0
- package/dist/src/runtime/local-application.js +81 -0
- package/dist/src/runtime/local-host/app-memory-dispatch.d.ts +11 -0
- package/dist/src/runtime/local-host/app-memory-dispatch.js +103 -0
- package/dist/src/runtime/local-host/app-owner.d.ts +4 -0
- package/dist/src/runtime/local-host/app-owner.js +119 -0
- package/dist/src/runtime/local-host/app-request-control.d.ts +24 -0
- package/dist/src/runtime/local-host/app-request-control.js +135 -0
- package/dist/src/runtime/local-host/app-service-dispatch.d.ts +5 -0
- package/dist/src/runtime/local-host/app-service-dispatch.js +64 -0
- package/dist/src/runtime/local-host/client-identity.d.ts +3 -0
- package/dist/src/runtime/local-host/client-identity.js +17 -0
- package/dist/src/runtime/local-host/client-memory.d.ts +7 -0
- package/dist/src/runtime/local-host/client-memory.js +54 -0
- package/dist/src/runtime/local-host/client-requests.d.ts +19 -0
- package/dist/src/runtime/local-host/client-requests.js +145 -0
- package/dist/src/runtime/local-host/client-services.d.ts +10 -0
- package/dist/src/runtime/local-host/client-services.js +14 -0
- package/dist/src/runtime/local-host/contracts.d.ts +36 -0
- package/dist/src/runtime/local-host/contracts.js +1 -0
- package/dist/src/runtime/local-host/endpoint.d.ts +7 -0
- package/dist/src/runtime/local-host/endpoint.js +79 -0
- package/dist/src/runtime/local-host/owner-activity.d.ts +10 -0
- package/dist/src/runtime/local-host/owner-activity.js +30 -0
- package/dist/src/runtime/local-host/owner-retirement.d.ts +3 -0
- package/dist/src/runtime/local-host/owner-retirement.js +15 -0
- package/dist/src/runtime/local-host/owner-server.d.ts +6 -0
- package/dist/src/runtime/local-host/owner-server.js +88 -0
- package/dist/src/runtime/local-host/private-access.d.ts +2 -0
- package/dist/src/runtime/local-host/private-access.js +16 -0
- package/dist/src/runtime/local-host/private-directory.d.ts +1 -0
- package/dist/src/runtime/local-host/private-directory.js +57 -0
- package/dist/src/runtime/local-host/rpc-peer.d.ts +22 -0
- package/dist/src/runtime/local-host/rpc-peer.js +168 -0
- package/dist/src/runtime/local-host/rpc-protocol.d.ts +21 -0
- package/dist/src/runtime/local-host/rpc-protocol.js +46 -0
- package/dist/src/runtime/local-host/startup-connection.d.ts +5 -0
- package/dist/src/runtime/local-host/startup-connection.js +72 -0
- package/dist/src/runtime/local-host/transport.d.ts +3 -0
- package/dist/src/runtime/local-host/transport.js +88 -0
- package/dist/src/runtime/local-host/windows-private-access.d.ts +1 -0
- package/dist/src/runtime/local-host/windows-private-access.js +51 -0
- package/dist/src/runtime/long-term-memory/onboarding/configuration.js +6 -0
- package/dist/src/runtime/long-term-memory/recall-binding.d.ts +3 -0
- package/dist/src/runtime/long-term-memory/recall-binding.js +27 -0
- package/dist/src/runtime/long-term-memory/recall-context.d.ts +20 -0
- package/dist/src/runtime/long-term-memory/recall-context.js +101 -0
- package/dist/src/runtime/long-term-memory/recall-continuation.d.ts +8 -0
- package/dist/src/runtime/long-term-memory/recall-continuation.js +36 -0
- package/dist/src/runtime/long-term-memory/recall-policy.d.ts +7 -0
- package/dist/src/runtime/long-term-memory/recall-policy.js +14 -0
- package/dist/src/runtime/long-term-memory/recall-result.d.ts +5 -0
- package/dist/src/runtime/long-term-memory/recall-result.js +54 -0
- package/dist/src/runtime/long-term-memory/repository-state.d.ts +2 -1
- package/dist/src/runtime/long-term-memory/repository-state.js +2 -2
- package/dist/src/runtime/model/invoke-raw-step.d.ts +1 -0
- package/dist/src/runtime/model/invoke-raw-step.js +1 -0
- package/dist/src/runtime/model/invoke-step.js +6 -0
- package/dist/src/runtime/model/invoke-structured-step.d.ts +1 -0
- package/dist/src/runtime/model/invoke-structured-step.js +1 -0
- package/dist/src/runtime/model/model-step-port.d.ts +2 -0
- package/dist/src/runtime/model/model-step-steering.d.ts +8 -0
- package/dist/src/runtime/model/model-step-steering.js +19 -0
- package/dist/src/runtime/orchestration/final-response/authoring-contract.js +1 -1
- package/dist/src/runtime/orchestration/final-response/invoke.d.ts +1 -0
- package/dist/src/runtime/orchestration/final-response/invoke.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/activation-budget.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/candidate-validation.js +17 -50
- package/dist/src/runtime/orchestration/role-calls/capability-selection-reconsideration.d.ts +9 -0
- package/dist/src/runtime/orchestration/role-calls/capability-selection-reconsideration.js +17 -8
- package/dist/src/runtime/orchestration/role-calls/capability-selection-supervision-validation.d.ts +2 -0
- package/dist/src/runtime/orchestration/role-calls/capability-selection-supervision-validation.js +62 -0
- package/dist/src/runtime/orchestration/role-calls/child-return.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-calls/child-return.js +25 -5
- package/dist/src/runtime/orchestration/role-calls/command-decoder.js +12 -3
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/child-transitions.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/child-transitions.js +17 -2
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/memory-recall-transitions.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch/memory-recall-transitions.js +89 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/command-dispatch.js +7 -2
- package/dist/src/runtime/orchestration/role-calls/contracts.d.ts +12 -7
- package/dist/src/runtime/orchestration/role-calls/contracts.js +4 -4
- package/dist/src/runtime/orchestration/role-calls/dependency-results.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/dependency-results.js +1 -0
- package/dist/src/runtime/orchestration/role-calls/diagnostics.js +3 -0
- package/dist/src/runtime/orchestration/role-calls/index.d.ts +6 -1
- package/dist/src/runtime/orchestration/role-calls/index.js +6 -1
- package/dist/src/runtime/orchestration/role-calls/ledger.d.ts +3 -1
- package/dist/src/runtime/orchestration/role-calls/ledger.js +9 -2
- package/dist/src/runtime/orchestration/role-calls/memory-recall-contract.d.ts +51 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-contract.js +4 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-decoder.d.ts +6 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-decoder.js +147 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-diagnostics.d.ts +5 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-diagnostics.js +27 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-state-validation.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-state-validation.js +121 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-transactions.d.ts +3 -0
- package/dist/src/runtime/orchestration/role-calls/memory-recall-transactions.js +44 -0
- package/dist/src/runtime/orchestration/role-calls/reducer.d.ts +1 -1
- package/dist/src/runtime/orchestration/role-calls/reducer.js +3 -2
- package/dist/src/runtime/orchestration/role-calls/result-receipt.d.ts +49 -0
- package/dist/src/runtime/orchestration/role-calls/result-receipt.js +188 -0
- package/dist/src/runtime/orchestration/role-calls/return-result-receipt.d.ts +19 -0
- package/dist/src/runtime/orchestration/role-calls/return-result-receipt.js +52 -0
- package/dist/src/runtime/orchestration/role-calls/transaction-effect.d.ts +5 -0
- package/dist/src/runtime/orchestration/role-calls/transaction-effect.js +14 -0
- package/dist/src/runtime/orchestration/role-calls/transactions.js +4 -24
- package/dist/src/runtime/orchestration/role-calls/work-result-lineage.d.ts +34 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-lineage.js +185 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-receipt.d.ts +36 -0
- package/dist/src/runtime/orchestration/role-calls/work-result-receipt.js +187 -0
- package/dist/src/runtime/orchestration/role-executors/activation/result-normalization.js +6 -3
- package/dist/src/runtime/orchestration/role-executors/child-invocation/transaction.js +1 -0
- package/dist/src/runtime/orchestration/role-executors/contracts.d.ts +2 -1
- package/dist/src/runtime/orchestration/worker-capabilities/assignment-provenance.d.ts +36 -0
- package/dist/src/runtime/orchestration/worker-capabilities/assignment-provenance.js +171 -0
- package/dist/src/runtime/orchestration/worker-capabilities/contracts.d.ts +32 -1
- package/dist/src/runtime/orchestration/worker-capabilities/execution/invocation-preparation.d.ts +2 -1
- package/dist/src/runtime/orchestration/worker-capabilities/execution/invocation-preparation.js +3 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution.js +42 -19
- package/dist/src/runtime/orchestration/worker-capabilities/index.d.ts +2 -0
- package/dist/src/runtime/orchestration/worker-capabilities/index.js +2 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-assignment-validation.d.ts +3 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-assignment-validation.js +30 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-author.js +8 -19
- package/dist/src/runtime/orchestration/worker-capabilities/payload-contracts.d.ts +5 -1
- package/dist/src/runtime/orchestration/worker-capabilities/payload-instructions.js +1 -1
- package/dist/src/runtime/orchestration/worker-capabilities/payload-source-provenance.d.ts +14 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-source-provenance.js +132 -0
- package/dist/src/runtime/plugins/manifest-validator.js +4 -1
- package/dist/src/runtime/ports.d.ts +4 -0
- package/dist/src/runtime/request/bound-runtime-handler.d.ts +2 -0
- package/dist/src/runtime/request/bound-runtime-handler.js +25 -0
- package/dist/src/runtime/request/capability-brief.d.ts +5 -0
- package/dist/src/runtime/request/capability-brief.js +24 -0
- package/dist/src/runtime/request/contracts.d.ts +6 -0
- package/dist/src/runtime/request/execution-agent-root-execution.js +12 -0
- package/dist/src/runtime/request/execution-facets.js +6 -0
- package/dist/src/runtime/request/execution-scope-surfaces.js +10 -0
- package/dist/src/runtime/request/execution-scope.d.ts +3 -2
- package/dist/src/runtime/request/handler.js +6 -0
- package/dist/src/runtime/request/role-executor-composition.js +1 -1
- package/dist/src/runtime/request/root-contract.d.ts +7 -1
- package/dist/src/runtime/request/root-execution-kernel.js +33 -37
- package/dist/src/runtime/request/root-memory-recall.d.ts +11 -0
- package/dist/src/runtime/request/root-memory-recall.js +71 -0
- package/dist/src/runtime/request/root-observation-handoff.d.ts +17 -0
- package/dist/src/runtime/request/root-observation-handoff.js +44 -0
- package/dist/src/runtime/request/scheduled-execution.d.ts +9 -0
- package/dist/src/runtime/request/scheduled-execution.js +32 -0
- package/dist/src/runtime/request/session-admission.d.ts +17 -0
- package/dist/src/runtime/request/session-admission.js +88 -0
- package/dist/src/runtime/request/supervisor-root-execution-diagnostics.d.ts +1 -1
- package/dist/src/runtime/request/supervisor-root-execution.js +8 -0
- package/dist/src/runtime/request/worker-capability-composition.d.ts +2 -1
- package/dist/src/runtime/request/worker-capability-composition.js +6 -1
- package/dist/src/runtime/request/worker-capability-payload.js +11 -8
- package/dist/src/runtime/runtime-environment.d.ts +31 -0
- package/dist/src/runtime/runtime-environment.js +102 -0
- package/dist/src/runtime/runtime-host-environment.d.ts +8 -0
- package/dist/src/runtime/runtime-host-environment.js +57 -0
- package/dist/src/runtime/runtime-host-lifecycle.d.ts +4 -0
- package/dist/src/runtime/runtime-host-lifecycle.js +64 -0
- package/dist/src/runtime/runtime-host-scheduler-ownership.d.ts +5 -0
- package/dist/src/runtime/runtime-host-scheduler-ownership.js +67 -0
- package/dist/src/runtime/runtime-host.d.ts +19 -0
- package/dist/src/runtime/runtime-host.js +63 -0
- package/dist/src/runtime/scheduler/calendar-time.d.ts +10 -0
- package/dist/src/runtime/scheduler/calendar-time.js +58 -0
- package/dist/src/runtime/scheduler/contracts.d.ts +143 -0
- package/dist/src/runtime/scheduler/contracts.js +1 -0
- package/dist/src/runtime/scheduler/file-store.d.ts +2 -0
- package/dist/src/runtime/scheduler/file-store.js +76 -0
- package/dist/src/runtime/scheduler/instant-validation.d.ts +4 -0
- package/dist/src/runtime/scheduler/instant-validation.js +69 -0
- package/dist/src/runtime/scheduler/interval-range.d.ts +8 -0
- package/dist/src/runtime/scheduler/interval-range.js +24 -0
- package/dist/src/runtime/scheduler/job-management.d.ts +8 -0
- package/dist/src/runtime/scheduler/job-management.js +212 -0
- package/dist/src/runtime/scheduler/journal-checkpoint.d.ts +9 -0
- package/dist/src/runtime/scheduler/journal-checkpoint.js +45 -0
- package/dist/src/runtime/scheduler/journal-durability.d.ts +8 -0
- package/dist/src/runtime/scheduler/journal-durability.js +59 -0
- package/dist/src/runtime/scheduler/journal-files.d.ts +14 -0
- package/dist/src/runtime/scheduler/journal-files.js +59 -0
- package/dist/src/runtime/scheduler/journal-head.d.ts +21 -0
- package/dist/src/runtime/scheduler/journal-head.js +81 -0
- package/dist/src/runtime/scheduler/journal-index-state.d.ts +31 -0
- package/dist/src/runtime/scheduler/journal-index-state.js +137 -0
- package/dist/src/runtime/scheduler/journal-index.d.ts +22 -0
- package/dist/src/runtime/scheduler/journal-index.js +195 -0
- package/dist/src/runtime/scheduler/journal-store.d.ts +21 -0
- package/dist/src/runtime/scheduler/journal-store.js +184 -0
- package/dist/src/runtime/scheduler/journal-transaction.d.ts +14 -0
- package/dist/src/runtime/scheduler/journal-transaction.js +104 -0
- package/dist/src/runtime/scheduler/next-occurrence.d.ts +3 -0
- package/dist/src/runtime/scheduler/next-occurrence.js +39 -0
- package/dist/src/runtime/scheduler/run-completion.d.ts +12 -0
- package/dist/src/runtime/scheduler/run-completion.js +77 -0
- package/dist/src/runtime/scheduler/run-list-query.d.ts +5 -0
- package/dist/src/runtime/scheduler/run-list-query.js +38 -0
- package/dist/src/runtime/scheduler/run-records.d.ts +6 -0
- package/dist/src/runtime/scheduler/run-records.js +41 -0
- package/dist/src/runtime/scheduler/schedule-update.d.ts +3 -0
- package/dist/src/runtime/scheduler/schedule-update.js +22 -0
- package/dist/src/runtime/scheduler/schedule-validation.d.ts +10 -0
- package/dist/src/runtime/scheduler/schedule-validation.js +132 -0
- package/dist/src/runtime/scheduler/scheduler-engine.d.ts +2 -0
- package/dist/src/runtime/scheduler/scheduler-engine.js +174 -0
- package/dist/src/runtime/scheduler/scheduler-service.d.ts +10 -0
- package/dist/src/runtime/scheduler/scheduler-service.js +115 -0
- package/dist/src/runtime/scheduler/service-context.d.ts +21 -0
- package/dist/src/runtime/scheduler/service-context.js +26 -0
- package/dist/src/runtime/scheduler/session-deletion-state.d.ts +9 -0
- package/dist/src/runtime/scheduler/session-deletion-state.js +30 -0
- package/dist/src/runtime/scheduler/snapshot-validation.d.ts +4 -0
- package/dist/src/runtime/scheduler/snapshot-validation.js +112 -0
- package/dist/src/runtime/scheduler/startup-recovery.d.ts +2 -0
- package/dist/src/runtime/scheduler/startup-recovery.js +38 -0
- package/dist/src/runtime/scheduler/validation-error.d.ts +4 -0
- package/dist/src/runtime/scheduler/validation-error.js +8 -0
- package/dist/src/runtime/scheduler/working-store.d.ts +3 -0
- package/dist/src/runtime/scheduler/working-store.js +8 -0
- package/dist/src/runtime/session/request-session.d.ts +1 -0
- package/dist/src/runtime/session/request-session.js +14 -1
- package/dist/src/runtime/session/session-attachment-deletion.d.ts +8 -0
- package/dist/src/runtime/session/session-attachment-deletion.js +87 -0
- package/dist/src/runtime/session/session-deletion-boundary.d.ts +10 -0
- package/dist/src/runtime/session/session-deletion-boundary.js +39 -0
- package/dist/src/runtime/session/session-deletion-cleanup.d.ts +7 -0
- package/dist/src/runtime/session/session-deletion-cleanup.js +62 -0
- package/dist/src/runtime/session/session-deletion-finalization.d.ts +7 -0
- package/dist/src/runtime/session/session-deletion-finalization.js +34 -0
- package/dist/src/runtime/session/session-deletion-receipts.d.ts +7 -0
- package/dist/src/runtime/session/session-deletion-receipts.js +18 -0
- package/dist/src/runtime/session/session-lifecycle-store.d.ts +21 -0
- package/dist/src/runtime/session/session-lifecycle-store.js +72 -0
- package/dist/src/runtime/session/session-mutation-queue.d.ts +3 -0
- package/dist/src/runtime/session/session-mutation-queue.js +15 -0
- package/dist/src/runtime/steps/execution-agent/capability-decision-parsing.d.ts +16 -0
- package/dist/src/runtime/steps/execution-agent/capability-decision-parsing.js +165 -0
- package/dist/src/runtime/steps/execution-agent/contracts.d.ts +3 -1
- package/dist/src/runtime/steps/execution-agent/decision-parsing.d.ts +2 -0
- package/dist/src/runtime/steps/execution-agent/decision-parsing.js +195 -0
- package/dist/src/runtime/steps/execution-agent/decision-validation.d.ts +30 -0
- package/dist/src/runtime/steps/execution-agent/decision-validation.js +127 -0
- package/dist/src/runtime/steps/execution-agent/format.d.ts +1 -0
- package/dist/src/runtime/steps/execution-agent/format.js +12 -0
- package/dist/src/runtime/steps/execution-agent/input.d.ts +2 -1
- package/dist/src/runtime/steps/execution-agent/input.js +17 -2
- package/dist/src/runtime/steps/execution-agent/parser.d.ts +1 -2
- package/dist/src/runtime/steps/execution-agent/parser.js +1 -472
- package/dist/src/runtime/steps/execution-agent/prompt.d.ts +2 -0
- package/dist/src/runtime/steps/execution-agent/prompt.js +6 -3
- package/dist/src/runtime/steps/execution-agent/reconsideration-context.js +4 -3
- package/dist/src/runtime/steps/execution-agent/response-input.js +5 -4
- package/dist/src/runtime/steps/execution-agent/response-run.d.ts +3 -0
- package/dist/src/runtime/steps/execution-agent/response-run.js +7 -3
- package/dist/src/runtime/steps/execution-agent/run.d.ts +2 -0
- package/dist/src/runtime/steps/execution-agent/run.js +2 -0
- package/dist/src/runtime/steps/execution-agent/state-context.d.ts +2 -1
- package/dist/src/runtime/steps/execution-agent/state-context.js +13 -5
- package/dist/src/runtime/steps/memory-recall-decision.d.ts +30 -0
- package/dist/src/runtime/steps/memory-recall-decision.js +101 -0
- package/dist/src/runtime/steps/memory-recall-prompt.d.ts +1 -0
- package/dist/src/runtime/steps/memory-recall-prompt.js +15 -0
- package/dist/src/runtime/steps/planner-decision/capability-catalog-context.d.ts +14 -0
- package/dist/src/runtime/steps/planner-decision/capability-catalog-context.js +87 -0
- package/dist/src/runtime/steps/planner-decision/contracts.d.ts +3 -5
- package/dist/src/runtime/steps/planner-decision/contracts.js +3 -3
- package/dist/src/runtime/steps/planner-decision/format.d.ts +3 -2
- package/dist/src/runtime/steps/planner-decision/format.js +73 -76
- package/dist/src/runtime/steps/planner-decision/input.d.ts +4 -3
- package/dist/src/runtime/steps/planner-decision/input.js +10 -7
- package/dist/src/runtime/steps/planner-decision/parser.d.ts +3 -2
- package/dist/src/runtime/steps/planner-decision/parser.js +10 -19
- package/dist/src/runtime/steps/planner-decision/plan-parser.js +18 -12
- package/dist/src/runtime/steps/planner-decision/prompt.js +33 -28
- package/dist/src/runtime/steps/planner-decision/resume.d.ts +1 -1
- package/dist/src/runtime/steps/planner-decision/resume.js +38 -1
- package/dist/src/runtime/steps/planner-decision/run.d.ts +3 -2
- package/dist/src/runtime/steps/reviewer-decision/audit-coverage.d.ts +10 -0
- package/dist/src/runtime/steps/reviewer-decision/audit-coverage.js +186 -0
- package/dist/src/runtime/steps/reviewer-decision/contracts.d.ts +3 -8
- package/dist/src/runtime/steps/reviewer-decision/contracts.js +12 -6
- package/dist/src/runtime/steps/reviewer-decision/delegated-context.d.ts +24 -0
- package/dist/src/runtime/steps/reviewer-decision/delegated-context.js +70 -0
- package/dist/src/runtime/steps/reviewer-decision/diagnostics.js +1 -1
- package/dist/src/runtime/steps/reviewer-decision/format.js +37 -24
- package/dist/src/runtime/steps/reviewer-decision/input.js +1 -1
- package/dist/src/runtime/steps/reviewer-decision/model-context.d.ts +4 -3
- package/dist/src/runtime/steps/reviewer-decision/model-context.js +92 -10
- package/dist/src/runtime/steps/reviewer-decision/parser.js +19 -1
- package/dist/src/runtime/steps/reviewer-decision/projection.js +42 -68
- package/dist/src/runtime/steps/reviewer-decision/prompt.js +10 -5
- package/dist/src/runtime/steps/reviewer-decision/run.js +12 -3
- package/dist/src/runtime/steps/reviewer-decision/verification-coverage.d.ts +14 -0
- package/dist/src/runtime/steps/reviewer-decision/verification-coverage.js +52 -0
- package/dist/src/runtime/steps/supervisor-decision/capability-brief.d.ts +14 -0
- package/dist/src/runtime/steps/supervisor-decision/capability-brief.js +38 -0
- package/dist/src/runtime/steps/supervisor-decision/contracts.d.ts +11 -5
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.d.ts +4 -0
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.js +21 -8
- package/dist/src/runtime/steps/supervisor-decision/format.d.ts +2 -0
- package/dist/src/runtime/steps/supervisor-decision/format.js +73 -22
- package/dist/src/runtime/steps/supervisor-decision/input.d.ts +9 -2
- package/dist/src/runtime/steps/supervisor-decision/input.js +44 -6
- package/dist/src/runtime/steps/supervisor-decision/memory-recall-continuation.d.ts +10 -0
- package/dist/src/runtime/steps/supervisor-decision/memory-recall-continuation.js +32 -0
- package/dist/src/runtime/steps/supervisor-decision/parser.d.ts +2 -0
- package/dist/src/runtime/steps/supervisor-decision/parser.js +97 -59
- package/dist/src/runtime/steps/supervisor-decision/prompt.d.ts +3 -0
- package/dist/src/runtime/steps/supervisor-decision/prompt.js +22 -15
- package/dist/src/runtime/steps/supervisor-decision/response-recommendation.d.ts +13 -0
- package/dist/src/runtime/steps/supervisor-decision/response-recommendation.js +32 -0
- package/dist/src/runtime/steps/supervisor-decision/resume.d.ts +2 -0
- package/dist/src/runtime/steps/supervisor-decision/resume.js +60 -1
- package/dist/src/runtime/steps/supervisor-decision/run.d.ts +3 -0
- package/dist/src/runtime/steps/supervisor-decision/run.js +29 -0
- package/dist/src/runtime/steps/supervisor-decision/working-directory.js +8 -1
- package/dist/src/runtime/steps/supervisor-response/diagnostics.d.ts +1 -0
- package/dist/src/runtime/steps/supervisor-response/diagnostics.js +1 -0
- package/dist/src/runtime/steps/supervisor-response/input.d.ts +2 -1
- package/dist/src/runtime/steps/supervisor-response/input.js +17 -4
- package/dist/src/runtime/steps/supervisor-response/memory-authoring.d.ts +1 -0
- package/dist/src/runtime/steps/supervisor-response/memory-authoring.js +4 -0
- package/dist/src/runtime/steps/supervisor-response/prompt.d.ts +1 -0
- package/dist/src/runtime/steps/supervisor-response/prompt.js +8 -2
- package/dist/src/runtime/steps/supervisor-response/response-recommendation.d.ts +10 -0
- package/dist/src/runtime/steps/supervisor-response/response-recommendation.js +25 -0
- package/dist/src/runtime/steps/supervisor-response/run.d.ts +6 -1
- package/dist/src/runtime/steps/supervisor-response/run.js +26 -7
- package/dist/src/runtime/steps/worker-decision/contracts.d.ts +2 -1
- package/dist/src/runtime/steps/worker-decision/input/canonical-state.js +8 -1
- package/dist/src/runtime/steps/worker-decision/input/diagnostic-projection.js +2 -2
- package/dist/src/runtime/steps/worker-decision/input/prompt-context.d.ts +1 -0
- package/dist/src/runtime/steps/worker-decision/input/prompt-context.js +4 -1
- package/dist/src/runtime/steps/worker-decision/input/reference-context.js +34 -14
- package/dist/src/runtime/steps/worker-decision/input/types.d.ts +2 -1
- package/dist/src/runtime/steps/worker-decision/input.d.ts +1 -0
- package/dist/src/runtime/steps/worker-decision/input.js +1 -0
- package/dist/src/runtime/steps/worker-decision/payload-dependency-results.d.ts +8 -0
- package/dist/src/runtime/steps/worker-decision/payload-dependency-results.js +19 -0
- package/dist/src/runtime/steps/worker-decision/prompt.js +8 -8
- package/dist/src/runtime/steps/worker-decision/result-author.js +18 -11
- package/dist/src/runtime/steps/worker-decision/run.js +2 -2
- package/dist/src/sessions/record/projection.js +1 -0
- package/dist/src/sessions/schedule-metadata.d.ts +8 -0
- package/dist/src/sessions/schedule-metadata.js +1 -0
- package/dist/src/sessions/session-service.d.ts +1 -0
- package/dist/src/sessions/session-service.js +1 -0
- package/dist/src/sessions/types.d.ts +2 -0
- package/dist/src/shared/http-server-shutdown.d.ts +4 -0
- package/dist/src/shared/http-server-shutdown.js +17 -0
- package/dist/src/shared/public-http/aggregate-gate.d.ts +3 -0
- package/dist/src/shared/public-http/aggregate-gate.js +87 -0
- package/dist/src/shared/public-http/deadline.d.ts +2 -0
- package/dist/src/shared/public-http/deadline.js +29 -0
- package/dist/src/shared/public-http/errors.d.ts +6 -0
- package/dist/src/shared/public-http/errors.js +11 -0
- package/dist/src/shared/public-http/limits.d.ts +8 -0
- package/dist/src/shared/public-http/limits.js +8 -0
- package/dist/src/shared/public-http/network-policy.d.ts +11 -0
- package/dist/src/shared/public-http/network-policy.js +178 -0
- package/dist/src/shared/public-http/public-http.d.ts +24 -0
- package/dist/src/shared/public-http/public-http.js +85 -0
- package/dist/src/shared/public-http/request-hop.d.ts +18 -0
- package/dist/src/shared/public-http/request-hop.js +140 -0
- package/dist/src/web-ui/app/ARCHITECTURE.md +82 -7
- package/dist/src/web-ui/app/app-bootstrap.js +53 -0
- package/dist/src/web-ui/app/app-dom.js +80 -0
- package/dist/src/web-ui/app/app.js +199 -217
- package/dist/src/web-ui/app/components/composer-context-window.d.ts +25 -0
- package/dist/src/web-ui/app/components/composer-context-window.js +155 -0
- package/dist/src/web-ui/app/components/composer-plan.d.ts +9 -0
- package/dist/src/web-ui/app/components/composer-plan.js +128 -0
- package/dist/src/web-ui/app/components/conversation-activity.d.ts +7 -6
- package/dist/src/web-ui/app/components/conversation-activity.js +97 -163
- package/dist/src/web-ui/app/components/conversation-role-cards.d.ts +24 -0
- package/dist/src/web-ui/app/components/conversation-role-cards.js +237 -0
- package/dist/src/web-ui/app/components/conversation-schedule.js +71 -0
- package/dist/src/web-ui/app/components/conversation-sidebar-layout.js +12 -0
- package/dist/src/web-ui/app/components/conversation-sources.d.ts +7 -0
- package/dist/src/web-ui/app/components/conversation-sources.js +182 -0
- package/dist/src/web-ui/app/components/conversation-status.js +65 -0
- package/dist/src/web-ui/app/components/conversation-tools.d.ts +13 -0
- package/dist/src/web-ui/app/components/conversation-tools.js +284 -0
- package/dist/src/web-ui/app/components/conversation-view.js +73 -17
- package/dist/src/web-ui/app/components/dashboard/activity.js +61 -0
- package/dist/src/web-ui/app/components/dashboard/icons.js +23 -0
- package/dist/src/web-ui/app/components/dashboard/recent-conversations.js +64 -0
- package/dist/src/web-ui/app/components/dashboard/workspace.js +107 -0
- package/dist/src/web-ui/app/components/message-link-previews.d.ts +16 -0
- package/dist/src/web-ui/app/components/message-link-previews.js +179 -0
- package/dist/src/web-ui/app/components/model-selector.js +4 -1
- package/dist/src/web-ui/app/components/operations-section.js +46 -0
- package/dist/src/web-ui/app/components/schedules/details.js +101 -0
- package/dist/src/web-ui/app/components/schedules/form.d.ts +13 -0
- package/dist/src/web-ui/app/components/schedules/form.js +246 -0
- package/dist/src/web-ui/app/components/schedules/workspace-state.js +59 -0
- package/dist/src/web-ui/app/components/schedules/workspace.js +165 -0
- package/dist/src/web-ui/app/components/workspace-shell.js +133 -79
- package/dist/src/web-ui/app/configuration-feature.js +72 -0
- package/dist/src/web-ui/app/controllers/composer-attachments-controller.d.ts +1 -0
- package/dist/src/web-ui/app/controllers/composer-attachments-controller.js +17 -6
- package/dist/src/web-ui/app/controllers/composer-submit-controller.d.ts +2 -0
- package/dist/src/web-ui/app/controllers/composer-submit-controller.js +15 -1
- package/dist/src/web-ui/app/controllers/composer-surface-controller.js +58 -0
- package/dist/src/web-ui/app/controllers/composer-workspace-controller.d.ts +53 -0
- package/dist/src/web-ui/app/controllers/composer-workspace-controller.js +180 -0
- package/dist/src/web-ui/app/controllers/conversation-read-state-controller.d.ts +23 -0
- package/dist/src/web-ui/app/controllers/conversation-read-state-controller.js +82 -0
- package/dist/src/web-ui/app/controllers/conversation-session-controller.d.ts +8 -0
- package/dist/src/web-ui/app/controllers/conversation-session-controller.js +28 -39
- package/dist/src/web-ui/app/controllers/dashboard-controller.js +127 -0
- package/dist/src/web-ui/app/controllers/home-composer-feature.d.ts +40 -0
- package/dist/src/web-ui/app/controllers/home-composer-feature.js +119 -0
- package/dist/src/web-ui/app/controllers/home-conversation-activation.js +37 -0
- package/dist/src/web-ui/app/controllers/realtime-event-controller.d.ts +2 -0
- package/dist/src/web-ui/app/controllers/realtime-event-controller.js +126 -90
- package/dist/src/web-ui/app/controllers/runtime-selection-controller.d.ts +2 -1
- package/dist/src/web-ui/app/controllers/runtime-selection-controller.js +17 -14
- package/dist/src/web-ui/app/controllers/schedule-realtime.js +118 -0
- package/dist/src/web-ui/app/controllers/schedules-controller.js +421 -0
- package/dist/src/web-ui/app/controllers/session-controller.js +47 -15
- package/dist/src/web-ui/app/dashboard-feature.js +44 -0
- package/dist/src/web-ui/app/index.html +240 -189
- package/dist/src/web-ui/app/lib/composer-plan-model.d.ts +32 -0
- package/dist/src/web-ui/app/lib/composer-plan-model.js +108 -0
- package/dist/src/web-ui/app/lib/composer-submission-scope.d.ts +21 -0
- package/dist/src/web-ui/app/lib/composer-submission-scope.js +13 -0
- package/dist/src/web-ui/app/lib/context-window-snapshot-order.d.ts +15 -0
- package/dist/src/web-ui/app/lib/context-window-snapshot-order.js +31 -0
- package/dist/src/web-ui/app/lib/conversation-role-model.d.ts +28 -0
- package/dist/src/web-ui/app/lib/conversation-role-model.js +275 -0
- package/dist/src/web-ui/app/lib/conversation-status-model.d.ts +12 -0
- package/dist/src/web-ui/app/lib/conversation-status-model.js +116 -0
- package/dist/src/web-ui/app/lib/dashboard-job-templates.js +41 -0
- package/dist/src/web-ui/app/lib/dashboard-presentation.js +126 -0
- package/dist/src/web-ui/app/lib/event-presentation.js +30 -9
- package/dist/src/web-ui/app/lib/message-markdown.d.ts +5 -0
- package/dist/src/web-ui/app/lib/message-markdown.js +99 -0
- package/dist/src/web-ui/app/lib/message-url-policy.d.ts +1 -0
- package/dist/src/web-ui/app/lib/message-url-policy.js +13 -0
- package/dist/src/web-ui/app/lib/schedule-errors.js +29 -0
- package/dist/src/web-ui/app/lib/schedule-message.js +30 -0
- package/dist/src/web-ui/app/lib/schedule-presentation.js +81 -0
- package/dist/src/web-ui/app/lib/session-read-state.d.ts +22 -0
- package/dist/src/web-ui/app/lib/session-read-state.js +63 -0
- package/dist/src/web-ui/app/lib/source-url-policy.d.ts +2 -0
- package/dist/src/web-ui/app/lib/source-url-policy.js +31 -0
- package/dist/src/web-ui/app/lib/task-progress.d.ts +53 -0
- package/dist/src/web-ui/app/lib/task-progress.js +233 -0
- package/dist/src/web-ui/app/lib/text-format.js +2 -143
- package/dist/src/web-ui/app/lib/tool-activity-event.d.ts +26 -0
- package/dist/src/web-ui/app/lib/tool-activity-event.js +228 -0
- package/dist/src/web-ui/app/lib/tool-activity-model.d.ts +41 -0
- package/dist/src/web-ui/app/lib/tool-activity-model.js +255 -0
- package/dist/src/web-ui/app/lib/tool-invocation-count.d.ts +5 -0
- package/dist/src/web-ui/app/lib/tool-invocation-count.js +21 -0
- package/dist/src/web-ui/app/lib/tool-timeline.d.ts +3 -0
- package/dist/src/web-ui/app/lib/tool-timeline.js +18 -0
- package/dist/src/web-ui/app/lib/web-source-event.d.ts +8 -0
- package/dist/src/web-ui/app/lib/web-source-event.js +21 -0
- package/dist/src/web-ui/app/lib/web-sources.d.ts +36 -0
- package/dist/src/web-ui/app/lib/web-sources.js +177 -0
- package/dist/src/web-ui/app/schedules-feature.js +87 -0
- package/dist/src/web-ui/app/services/message-link-preview-client.d.ts +14 -0
- package/dist/src/web-ui/app/services/message-link-preview-client.js +96 -0
- package/dist/src/web-ui/app/services/runtime-web-client/schedules.js +51 -0
- package/dist/src/web-ui/app/services/runtime-web-client.d.ts +37 -0
- package/dist/src/web-ui/app/services/runtime-web-client.js +13 -8
- package/dist/src/web-ui/app/styles/00-tokens-base.css +15 -3
- package/dist/src/web-ui/app/styles/10-shell-sessions.css +24 -34
- package/dist/src/web-ui/app/styles/12-conversation-sidebar.css +93 -0
- package/dist/src/web-ui/app/styles/18-dashboard.css +384 -0
- package/dist/src/web-ui/app/styles/20-chat-composer.css +54 -600
- package/dist/src/web-ui/app/styles/21-composer-controls.css +368 -0
- package/dist/src/web-ui/app/styles/22-composer-context-window.css +90 -0
- package/dist/src/web-ui/app/styles/23-composer-plan.css +171 -0
- package/dist/src/web-ui/app/styles/24-conversation-role-cards.css +205 -0
- package/dist/src/web-ui/app/styles/25-conversation-sources.css +141 -0
- package/dist/src/web-ui/app/styles/26-message-content.css +295 -0
- package/dist/src/web-ui/app/styles/27-conversation-tools.css +266 -0
- package/dist/src/web-ui/app/styles/28-conversation-status.css +52 -0
- package/dist/src/web-ui/app/styles/30-inspector-config.css +21 -209
- package/dist/src/web-ui/app/styles/35-memory-onboarding.css +8 -8
- package/dist/src/web-ui/app/styles/36-memory-management.css +13 -13
- package/dist/src/web-ui/app/styles/37-config-operations.css +197 -0
- package/dist/src/web-ui/app/styles/38-schedule-workspace.css +263 -0
- package/dist/src/web-ui/app/styles/38-schedules.css +352 -0
- package/dist/src/web-ui/app/styles/40-config-workspace.css +36 -36
- package/dist/src/web-ui/app/styles/90-responsive.css +28 -77
- package/dist/src/web-ui/app/styles/91-schedules-responsive.css +72 -0
- package/dist/src/web-ui/app/styles/92-dashboard-responsive.css +88 -0
- package/dist/src/web-ui/app/styles/foundation.css +2 -2
- package/dist/src/web-ui/app/styles.css +15 -0
- package/dist/src/web-ui/app/ui-behavior.d.ts +1 -1
- package/dist/src/web-ui/app/ui-behavior.js +4 -2
- package/dist/src/web-ui/app/vendor/README.md +15 -0
- package/dist/src/web-ui/app/vendor/markdown-it.LICENSE +22 -0
- package/dist/src/web-ui/app/vendor/markdown-it.js +3003 -0
- package/dist/src/web-ui/link-preview/metadata.d.ts +9 -0
- package/dist/src/web-ui/link-preview/metadata.js +97 -0
- package/dist/src/web-ui/link-preview/preview-cache.d.ts +4 -0
- package/dist/src/web-ui/link-preview/preview-cache.js +23 -0
- package/dist/src/web-ui/link-preview/raster-response.d.ts +9 -0
- package/dist/src/web-ui/link-preview/raster-response.js +49 -0
- package/dist/src/web-ui/link-preview/routes.d.ts +3 -0
- package/dist/src/web-ui/link-preview/routes.js +97 -0
- package/dist/src/web-ui/link-preview/service.d.ts +11 -0
- package/dist/src/web-ui/link-preview/service.js +117 -0
- package/dist/src/web-ui/local-runtime/api-router.d.ts +4 -1
- package/dist/src/web-ui/local-runtime/api-router.js +42 -73
- package/dist/src/web-ui/local-runtime/contracts.d.ts +2 -2
- package/dist/src/web-ui/local-runtime/environment-registry.d.ts +12 -1
- package/dist/src/web-ui/local-runtime/environment-registry.js +38 -3
- package/dist/src/web-ui/local-runtime/realtime-controller.js +3 -1
- package/dist/src/web-ui/local-runtime/request-execution.d.ts +5 -1
- package/dist/src/web-ui/local-runtime/request-execution.js +38 -2
- package/dist/src/web-ui/local-runtime/schedule-job-creation.d.ts +7 -0
- package/dist/src/web-ui/local-runtime/schedule-job-creation.js +62 -0
- package/dist/src/web-ui/local-runtime/schedule-management-routes.d.ts +30 -0
- package/dist/src/web-ui/local-runtime/schedule-management-routes.js +134 -0
- package/dist/src/web-ui/local-runtime/schedule-run-page.d.ts +5 -0
- package/dist/src/web-ui/local-runtime/schedule-run-page.js +23 -0
- package/dist/src/web-ui/local-runtime/session-routes.d.ts +17 -0
- package/dist/src/web-ui/local-runtime/session-routes.js +74 -0
- package/dist/src/web-ui/local-runtime-backend.d.ts +2 -0
- package/dist/src/web-ui/local-runtime-backend.js +11 -1
- package/dist/src/web-ui/schedule-creation-contract.d.ts +7 -0
- package/dist/src/web-ui/schedule-creation-contract.js +1 -0
- package/dist/src/web-ui/server-shutdown.d.ts +4 -0
- package/dist/src/web-ui/server-shutdown.js +32 -0
- package/dist/src/web-ui/server.js +13 -10
- package/dist/src/web-ui/session-read-state/availability.d.ts +16 -0
- package/dist/src/web-ui/session-read-state/availability.js +20 -0
- package/dist/src/web-ui/session-read-state/projection.d.ts +17 -0
- package/dist/src/web-ui/session-read-state/projection.js +71 -0
- package/dist/src/web-ui/session-read-state/service.d.ts +86 -0
- package/dist/src/web-ui/session-read-state/service.js +89 -0
- package/dist/src/web-ui/session-read-state/store.d.ts +22 -0
- package/dist/src/web-ui/session-read-state/store.js +110 -0
- package/docs/configuration.md +56 -9
- package/docs/installation.md +7 -4
- package/docs/known-limitations.md +21 -0
- package/docs/long-term-memory.md +46 -5
- package/docs/plugins.md +28 -13
- package/docs/runtime-invariant-coverage.md +18 -17
- package/docs/runtime-library.md +23 -0
- package/docs/runtime-prompt-policy-contracts.md +27 -17
- package/docs/runtime-public-contracts.md +32 -1
- package/package.json +6 -3
- package/plugins/capability-brief/source/index.ts +5 -48
- package/plugins/capability-brief/src/index.cjs +46 -33
- package/plugins/code-outline/plugin.json +15 -0
- package/plugins/document-reader/plugin.json +17 -0
- package/plugins/filesystem/plugin.json +17 -2
- package/plugins/json-inspector/plugin.json +12 -0
- package/plugins/local-search/plugin.json +12 -0
- package/plugins/memory/plugin.json +26 -1
- package/plugins/memory/source/index.ts +10 -6
- package/plugins/memory/src/index.cjs +11 -7
- package/plugins/project-orientation/plugin.json +14 -0
- package/plugins/system-probe/plugin.json +1 -0
- package/plugins/web/README.md +125 -0
- package/plugins/web/plugin.json +1 -1
- package/plugins/web/skills/web_fetch_skill/SKILL.md +2 -2
- package/plugins/web/skills/web_search_skill/SKILL.md +8 -4
- package/plugins/web/source/aggregate-gate.ts +8 -130
- package/plugins/web/source/deadline.ts +14 -50
- package/plugins/web/source/errors.ts +22 -12
- package/plugins/web/source/fetch-presentation.ts +61 -0
- package/plugins/web/source/fetch-service.ts +2 -31
- package/plugins/web/source/light/config.ts +196 -0
- package/plugins/web/source/light/crawl/origin-gate.ts +134 -0
- package/plugins/web/source/light/crawl/robots-cache.ts +71 -0
- package/plugins/web/source/light/crawl/robots-parser.ts +132 -0
- package/plugins/web/source/light/crawl/robots-policy.ts +154 -0
- package/plugins/web/source/light/crawl/session-budget.ts +141 -0
- package/plugins/web/source/light/crawl/transport.ts +216 -0
- package/plugins/web/source/light/discovery/candidate-values.ts +63 -0
- package/plugins/web/source/light/discovery/feed-document.ts +127 -0
- package/plugins/web/source/light/discovery/html-links.ts +80 -0
- package/plugins/web/source/light/discovery/html-robots-directives.ts +29 -0
- package/plugins/web/source/light/discovery/markup-tree.ts +145 -0
- package/plugins/web/source/light/discovery/origin-dates.ts +71 -0
- package/plugins/web/source/light/discovery/sitemap-document.ts +63 -0
- package/plugins/web/source/light/documents/cache-policy.ts +28 -0
- package/plugins/web/source/light/documents/document-cache.ts +99 -0
- package/plugins/web/source/light/documents/document-charset.ts +89 -0
- package/plugins/web/source/light/documents/document-contract.ts +20 -0
- package/plugins/web/source/light/documents/document-reader.ts +75 -0
- package/plugins/web/source/light/documents/extract-document.ts +124 -0
- package/plugins/web/source/light/documents/http-cache-freshness.ts +68 -0
- package/plugins/web/source/light/documents/response-decoding.ts +120 -0
- package/plugins/web/source/light/ranking/document-ranking.ts +114 -0
- package/plugins/web/source/light/ranking/query-normalization.ts +69 -0
- package/plugins/web/source/light/search-collection.ts +136 -0
- package/plugins/web/source/light/search-frontier.ts +246 -0
- package/plugins/web/source/light/search-metadata.ts +84 -0
- package/plugins/web/source/light/search-service.ts +154 -0
- package/plugins/web/source/light/search-unavailable.ts +33 -0
- package/plugins/web/source/light/sources/catalog.ts +312 -0
- package/plugins/web/source/light/sources/source-definition.ts +9 -0
- package/plugins/web/source/light/sources/source-selection.ts +35 -0
- package/plugins/web/source/limits.ts +3 -6
- package/plugins/web/source/network-policy.ts +28 -226
- package/plugins/web/source/plugin.ts +70 -56
- package/plugins/web/source/public-http.ts +17 -133
- package/plugins/web/source/request-hop.ts +11 -191
- package/plugins/web/source/search-presentation.ts +63 -63
- package/plugins/web/source/search-service-selector.ts +31 -0
- package/plugins/web/source/search-service.ts +6 -0
- package/plugins/web/source/search-source-presentation.ts +76 -0
- package/plugins/web/source/search-types.ts +4 -0
- package/plugins/web/source/source-output-receipts.ts +267 -0
- package/plugins/web/source/source-receipt-budget.ts +51 -0
- package/plugins/web/source/source-receipt-contract.ts +18 -0
- package/plugins/web/src/index.cjs +3289 -303
- package/runtime.config.schema.json +7 -0
- package/src/runtime/README.md +134 -9
- package/src/runtime/local-host/README.md +86 -0
- package/src/runtime/scheduler/README.md +166 -0
- package/dist/src/model-gateway/structured-output/budget.d.ts +0 -7
- package/dist/src/model-gateway/structured-output/budget.js +0 -20
- package/dist/src/model-gateway/structured-output/schema-character-estimator.d.ts +0 -1
- package/dist/src/model-gateway/structured-output/schema-character-estimator.js +0 -211
- package/dist/src/model-gateway/structured-output-budget.d.ts +0 -1
- package/dist/src/model-gateway/structured-output-budget.js +0 -1
|
@@ -34,238 +34,17 @@
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.chat-header h2 {
|
|
37
|
-
max-width:
|
|
37
|
+
max-width: 100%;
|
|
38
38
|
margin: 0;
|
|
39
39
|
overflow: hidden;
|
|
40
40
|
color: var(--text-strong);
|
|
41
41
|
text-overflow: ellipsis;
|
|
42
42
|
white-space: nowrap;
|
|
43
|
-
font-size:
|
|
43
|
+
font-size: var(--font-size-2xl);
|
|
44
44
|
font-weight: 400;
|
|
45
45
|
letter-spacing: -0.012em;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
.header-controls {
|
|
49
|
-
display: flex;
|
|
50
|
-
flex: none;
|
|
51
|
-
align-items: center;
|
|
52
|
-
justify-content: flex-end;
|
|
53
|
-
gap: 6px;
|
|
54
|
-
min-width: 0;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.control-cluster {
|
|
58
|
-
position: relative;
|
|
59
|
-
display: block;
|
|
60
|
-
min-width: 0;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.agent-mode-control {
|
|
64
|
-
width: 152px;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.model-control {
|
|
68
|
-
width: clamp(145px, 17vw, 220px);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.agent-mode-button,
|
|
72
|
-
.model-select-button {
|
|
73
|
-
min-height: 34px;
|
|
74
|
-
border-color: transparent;
|
|
75
|
-
border-radius: 9px;
|
|
76
|
-
background: rgba(93, 133, 173, 0.08);
|
|
77
|
-
color: var(--muted);
|
|
78
|
-
box-shadow: none;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.agent-mode-button:hover,
|
|
82
|
-
.model-select-button:hover {
|
|
83
|
-
border-color: transparent;
|
|
84
|
-
background: rgba(97, 143, 187, 0.12);
|
|
85
|
-
color: var(--text);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.agent-mode-button {
|
|
89
|
-
display: inline-flex;
|
|
90
|
-
align-items: center;
|
|
91
|
-
justify-content: flex-start;
|
|
92
|
-
gap: 7px;
|
|
93
|
-
width: 100%;
|
|
94
|
-
padding: 0 9px;
|
|
95
|
-
font-size: 12px;
|
|
96
|
-
font-weight: 400;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.agent-mode-button > span:last-child {
|
|
100
|
-
overflow: hidden;
|
|
101
|
-
text-overflow: ellipsis;
|
|
102
|
-
white-space: nowrap;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.agent-mode-icon,
|
|
106
|
-
.agent-mode-option-icon {
|
|
107
|
-
display: grid;
|
|
108
|
-
place-items: center;
|
|
109
|
-
width: 18px;
|
|
110
|
-
height: 18px;
|
|
111
|
-
border-radius: 5px;
|
|
112
|
-
background: rgba(242, 187, 92, 0.1);
|
|
113
|
-
color: #e8c47f;
|
|
114
|
-
font-size: 10px;
|
|
115
|
-
font-weight: 400;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.model-select-button {
|
|
119
|
-
display: flex;
|
|
120
|
-
align-items: center;
|
|
121
|
-
justify-content: space-between;
|
|
122
|
-
gap: 8px;
|
|
123
|
-
width: 100%;
|
|
124
|
-
min-width: 0;
|
|
125
|
-
padding: 0 9px 0 11px;
|
|
126
|
-
font-size: 12px;
|
|
127
|
-
font-weight: 400;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.model-select-button > span {
|
|
131
|
-
overflow: hidden;
|
|
132
|
-
text-overflow: ellipsis;
|
|
133
|
-
white-space: nowrap;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.model-select-button svg {
|
|
137
|
-
flex: none;
|
|
138
|
-
width: 14px;
|
|
139
|
-
height: 14px;
|
|
140
|
-
fill: none;
|
|
141
|
-
stroke: currentColor;
|
|
142
|
-
stroke-linecap: round;
|
|
143
|
-
stroke-linejoin: round;
|
|
144
|
-
stroke-width: 1.7;
|
|
145
|
-
transition: transform 120ms ease;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.model-select-button.open svg {
|
|
149
|
-
transform: rotate(180deg);
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.agent-mode-menu,
|
|
153
|
-
.model-select-menu,
|
|
154
|
-
.permission-mode-menu {
|
|
155
|
-
position: absolute;
|
|
156
|
-
z-index: 80;
|
|
157
|
-
display: grid;
|
|
158
|
-
gap: 3px;
|
|
159
|
-
padding: 5px;
|
|
160
|
-
border: 1px solid var(--line);
|
|
161
|
-
border-radius: 10px;
|
|
162
|
-
background: #132438;
|
|
163
|
-
box-shadow: 0 18px 42px rgba(0, 6, 16, 0.34);
|
|
164
|
-
opacity: 0;
|
|
165
|
-
pointer-events: none;
|
|
166
|
-
transition:
|
|
167
|
-
opacity 120ms ease,
|
|
168
|
-
transform 120ms ease;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.agent-mode-menu {
|
|
172
|
-
top: calc(100% + 7px);
|
|
173
|
-
right: 0;
|
|
174
|
-
width: 260px;
|
|
175
|
-
transform: translateY(-4px);
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.model-select-menu {
|
|
179
|
-
top: calc(100% + 7px);
|
|
180
|
-
right: 0;
|
|
181
|
-
width: max(100%, 230px);
|
|
182
|
-
max-height: min(420px, calc(100vh - 86px));
|
|
183
|
-
overflow-y: auto;
|
|
184
|
-
transform: translateY(-4px);
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.agent-mode-menu.open,
|
|
188
|
-
.model-select-menu.open,
|
|
189
|
-
.permission-mode-menu.open {
|
|
190
|
-
opacity: 1;
|
|
191
|
-
pointer-events: auto;
|
|
192
|
-
transform: none;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.agent-mode-option,
|
|
196
|
-
.model-select-option,
|
|
197
|
-
.permission-mode-option {
|
|
198
|
-
border-color: transparent;
|
|
199
|
-
border-radius: 7px;
|
|
200
|
-
background: transparent;
|
|
201
|
-
color: var(--text);
|
|
202
|
-
text-align: left;
|
|
203
|
-
box-shadow: none;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.agent-mode-option:hover,
|
|
207
|
-
.agent-mode-option.selected,
|
|
208
|
-
.model-select-option:hover,
|
|
209
|
-
.model-select-option.selected,
|
|
210
|
-
.permission-mode-option:hover,
|
|
211
|
-
.permission-mode-option.selected {
|
|
212
|
-
border-color: transparent;
|
|
213
|
-
background: rgba(91, 138, 183, 0.11);
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.model-select-option {
|
|
217
|
-
display: grid;
|
|
218
|
-
grid-template-columns: minmax(0, 1fr) 18px;
|
|
219
|
-
gap: 10px;
|
|
220
|
-
align-items: center;
|
|
221
|
-
min-height: 38px;
|
|
222
|
-
padding: 7px 9px;
|
|
223
|
-
font-size: 13px;
|
|
224
|
-
font-weight: 400;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.model-select-option-label {
|
|
228
|
-
overflow: hidden;
|
|
229
|
-
text-overflow: ellipsis;
|
|
230
|
-
white-space: nowrap;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.model-select-check {
|
|
234
|
-
color: #8eb7ec;
|
|
235
|
-
text-align: center;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.agent-mode-option {
|
|
239
|
-
display: grid;
|
|
240
|
-
grid-template-columns: 24px minmax(0, 1fr);
|
|
241
|
-
gap: 8px;
|
|
242
|
-
align-items: center;
|
|
243
|
-
min-height: 48px;
|
|
244
|
-
padding: 7px 9px;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.agent-mode-option strong,
|
|
248
|
-
.agent-mode-option small,
|
|
249
|
-
.permission-mode-option strong,
|
|
250
|
-
.permission-mode-option small {
|
|
251
|
-
display: block;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.agent-mode-option strong,
|
|
255
|
-
.permission-mode-option strong {
|
|
256
|
-
color: var(--text);
|
|
257
|
-
font-size: 12px;
|
|
258
|
-
font-weight: 400;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.agent-mode-option small,
|
|
262
|
-
.permission-mode-option small {
|
|
263
|
-
margin-top: 2px;
|
|
264
|
-
color: var(--muted-2);
|
|
265
|
-
font-size: 11px;
|
|
266
|
-
font-weight: 450;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
48
|
.messages-list {
|
|
270
49
|
grid-row: 2;
|
|
271
50
|
display: flex;
|
|
@@ -321,7 +100,7 @@
|
|
|
321
100
|
.runtime-setup-copy h3 {
|
|
322
101
|
margin: 0;
|
|
323
102
|
color: var(--text-strong);
|
|
324
|
-
font-size: clamp(
|
|
103
|
+
font-size: clamp(1.75rem, 2.8vw, var(--font-size-7xl));
|
|
325
104
|
letter-spacing: -0.026em;
|
|
326
105
|
line-height: 1.25;
|
|
327
106
|
}
|
|
@@ -330,7 +109,7 @@
|
|
|
330
109
|
max-width: 620px;
|
|
331
110
|
margin: 10px 0 0;
|
|
332
111
|
color: var(--muted);
|
|
333
|
-
font-size:
|
|
112
|
+
font-size: var(--font-size-xl);
|
|
334
113
|
line-height: 1.65;
|
|
335
114
|
}
|
|
336
115
|
|
|
@@ -346,12 +125,12 @@
|
|
|
346
125
|
|
|
347
126
|
.runtime-setup-status strong {
|
|
348
127
|
color: var(--text);
|
|
349
|
-
font-size:
|
|
128
|
+
font-size: var(--font-size-lg);
|
|
350
129
|
}
|
|
351
130
|
|
|
352
131
|
.runtime-setup-status span {
|
|
353
132
|
color: var(--muted);
|
|
354
|
-
font-size:
|
|
133
|
+
font-size: var(--font-size-md);
|
|
355
134
|
line-height: 1.5;
|
|
356
135
|
}
|
|
357
136
|
|
|
@@ -375,7 +154,7 @@
|
|
|
375
154
|
gap: 9px;
|
|
376
155
|
margin: 0;
|
|
377
156
|
color: var(--text);
|
|
378
|
-
font-size:
|
|
157
|
+
font-size: var(--font-size-lg);
|
|
379
158
|
line-height: 1.4;
|
|
380
159
|
}
|
|
381
160
|
|
|
@@ -390,7 +169,7 @@
|
|
|
390
169
|
border: 1px solid var(--line-strong);
|
|
391
170
|
border-radius: 50%;
|
|
392
171
|
color: var(--accent-strong);
|
|
393
|
-
font-size:
|
|
172
|
+
font-size: var(--font-size-sm);
|
|
394
173
|
}
|
|
395
174
|
|
|
396
175
|
.runtime-provider-options {
|
|
@@ -429,13 +208,13 @@
|
|
|
429
208
|
|
|
430
209
|
.runtime-provider-option strong {
|
|
431
210
|
color: var(--text);
|
|
432
|
-
font-size:
|
|
211
|
+
font-size: var(--font-size-lg);
|
|
433
212
|
}
|
|
434
213
|
|
|
435
214
|
.runtime-provider-option small {
|
|
436
215
|
margin-top: 3px;
|
|
437
216
|
color: var(--muted-2);
|
|
438
|
-
font-size:
|
|
217
|
+
font-size: var(--font-size-sm);
|
|
439
218
|
line-height: 1.4;
|
|
440
219
|
}
|
|
441
220
|
|
|
@@ -454,7 +233,7 @@
|
|
|
454
233
|
background: var(--control-bg);
|
|
455
234
|
color: var(--text);
|
|
456
235
|
font-family: var(--mono);
|
|
457
|
-
font-size:
|
|
236
|
+
font-size: var(--font-size-lg);
|
|
458
237
|
}
|
|
459
238
|
|
|
460
239
|
.runtime-model-field input:focus {
|
|
@@ -464,7 +243,7 @@
|
|
|
464
243
|
|
|
465
244
|
.runtime-model-field > small {
|
|
466
245
|
color: var(--muted-2);
|
|
467
|
-
font-size:
|
|
246
|
+
font-size: var(--font-size-sm);
|
|
468
247
|
}
|
|
469
248
|
|
|
470
249
|
.runtime-model-field > small.error {
|
|
@@ -483,7 +262,7 @@
|
|
|
483
262
|
.runtime-setup-footer p {
|
|
484
263
|
margin: 0;
|
|
485
264
|
color: var(--muted);
|
|
486
|
-
font-size:
|
|
265
|
+
font-size: var(--font-size-md);
|
|
487
266
|
line-height: 1.6;
|
|
488
267
|
}
|
|
489
268
|
|
|
@@ -511,7 +290,7 @@
|
|
|
511
290
|
padding: 5px 7px 5px 11px;
|
|
512
291
|
border-bottom: 1px solid rgba(122, 158, 191, 0.14);
|
|
513
292
|
color: #93a9bd;
|
|
514
|
-
font-size:
|
|
293
|
+
font-size: var(--font-size-xs);
|
|
515
294
|
}
|
|
516
295
|
|
|
517
296
|
.runtime-terminal-heading button {
|
|
@@ -521,7 +300,7 @@
|
|
|
521
300
|
border-radius: 6px;
|
|
522
301
|
background: rgba(112, 153, 190, 0.1);
|
|
523
302
|
color: #c8d8e7;
|
|
524
|
-
font-size:
|
|
303
|
+
font-size: var(--font-size-xs);
|
|
525
304
|
}
|
|
526
305
|
|
|
527
306
|
.runtime-terminal-heading button:hover:not(:disabled),
|
|
@@ -541,7 +320,7 @@
|
|
|
541
320
|
overflow: auto;
|
|
542
321
|
color: #d4e3f0;
|
|
543
322
|
font-family: var(--mono);
|
|
544
|
-
font-size:
|
|
323
|
+
font-size: var(--font-size-sm);
|
|
545
324
|
line-height: 1.65;
|
|
546
325
|
text-align: left;
|
|
547
326
|
direction: ltr;
|
|
@@ -557,7 +336,7 @@
|
|
|
557
336
|
min-height: 17px;
|
|
558
337
|
padding: 0 11px 4px;
|
|
559
338
|
color: #89b7dd;
|
|
560
|
-
font-size:
|
|
339
|
+
font-size: var(--font-size-xs);
|
|
561
340
|
}
|
|
562
341
|
|
|
563
342
|
.runtime-copy-status.error {
|
|
@@ -575,7 +354,7 @@
|
|
|
575
354
|
display: block;
|
|
576
355
|
margin-bottom: 4px;
|
|
577
356
|
color: var(--text);
|
|
578
|
-
font-size:
|
|
357
|
+
font-size: var(--font-size-md);
|
|
579
358
|
}
|
|
580
359
|
|
|
581
360
|
.runtime-provider-note {
|
|
@@ -595,7 +374,7 @@
|
|
|
595
374
|
background: var(--control-bg);
|
|
596
375
|
color: var(--text);
|
|
597
376
|
font-family: var(--mono);
|
|
598
|
-
font-size:
|
|
377
|
+
font-size: var(--font-size-xs);
|
|
599
378
|
}
|
|
600
379
|
|
|
601
380
|
.runtime-setup-footer {
|
|
@@ -619,7 +398,7 @@
|
|
|
619
398
|
border-radius: 10px;
|
|
620
399
|
background: var(--accent-soft);
|
|
621
400
|
color: var(--accent-strong);
|
|
622
|
-
font-size:
|
|
401
|
+
font-size: var(--font-size-lg);
|
|
623
402
|
}
|
|
624
403
|
|
|
625
404
|
.runtime-setup-action:hover:not(:disabled) {
|
|
@@ -648,7 +427,7 @@
|
|
|
648
427
|
.mode-empty-title {
|
|
649
428
|
max-width: 560px;
|
|
650
429
|
color: var(--text-strong);
|
|
651
|
-
font-size: clamp(
|
|
430
|
+
font-size: clamp(var(--font-size-6xl), 3vw, var(--font-size-7xl));
|
|
652
431
|
font-weight: 400;
|
|
653
432
|
letter-spacing: -0.028em;
|
|
654
433
|
line-height: 1.28;
|
|
@@ -659,7 +438,7 @@
|
|
|
659
438
|
max-width: 520px;
|
|
660
439
|
margin-top: 10px;
|
|
661
440
|
color: var(--muted);
|
|
662
|
-
font-size:
|
|
441
|
+
font-size: var(--font-size-xl);
|
|
663
442
|
line-height: 1.6;
|
|
664
443
|
}
|
|
665
444
|
|
|
@@ -687,7 +466,7 @@
|
|
|
687
466
|
color: var(--text);
|
|
688
467
|
white-space: pre-wrap;
|
|
689
468
|
overflow-wrap: anywhere;
|
|
690
|
-
font-size:
|
|
469
|
+
font-size: var(--font-size-xl);
|
|
691
470
|
line-height: 1.65;
|
|
692
471
|
}
|
|
693
472
|
|
|
@@ -713,11 +492,12 @@
|
|
|
713
492
|
|
|
714
493
|
.message-meta {
|
|
715
494
|
display: flex;
|
|
495
|
+
flex-wrap: wrap;
|
|
716
496
|
align-items: center;
|
|
717
497
|
gap: 8px;
|
|
718
498
|
margin-bottom: 8px;
|
|
719
499
|
color: var(--muted-2);
|
|
720
|
-
font-size:
|
|
500
|
+
font-size: var(--font-size-md);
|
|
721
501
|
font-weight: 400;
|
|
722
502
|
}
|
|
723
503
|
|
|
@@ -743,139 +523,10 @@
|
|
|
743
523
|
opacity: 0.6;
|
|
744
524
|
}
|
|
745
525
|
|
|
746
|
-
.streaming-status {
|
|
747
|
-
display: inline-flex;
|
|
748
|
-
align-items: center;
|
|
749
|
-
gap: 6px;
|
|
750
|
-
color: #8eb7ec;
|
|
751
|
-
font-weight: 500;
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
.streaming-status::before {
|
|
755
|
-
width: 6px;
|
|
756
|
-
height: 6px;
|
|
757
|
-
border-radius: 50%;
|
|
758
|
-
background: var(--accent);
|
|
759
|
-
content: "";
|
|
760
|
-
animation: ui-pulse 1.6s ease-in-out infinite;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
.typing-indicator {
|
|
764
|
-
display: inline-flex;
|
|
765
|
-
gap: 5px;
|
|
766
|
-
padding: 7px 0;
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
.typing-indicator i {
|
|
770
|
-
width: 6px;
|
|
771
|
-
height: 6px;
|
|
772
|
-
border-radius: 50%;
|
|
773
|
-
background: var(--muted);
|
|
774
|
-
animation: typing-dot 1.2s infinite ease-in-out;
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
.typing-indicator i:nth-child(2) {
|
|
778
|
-
animation-delay: 120ms;
|
|
779
|
-
}
|
|
780
|
-
|
|
781
|
-
.typing-indicator i:nth-child(3) {
|
|
782
|
-
animation-delay: 240ms;
|
|
783
|
-
}
|
|
784
|
-
|
|
785
526
|
.rtl-text {
|
|
786
527
|
text-align: right;
|
|
787
528
|
}
|
|
788
529
|
|
|
789
|
-
.markdown-body {
|
|
790
|
-
color: var(--text);
|
|
791
|
-
line-height: 1.65;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
.markdown-body > :first-child,
|
|
795
|
-
.thinking-body > :first-child {
|
|
796
|
-
margin-top: 0;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
.markdown-body > :last-child,
|
|
800
|
-
.thinking-body > :last-child {
|
|
801
|
-
margin-bottom: 0;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
.markdown-body p,
|
|
805
|
-
.thinking-body p {
|
|
806
|
-
margin: 0 0 12px;
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
.markdown-body h3,
|
|
810
|
-
.markdown-body h4,
|
|
811
|
-
.markdown-body h5 {
|
|
812
|
-
margin: 20px 0 8px;
|
|
813
|
-
color: var(--text-strong);
|
|
814
|
-
font-weight: 620;
|
|
815
|
-
line-height: 1.3;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.markdown-body h3 {
|
|
819
|
-
font-size: 18px;
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
.markdown-body h4,
|
|
823
|
-
.markdown-body h5 {
|
|
824
|
-
font-size: 15px;
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
.markdown-body ul,
|
|
828
|
-
.markdown-body ol {
|
|
829
|
-
margin: 10px 0 14px;
|
|
830
|
-
padding-inline-start: 24px;
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
.markdown-body li {
|
|
834
|
-
margin: 5px 0;
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
.markdown-body blockquote {
|
|
838
|
-
margin: 14px 0;
|
|
839
|
-
padding: 8px 12px;
|
|
840
|
-
border-inline-start: 2px solid var(--accent);
|
|
841
|
-
background: rgba(74, 115, 156, 0.06);
|
|
842
|
-
color: var(--muted);
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
.markdown-body pre {
|
|
846
|
-
margin: 14px 0;
|
|
847
|
-
padding: 14px 15px;
|
|
848
|
-
overflow: auto;
|
|
849
|
-
border: 1px solid rgba(111, 154, 197, 0.13);
|
|
850
|
-
border-radius: 10px;
|
|
851
|
-
background: #050d16;
|
|
852
|
-
line-height: 1.55;
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
.markdown-body code,
|
|
856
|
-
.thinking-card code {
|
|
857
|
-
padding: 1px 5px;
|
|
858
|
-
border-radius: 5px;
|
|
859
|
-
background: rgba(91, 132, 173, 0.1);
|
|
860
|
-
color: #d8e8f8;
|
|
861
|
-
font-family: var(--font-mono);
|
|
862
|
-
font-size: 0.92em;
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
.markdown-body pre code {
|
|
866
|
-
padding: 0;
|
|
867
|
-
background: transparent;
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
.markdown-body a {
|
|
871
|
-
color: #7facf5;
|
|
872
|
-
text-decoration: none;
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.markdown-body a:hover {
|
|
876
|
-
text-decoration: underline;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
530
|
.thinking-card {
|
|
880
531
|
margin: 2px 0 14px;
|
|
881
532
|
overflow: hidden;
|
|
@@ -883,7 +534,7 @@
|
|
|
883
534
|
border-radius: 9px;
|
|
884
535
|
background: rgba(77, 111, 145, 0.055);
|
|
885
536
|
color: var(--muted);
|
|
886
|
-
font-size:
|
|
537
|
+
font-size: var(--font-size-md);
|
|
887
538
|
font-style: normal;
|
|
888
539
|
}
|
|
889
540
|
|
|
@@ -896,7 +547,7 @@
|
|
|
896
547
|
color: var(--muted);
|
|
897
548
|
cursor: pointer;
|
|
898
549
|
list-style: none;
|
|
899
|
-
font-size:
|
|
550
|
+
font-size: var(--font-size-md);
|
|
900
551
|
font-weight: 500;
|
|
901
552
|
}
|
|
902
553
|
|
|
@@ -906,7 +557,7 @@
|
|
|
906
557
|
|
|
907
558
|
.thinking-card summary span:last-child {
|
|
908
559
|
color: var(--muted-2);
|
|
909
|
-
font-size:
|
|
560
|
+
font-size: var(--font-size-sm);
|
|
910
561
|
}
|
|
911
562
|
|
|
912
563
|
.thinking-body {
|
|
@@ -971,7 +622,7 @@
|
|
|
971
622
|
color: var(--muted);
|
|
972
623
|
text-overflow: ellipsis;
|
|
973
624
|
white-space: nowrap;
|
|
974
|
-
font-size:
|
|
625
|
+
font-size: var(--font-size-md);
|
|
975
626
|
font-weight: 400;
|
|
976
627
|
}
|
|
977
628
|
|
|
@@ -982,18 +633,18 @@
|
|
|
982
633
|
color: var(--muted);
|
|
983
634
|
text-overflow: ellipsis;
|
|
984
635
|
white-space: nowrap;
|
|
985
|
-
font-size:
|
|
636
|
+
font-size: var(--font-size-sm);
|
|
986
637
|
font-weight: 400;
|
|
987
638
|
}
|
|
988
639
|
|
|
989
640
|
.conversation-activity-facts {
|
|
990
641
|
flex: none;
|
|
991
642
|
color: var(--muted-2);
|
|
992
|
-
font-size:
|
|
643
|
+
font-size: var(--font-size-sm);
|
|
993
644
|
font-variant-numeric: tabular-nums;
|
|
994
645
|
}
|
|
995
646
|
|
|
996
|
-
.conversation-activity-facts.failed {
|
|
647
|
+
.conversation-activity-facts .failed {
|
|
997
648
|
color: #ef9a9a;
|
|
998
649
|
}
|
|
999
650
|
|
|
@@ -1007,72 +658,6 @@
|
|
|
1007
658
|
scrollbar-gutter: stable;
|
|
1008
659
|
}
|
|
1009
660
|
|
|
1010
|
-
.conversation-context-window {
|
|
1011
|
-
display: grid;
|
|
1012
|
-
gap: 7px;
|
|
1013
|
-
margin: 2px 0 10px;
|
|
1014
|
-
padding: 10px 12px;
|
|
1015
|
-
border: 1px solid rgba(111, 154, 197, 0.16);
|
|
1016
|
-
border-radius: 10px;
|
|
1017
|
-
background: linear-gradient(
|
|
1018
|
-
135deg,
|
|
1019
|
-
rgba(67, 112, 160, 0.1),
|
|
1020
|
-
rgba(6, 18, 30, 0.22)
|
|
1021
|
-
);
|
|
1022
|
-
box-shadow: 0 6px 18px rgba(2, 10, 18, 0.08);
|
|
1023
|
-
}
|
|
1024
|
-
|
|
1025
|
-
.conversation-context-window-header {
|
|
1026
|
-
display: flex;
|
|
1027
|
-
align-items: baseline;
|
|
1028
|
-
justify-content: space-between;
|
|
1029
|
-
gap: 14px;
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
|
-
.conversation-context-window-title {
|
|
1033
|
-
color: var(--text);
|
|
1034
|
-
font-size: 12px;
|
|
1035
|
-
}
|
|
1036
|
-
|
|
1037
|
-
.conversation-context-window-value {
|
|
1038
|
-
color: #80b7ff;
|
|
1039
|
-
font-family: var(--font-mono);
|
|
1040
|
-
font-size: 11px;
|
|
1041
|
-
font-variant-numeric: tabular-nums;
|
|
1042
|
-
}
|
|
1043
|
-
|
|
1044
|
-
.conversation-context-window-value.rejected {
|
|
1045
|
-
color: #ef9a9a;
|
|
1046
|
-
}
|
|
1047
|
-
|
|
1048
|
-
.conversation-context-window-track {
|
|
1049
|
-
height: 3px;
|
|
1050
|
-
overflow: hidden;
|
|
1051
|
-
border-radius: 999px;
|
|
1052
|
-
background: rgba(118, 157, 198, 0.12);
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
.conversation-context-window-track span {
|
|
1056
|
-
display: block;
|
|
1057
|
-
height: 100%;
|
|
1058
|
-
border-radius: inherit;
|
|
1059
|
-
background: #5d8fe1;
|
|
1060
|
-
transition: width 180ms ease;
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
|
-
.conversation-context-window-detail,
|
|
1064
|
-
.conversation-context-window-provider,
|
|
1065
|
-
.conversation-context-window-compaction {
|
|
1066
|
-
color: var(--muted-2);
|
|
1067
|
-
font-size: 10px;
|
|
1068
|
-
line-height: 1.45;
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
.conversation-context-window-compaction {
|
|
1072
|
-
color: #8dd7b6;
|
|
1073
|
-
font-family: var(--font-mono);
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
661
|
.conversation-activity-progress {
|
|
1077
662
|
display: grid;
|
|
1078
663
|
gap: 7px;
|
|
@@ -1095,7 +680,7 @@
|
|
|
1095
680
|
color: var(--text);
|
|
1096
681
|
text-overflow: ellipsis;
|
|
1097
682
|
white-space: nowrap;
|
|
1098
|
-
font-size:
|
|
683
|
+
font-size: var(--font-size-md);
|
|
1099
684
|
font-weight: 400;
|
|
1100
685
|
}
|
|
1101
686
|
|
|
@@ -1103,7 +688,7 @@
|
|
|
1103
688
|
flex: none;
|
|
1104
689
|
color: var(--muted-2);
|
|
1105
690
|
font-family: var(--font-mono);
|
|
1106
|
-
font-size:
|
|
691
|
+
font-size: var(--font-size-xs);
|
|
1107
692
|
}
|
|
1108
693
|
|
|
1109
694
|
.conversation-activity-progress-track {
|
|
@@ -1136,7 +721,7 @@
|
|
|
1136
721
|
align-items: center;
|
|
1137
722
|
min-width: 0;
|
|
1138
723
|
color: var(--muted);
|
|
1139
|
-
font-size:
|
|
724
|
+
font-size: var(--font-size-sm);
|
|
1140
725
|
line-height: 1.35;
|
|
1141
726
|
}
|
|
1142
727
|
|
|
@@ -1233,7 +818,7 @@
|
|
|
1233
818
|
color: var(--text);
|
|
1234
819
|
text-overflow: ellipsis;
|
|
1235
820
|
white-space: nowrap;
|
|
1236
|
-
font-size:
|
|
821
|
+
font-size: var(--font-size-sm);
|
|
1237
822
|
font-weight: 400;
|
|
1238
823
|
}
|
|
1239
824
|
|
|
@@ -1245,7 +830,7 @@
|
|
|
1245
830
|
flex: none;
|
|
1246
831
|
color: var(--muted-2);
|
|
1247
832
|
font-family: var(--font-mono);
|
|
1248
|
-
font-size:
|
|
833
|
+
font-size: var(--font-size-xs);
|
|
1249
834
|
}
|
|
1250
835
|
|
|
1251
836
|
.conversation-activity-event-detail {
|
|
@@ -1255,7 +840,7 @@
|
|
|
1255
840
|
color: var(--muted-2);
|
|
1256
841
|
text-overflow: ellipsis;
|
|
1257
842
|
white-space: nowrap;
|
|
1258
|
-
font-size:
|
|
843
|
+
font-size: var(--font-size-xs);
|
|
1259
844
|
line-height: 1.4;
|
|
1260
845
|
}
|
|
1261
846
|
|
|
@@ -1273,7 +858,7 @@
|
|
|
1273
858
|
gap: 8px;
|
|
1274
859
|
margin: 5px 0 9px;
|
|
1275
860
|
color: var(--muted);
|
|
1276
|
-
font-size:
|
|
861
|
+
font-size: var(--font-size-md);
|
|
1277
862
|
white-space: normal;
|
|
1278
863
|
}
|
|
1279
864
|
|
|
@@ -1344,7 +929,7 @@
|
|
|
1344
929
|
border-color: transparent;
|
|
1345
930
|
background: transparent;
|
|
1346
931
|
color: var(--muted-2);
|
|
1347
|
-
font-size:
|
|
932
|
+
font-size: var(--font-size-sm);
|
|
1348
933
|
font-weight: 500;
|
|
1349
934
|
box-shadow: none;
|
|
1350
935
|
}
|
|
@@ -1380,14 +965,14 @@
|
|
|
1380
965
|
|
|
1381
966
|
.approval-message-label {
|
|
1382
967
|
color: var(--muted-2);
|
|
1383
|
-
font-size:
|
|
968
|
+
font-size: var(--font-size-sm);
|
|
1384
969
|
font-weight: 500;
|
|
1385
970
|
line-height: 1.35;
|
|
1386
971
|
}
|
|
1387
972
|
|
|
1388
973
|
.approval-message-title {
|
|
1389
974
|
color: var(--text-strong);
|
|
1390
|
-
font-size:
|
|
975
|
+
font-size: var(--font-size-xl);
|
|
1391
976
|
font-weight: 600;
|
|
1392
977
|
line-height: 1.4;
|
|
1393
978
|
}
|
|
@@ -1395,7 +980,7 @@
|
|
|
1395
980
|
.approval-message-detail {
|
|
1396
981
|
margin: 0;
|
|
1397
982
|
color: var(--muted);
|
|
1398
|
-
font-size:
|
|
983
|
+
font-size: var(--font-size-md);
|
|
1399
984
|
line-height: 1.55;
|
|
1400
985
|
text-align: start;
|
|
1401
986
|
unicode-bidi: plaintext;
|
|
@@ -1414,7 +999,7 @@
|
|
|
1414
999
|
min-height: 34px;
|
|
1415
1000
|
padding: 0 13px;
|
|
1416
1001
|
border-radius: 8px;
|
|
1417
|
-
font-size:
|
|
1002
|
+
font-size: var(--font-size-md);
|
|
1418
1003
|
font-weight: 600;
|
|
1419
1004
|
}
|
|
1420
1005
|
|
|
@@ -1459,7 +1044,7 @@
|
|
|
1459
1044
|
|
|
1460
1045
|
.composer {
|
|
1461
1046
|
display: grid;
|
|
1462
|
-
grid-template-columns:
|
|
1047
|
+
grid-template-columns: minmax(0, 1fr);
|
|
1463
1048
|
grid-template-rows: auto auto auto;
|
|
1464
1049
|
gap: 7px;
|
|
1465
1050
|
align-items: center;
|
|
@@ -1495,7 +1080,7 @@
|
|
|
1495
1080
|
border: 0;
|
|
1496
1081
|
background: transparent;
|
|
1497
1082
|
color: var(--text-strong);
|
|
1498
|
-
font-size:
|
|
1083
|
+
font-size: var(--font-size-xl);
|
|
1499
1084
|
line-height: 1.5;
|
|
1500
1085
|
box-shadow: none;
|
|
1501
1086
|
scrollbar-gutter: stable;
|
|
@@ -1539,7 +1124,7 @@
|
|
|
1539
1124
|
border-radius: 7px;
|
|
1540
1125
|
background: rgba(88, 129, 169, 0.07);
|
|
1541
1126
|
color: var(--muted);
|
|
1542
|
-
font-size:
|
|
1127
|
+
font-size: var(--font-size-md);
|
|
1543
1128
|
}
|
|
1544
1129
|
|
|
1545
1130
|
.attachment-chip button {
|
|
@@ -1566,8 +1151,6 @@
|
|
|
1566
1151
|
}
|
|
1567
1152
|
|
|
1568
1153
|
.attachment-button {
|
|
1569
|
-
grid-column: 1;
|
|
1570
|
-
grid-row: 3;
|
|
1571
1154
|
background: transparent;
|
|
1572
1155
|
color: var(--muted);
|
|
1573
1156
|
}
|
|
@@ -1578,76 +1161,7 @@
|
|
|
1578
1161
|
color: var(--text);
|
|
1579
1162
|
}
|
|
1580
1163
|
|
|
1581
|
-
.permission-mode-control {
|
|
1582
|
-
position: relative;
|
|
1583
|
-
grid-column: 2;
|
|
1584
|
-
grid-row: 3;
|
|
1585
|
-
}
|
|
1586
|
-
|
|
1587
|
-
.permission-mode-button {
|
|
1588
|
-
display: inline-flex;
|
|
1589
|
-
align-items: center;
|
|
1590
|
-
gap: 6px;
|
|
1591
|
-
width: auto;
|
|
1592
|
-
min-width: 0;
|
|
1593
|
-
min-height: 32px;
|
|
1594
|
-
padding: 0 9px;
|
|
1595
|
-
border-color: transparent;
|
|
1596
|
-
border-radius: 8px;
|
|
1597
|
-
background: transparent;
|
|
1598
|
-
color: var(--muted);
|
|
1599
|
-
font-size: 11.5px;
|
|
1600
|
-
font-weight: 500;
|
|
1601
|
-
box-shadow: none;
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
|
-
.permission-mode-button::after {
|
|
1605
|
-
width: 5px;
|
|
1606
|
-
height: 5px;
|
|
1607
|
-
border-right: 1px solid currentColor;
|
|
1608
|
-
border-bottom: 1px solid currentColor;
|
|
1609
|
-
content: "";
|
|
1610
|
-
opacity: 0.75;
|
|
1611
|
-
transform: translateY(-1px) rotate(45deg);
|
|
1612
|
-
}
|
|
1613
|
-
|
|
1614
|
-
.permission-mode-button:hover,
|
|
1615
|
-
.permission-mode-button.open {
|
|
1616
|
-
border-color: transparent;
|
|
1617
|
-
background: rgba(95, 139, 182, 0.08);
|
|
1618
|
-
color: var(--text);
|
|
1619
|
-
}
|
|
1620
|
-
|
|
1621
|
-
.permission-mode-button.full {
|
|
1622
|
-
background: transparent;
|
|
1623
|
-
color: #d3b875;
|
|
1624
|
-
}
|
|
1625
|
-
|
|
1626
|
-
.permission-mode-label {
|
|
1627
|
-
overflow: hidden;
|
|
1628
|
-
text-overflow: ellipsis;
|
|
1629
|
-
white-space: nowrap;
|
|
1630
|
-
}
|
|
1631
|
-
|
|
1632
|
-
.permission-mode-menu {
|
|
1633
|
-
right: auto;
|
|
1634
|
-
bottom: calc(100% + 7px);
|
|
1635
|
-
left: 0;
|
|
1636
|
-
min-width: 180px;
|
|
1637
|
-
transform: translateY(4px);
|
|
1638
|
-
}
|
|
1639
|
-
|
|
1640
|
-
.permission-mode-option {
|
|
1641
|
-
display: grid;
|
|
1642
|
-
gap: 2px;
|
|
1643
|
-
width: 100%;
|
|
1644
|
-
min-height: 43px;
|
|
1645
|
-
padding: 6px 8px;
|
|
1646
|
-
}
|
|
1647
|
-
|
|
1648
1164
|
.send-button {
|
|
1649
|
-
grid-column: 4;
|
|
1650
|
-
grid-row: 3;
|
|
1651
1165
|
background: #2b6ddd;
|
|
1652
1166
|
color: #fff;
|
|
1653
1167
|
}
|
|
@@ -1663,25 +1177,6 @@
|
|
|
1663
1177
|
opacity: 0.72;
|
|
1664
1178
|
}
|
|
1665
1179
|
|
|
1666
|
-
.composer.composer-has-split-action {
|
|
1667
|
-
grid-template-columns: 34px auto minmax(0, 1fr) auto;
|
|
1668
|
-
}
|
|
1669
|
-
|
|
1670
|
-
.composer-submit-control {
|
|
1671
|
-
position: relative;
|
|
1672
|
-
grid-column: 4;
|
|
1673
|
-
grid-row: 3;
|
|
1674
|
-
display: inline-flex;
|
|
1675
|
-
justify-self: end;
|
|
1676
|
-
overflow: visible;
|
|
1677
|
-
border-radius: 8px;
|
|
1678
|
-
}
|
|
1679
|
-
|
|
1680
|
-
.composer-submit-control .send-button {
|
|
1681
|
-
grid-column: auto;
|
|
1682
|
-
grid-row: auto;
|
|
1683
|
-
}
|
|
1684
|
-
|
|
1685
1180
|
.composer-submit-control.split .send-button {
|
|
1686
1181
|
width: 32px;
|
|
1687
1182
|
min-width: 32px;
|
|
@@ -1741,15 +1236,15 @@
|
|
|
1741
1236
|
right: -5px;
|
|
1742
1237
|
display: grid;
|
|
1743
1238
|
place-items: center;
|
|
1744
|
-
min-width:
|
|
1745
|
-
height:
|
|
1239
|
+
min-width: 1.25rem;
|
|
1240
|
+
height: 1.25rem;
|
|
1746
1241
|
padding: 0 3px;
|
|
1747
1242
|
border: 1px solid #132438;
|
|
1748
1243
|
border-radius: 999px;
|
|
1749
1244
|
background: #6889a8;
|
|
1750
1245
|
color: #f1f6fb;
|
|
1751
1246
|
content: attr(data-count);
|
|
1752
|
-
font-size:
|
|
1247
|
+
font-size: var(--font-size-xs);
|
|
1753
1248
|
font-weight: 400;
|
|
1754
1249
|
line-height: 1;
|
|
1755
1250
|
}
|
|
@@ -1777,7 +1272,7 @@
|
|
|
1777
1272
|
background: transparent;
|
|
1778
1273
|
color: #c4d3e2;
|
|
1779
1274
|
text-align: left;
|
|
1780
|
-
font-size:
|
|
1275
|
+
font-size: var(--font-size-md);
|
|
1781
1276
|
font-weight: 400;
|
|
1782
1277
|
line-height: 1.2;
|
|
1783
1278
|
box-shadow: none;
|
|
@@ -1806,7 +1301,7 @@
|
|
|
1806
1301
|
border-radius: 999px;
|
|
1807
1302
|
background: #12283d;
|
|
1808
1303
|
color: #bfd2e7;
|
|
1809
|
-
font-size:
|
|
1304
|
+
font-size: var(--font-size-sm);
|
|
1810
1305
|
font-weight: 500;
|
|
1811
1306
|
box-shadow: 0 10px 28px rgba(0, 6, 16, 0.25);
|
|
1812
1307
|
}
|
|
@@ -1816,12 +1311,6 @@
|
|
|
1816
1311
|
height: 14px;
|
|
1817
1312
|
}
|
|
1818
1313
|
|
|
1819
|
-
@media (max-width: 940px) {
|
|
1820
|
-
.model-control {
|
|
1821
|
-
width: 155px;
|
|
1822
|
-
}
|
|
1823
|
-
}
|
|
1824
|
-
|
|
1825
1314
|
@media (max-width: 760px) {
|
|
1826
1315
|
.chat-header {
|
|
1827
1316
|
min-height: 52px;
|
|
@@ -1833,26 +1322,7 @@
|
|
|
1833
1322
|
}
|
|
1834
1323
|
|
|
1835
1324
|
.chat-header h2 {
|
|
1836
|
-
|
|
1837
|
-
font-size: 15px;
|
|
1838
|
-
}
|
|
1839
|
-
|
|
1840
|
-
.agent-mode-control {
|
|
1841
|
-
width: 38px;
|
|
1842
|
-
}
|
|
1843
|
-
|
|
1844
|
-
.agent-mode-button {
|
|
1845
|
-
justify-content: center;
|
|
1846
|
-
width: 38px;
|
|
1847
|
-
padding: 0;
|
|
1848
|
-
}
|
|
1849
|
-
|
|
1850
|
-
.agent-mode-button > span:last-child {
|
|
1851
|
-
display: none;
|
|
1852
|
-
}
|
|
1853
|
-
|
|
1854
|
-
.model-control {
|
|
1855
|
-
width: 126px;
|
|
1325
|
+
font-size: var(--font-size-2xl);
|
|
1856
1326
|
}
|
|
1857
1327
|
|
|
1858
1328
|
.messages-list {
|
|
@@ -1888,14 +1358,6 @@
|
|
|
1888
1358
|
}
|
|
1889
1359
|
|
|
1890
1360
|
@media (max-width: 460px) {
|
|
1891
|
-
.model-control {
|
|
1892
|
-
display: none;
|
|
1893
|
-
}
|
|
1894
|
-
|
|
1895
|
-
.chat-header h2 {
|
|
1896
|
-
max-width: calc(100vw - 148px);
|
|
1897
|
-
}
|
|
1898
|
-
|
|
1899
1361
|
.chat-empty-state {
|
|
1900
1362
|
padding: 18px 8px 54px;
|
|
1901
1363
|
}
|
|
@@ -1923,14 +1385,6 @@
|
|
|
1923
1385
|
}
|
|
1924
1386
|
|
|
1925
1387
|
.mode-empty-title {
|
|
1926
|
-
font-size:
|
|
1927
|
-
}
|
|
1928
|
-
|
|
1929
|
-
.message-bubble {
|
|
1930
|
-
font-size: 14px;
|
|
1931
|
-
}
|
|
1932
|
-
|
|
1933
|
-
.composer textarea {
|
|
1934
|
-
font-size: 14px;
|
|
1388
|
+
font-size: var(--font-size-6xl);
|
|
1935
1389
|
}
|
|
1936
1390
|
}
|