@abot-ai/runtime 1.0.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/LICENSE +21 -0
- package/README.md +251 -0
- package/dist/scripts/add-runtime-model.d.ts +6 -0
- package/dist/scripts/add-runtime-model.js +239 -0
- package/dist/scripts/init-runtime.d.ts +6 -0
- package/dist/scripts/init-runtime.js +254 -0
- package/dist/scripts/runtime-setup-files.d.ts +12 -0
- package/dist/scripts/runtime-setup-files.js +96 -0
- package/dist/scripts/runtime-setup-presentation.d.ts +6 -0
- package/dist/scripts/runtime-setup-presentation.js +34 -0
- package/dist/src/bridge/request-steering.d.ts +8 -0
- package/dist/src/bridge/request-steering.js +90 -0
- package/dist/src/bridge/runtime-admin.d.ts +13 -0
- package/dist/src/bridge/runtime-admin.js +207 -0
- package/dist/src/bridge/runtime-replay.d.ts +10 -0
- package/dist/src/bridge/runtime-replay.js +497 -0
- package/dist/src/bridge/start-agent-bridge.d.ts +40 -0
- package/dist/src/bridge/start-agent-bridge.js +519 -0
- package/dist/src/capabilities/normal-invocation/contracts.d.ts +73 -0
- package/dist/src/capabilities/normal-invocation/contracts.js +3 -0
- package/dist/src/capabilities/normal-invocation/definition-projection.d.ts +10 -0
- package/dist/src/capabilities/normal-invocation/definition-projection.js +41 -0
- package/dist/src/capabilities/normal-invocation/index.d.ts +3 -0
- package/dist/src/capabilities/normal-invocation/index.js +3 -0
- package/dist/src/capabilities/normal-invocation/validator.d.ts +23 -0
- package/dist/src/capabilities/normal-invocation/validator.js +497 -0
- package/dist/src/capabilities/registry.d.ts +14 -0
- package/dist/src/capabilities/registry.js +34 -0
- package/dist/src/capabilities/tool-definition-validator.d.ts +4 -0
- package/dist/src/capabilities/tool-definition-validator.js +776 -0
- package/dist/src/capabilities/tool-event-metadata.d.ts +8 -0
- package/dist/src/capabilities/tool-event-metadata.js +181 -0
- package/dist/src/capabilities/tool-executor.d.ts +10 -0
- package/dist/src/capabilities/tool-executor.js +160 -0
- package/dist/src/capabilities/tool-types.d.ts +287 -0
- package/dist/src/capabilities/tool-types.js +8 -0
- package/dist/src/cli/abot.d.ts +1 -0
- package/dist/src/cli/abot.js +102 -0
- package/dist/src/cli/bin.d.ts +2 -0
- package/dist/src/cli/bin.js +6 -0
- package/dist/src/model-gateway/client/chat.d.ts +5 -0
- package/dist/src/model-gateway/client/chat.js +116 -0
- package/dist/src/model-gateway/client/contracts.d.ts +71 -0
- package/dist/src/model-gateway/client/contracts.js +1 -0
- package/dist/src/model-gateway/client/input-token-count.d.ts +4 -0
- package/dist/src/model-gateway/client/input-token-count.js +112 -0
- package/dist/src/model-gateway/client/invocation-metrics.d.ts +17 -0
- package/dist/src/model-gateway/client/invocation-metrics.js +107 -0
- package/dist/src/model-gateway/client/message-projection.d.ts +23 -0
- package/dist/src/model-gateway/client/message-projection.js +176 -0
- package/dist/src/model-gateway/client/options.d.ts +10 -0
- package/dist/src/model-gateway/client/options.js +33 -0
- package/dist/src/model-gateway/client/raw.d.ts +2 -0
- package/dist/src/model-gateway/client/raw.js +107 -0
- package/dist/src/model-gateway/client/stream-consumer.d.ts +37 -0
- package/dist/src/model-gateway/client/stream-consumer.js +183 -0
- package/dist/src/model-gateway/client/stream-parser.d.ts +16 -0
- package/dist/src/model-gateway/client/stream-parser.js +129 -0
- package/dist/src/model-gateway/client-stream-parser.d.ts +1 -0
- package/dist/src/model-gateway/client-stream-parser.js +1 -0
- package/dist/src/model-gateway/client.d.ts +19 -0
- package/dist/src/model-gateway/client.js +25 -0
- package/dist/src/model-gateway/index.d.ts +3 -0
- package/dist/src/model-gateway/index.js +2 -0
- package/dist/src/model-gateway/invocation-policy.d.ts +1 -0
- package/dist/src/model-gateway/invocation-policy.js +1 -0
- package/dist/src/model-gateway/invocation-profile-policy.d.ts +1 -0
- package/dist/src/model-gateway/invocation-profile-policy.js +1 -0
- package/dist/src/model-gateway/message-contract.d.ts +1 -0
- package/dist/src/model-gateway/message-contract.js +1 -0
- package/dist/src/model-gateway/model-io-trace.d.ts +3 -0
- package/dist/src/model-gateway/model-io-trace.js +3 -0
- package/dist/src/model-gateway/model-registry.d.ts +1 -0
- package/dist/src/model-gateway/model-registry.js +1 -0
- package/dist/src/model-gateway/observability/context-window-guard.d.ts +27 -0
- package/dist/src/model-gateway/observability/context-window-guard.js +81 -0
- package/dist/src/model-gateway/observability/provider-trace-context.d.ts +12 -0
- package/dist/src/model-gateway/observability/provider-trace-context.js +22 -0
- package/dist/src/model-gateway/observability/provider-trace.d.ts +19 -0
- package/dist/src/model-gateway/observability/provider-trace.js +90 -0
- package/dist/src/model-gateway/observability/trace-store.d.ts +32 -0
- package/dist/src/model-gateway/observability/trace-store.js +74 -0
- package/dist/src/model-gateway/policy/invocation-policy.d.ts +11 -0
- package/dist/src/model-gateway/policy/invocation-policy.js +178 -0
- package/dist/src/model-gateway/policy/invocation-profile-policy.d.ts +25 -0
- package/dist/src/model-gateway/policy/invocation-profile-policy.js +28 -0
- package/dist/src/model-gateway/policy/model-registry.d.ts +9 -0
- package/dist/src/model-gateway/policy/model-registry.js +164 -0
- package/dist/src/model-gateway/protocol/message-contract.d.ts +15 -0
- package/dist/src/model-gateway/protocol/message-contract.js +181 -0
- package/dist/src/model-gateway/protocol/usage.d.ts +9 -0
- package/dist/src/model-gateway/protocol/usage.js +39 -0
- package/dist/src/model-gateway/provider-adapter.d.ts +1 -0
- package/dist/src/model-gateway/provider-adapter.js +1 -0
- package/dist/src/model-gateway/provider-envelope-budget.d.ts +1 -0
- package/dist/src/model-gateway/provider-envelope-budget.js +1 -0
- package/dist/src/model-gateway/providers/contracts.d.ts +62 -0
- package/dist/src/model-gateway/providers/contracts.js +32 -0
- package/dist/src/model-gateway/providers/envelope-budget.d.ts +15 -0
- package/dist/src/model-gateway/providers/envelope-budget.js +79 -0
- package/dist/src/model-gateway/providers/ollama/adapter.d.ts +4 -0
- package/dist/src/model-gateway/providers/ollama/adapter.js +115 -0
- package/dist/src/model-gateway/providers/ollama/generation-options.d.ts +20 -0
- package/dist/src/model-gateway/providers/ollama/generation-options.js +49 -0
- package/dist/src/model-gateway/providers/ollama/message-projection.d.ts +7 -0
- package/dist/src/model-gateway/providers/ollama/message-projection.js +92 -0
- package/dist/src/model-gateway/providers/ollama/options.d.ts +1 -0
- package/dist/src/model-gateway/providers/ollama/options.js +10 -0
- package/dist/src/model-gateway/providers/ollama/payload.d.ts +10 -0
- package/dist/src/model-gateway/providers/ollama/payload.js +111 -0
- package/dist/src/model-gateway/providers/ollama/request-diagnostics.d.ts +16 -0
- package/dist/src/model-gateway/providers/ollama/request-diagnostics.js +98 -0
- package/dist/src/model-gateway/providers/ollama/stream-diagnostics.d.ts +11 -0
- package/dist/src/model-gateway/providers/ollama/stream-diagnostics.js +137 -0
- package/dist/src/model-gateway/providers/ollama/stream-normalizer.d.ts +21 -0
- package/dist/src/model-gateway/providers/ollama/stream-normalizer.js +201 -0
- package/dist/src/model-gateway/providers/ollama-adapter.d.ts +1 -0
- package/dist/src/model-gateway/providers/ollama-adapter.js +1 -0
- package/dist/src/model-gateway/providers/ollama.d.ts +1 -0
- package/dist/src/model-gateway/providers/ollama.js +1 -0
- package/dist/src/model-gateway/providers/openai/adapter.d.ts +2 -0
- package/dist/src/model-gateway/providers/openai/adapter.js +114 -0
- package/dist/src/model-gateway/providers/openai/diagnostics.d.ts +14 -0
- package/dist/src/model-gateway/providers/openai/diagnostics.js +71 -0
- package/dist/src/model-gateway/providers/openai/input-token-count.d.ts +2 -0
- package/dist/src/model-gateway/providers/openai/input-token-count.js +55 -0
- package/dist/src/model-gateway/providers/openai/payload.d.ts +9 -0
- package/dist/src/model-gateway/providers/openai/payload.js +127 -0
- package/dist/src/model-gateway/providers/openai/protocol.d.ts +4 -0
- package/dist/src/model-gateway/providers/openai/protocol.js +3 -0
- package/dist/src/model-gateway/providers/openai/settings.d.ts +6 -0
- package/dist/src/model-gateway/providers/openai/settings.js +25 -0
- package/dist/src/model-gateway/providers/openai/stream-normalizer.d.ts +51 -0
- package/dist/src/model-gateway/providers/openai/stream-normalizer.js +179 -0
- package/dist/src/model-gateway/providers/openai/stream.d.ts +10 -0
- package/dist/src/model-gateway/providers/openai/stream.js +96 -0
- package/dist/src/model-gateway/providers/openai-adapter.d.ts +1 -0
- package/dist/src/model-gateway/providers/openai-adapter.js +1 -0
- package/dist/src/model-gateway/providers/openai.d.ts +1 -0
- package/dist/src/model-gateway/providers/openai.js +1 -0
- package/dist/src/model-gateway/providers/registry.d.ts +5 -0
- package/dist/src/model-gateway/providers/registry.js +10 -0
- package/dist/src/model-gateway/server/admin.d.ts +5 -0
- package/dist/src/model-gateway/server/admin.js +64 -0
- package/dist/src/model-gateway/server/chat-handler.d.ts +4 -0
- package/dist/src/model-gateway/server/chat-handler.js +83 -0
- package/dist/src/model-gateway/server/configuration.d.ts +4 -0
- package/dist/src/model-gateway/server/configuration.js +57 -0
- package/dist/src/model-gateway/server/contracts.d.ts +48 -0
- package/dist/src/model-gateway/server/contracts.js +1 -0
- package/dist/src/model-gateway/server/create-server.d.ts +3 -0
- package/dist/src/model-gateway/server/create-server.js +96 -0
- package/dist/src/model-gateway/server/errors.d.ts +12 -0
- package/dist/src/model-gateway/server/errors.js +47 -0
- package/dist/src/model-gateway/server/http-response.d.ts +3 -0
- package/dist/src/model-gateway/server/http-response.js +13 -0
- package/dist/src/model-gateway/server/index.d.ts +6 -0
- package/dist/src/model-gateway/server/index.js +5 -0
- package/dist/src/model-gateway/server/input-token-count-handler.d.ts +4 -0
- package/dist/src/model-gateway/server/input-token-count-handler.js +84 -0
- package/dist/src/model-gateway/server/input-token-measurements.d.ts +16 -0
- package/dist/src/model-gateway/server/input-token-measurements.js +58 -0
- package/dist/src/model-gateway/server/invocation-validation.d.ts +18 -0
- package/dist/src/model-gateway/server/invocation-validation.js +91 -0
- package/dist/src/model-gateway/server/provider-fetch.d.ts +16 -0
- package/dist/src/model-gateway/server/provider-fetch.js +108 -0
- package/dist/src/model-gateway/server/provider-registry.d.ts +3 -0
- package/dist/src/model-gateway/server/provider-registry.js +12 -0
- package/dist/src/model-gateway/server/raw-handler.d.ts +3 -0
- package/dist/src/model-gateway/server/raw-handler.js +70 -0
- package/dist/src/model-gateway/server/request-body.d.ts +3 -0
- package/dist/src/model-gateway/server/request-body.js +12 -0
- package/dist/src/model-gateway/server.d.ts +2 -0
- package/dist/src/model-gateway/server.js +9 -0
- package/dist/src/model-gateway/stream-normalizer.d.ts +1 -0
- package/dist/src/model-gateway/stream-normalizer.js +1 -0
- package/dist/src/model-gateway/structured-output/budget.d.ts +7 -0
- package/dist/src/model-gateway/structured-output/budget.js +20 -0
- package/dist/src/model-gateway/structured-output/format-contract.d.ts +5 -0
- package/dist/src/model-gateway/structured-output/format-contract.js +28 -0
- package/dist/src/model-gateway/structured-output/ollama-format.d.ts +13 -0
- package/dist/src/model-gateway/structured-output/ollama-format.js +136 -0
- package/dist/src/model-gateway/structured-output/openai-format.d.ts +14 -0
- package/dist/src/model-gateway/structured-output/openai-format.js +75 -0
- package/dist/src/model-gateway/structured-output/projection.d.ts +3 -0
- package/dist/src/model-gateway/structured-output/projection.js +3 -0
- package/dist/src/model-gateway/structured-output/schema-character-estimator.d.ts +1 -0
- package/dist/src/model-gateway/structured-output/schema-character-estimator.js +211 -0
- package/dist/src/model-gateway/structured-output-budget.d.ts +1 -0
- package/dist/src/model-gateway/structured-output-budget.js +1 -0
- package/dist/src/model-gateway/structured-output.d.ts +1 -0
- package/dist/src/model-gateway/structured-output.js +1 -0
- package/dist/src/model-gateway/types.d.ts +214 -0
- package/dist/src/model-gateway/types.js +1 -0
- package/dist/src/plugin-contract/entrypoint.d.ts +34 -0
- package/dist/src/plugin-contract/entrypoint.js +1 -0
- package/dist/src/plugin-contract/index.d.ts +2 -0
- package/dist/src/plugin-contract/index.js +1 -0
- package/dist/src/plugin-contract/manifest.d.ts +49 -0
- package/dist/src/plugin-contract/manifest.js +3 -0
- package/dist/src/plugin-sdk/bounds.d.ts +28 -0
- package/dist/src/plugin-sdk/bounds.js +48 -0
- package/dist/src/plugin-sdk/files.d.ts +16 -0
- package/dist/src/plugin-sdk/files.js +95 -0
- package/dist/src/plugin-sdk/index.d.ts +7 -0
- package/dist/src/plugin-sdk/index.js +7 -0
- package/dist/src/plugin-sdk/parameters.d.ts +44 -0
- package/dist/src/plugin-sdk/parameters.js +123 -0
- package/dist/src/plugin-sdk/paths.d.ts +9 -0
- package/dist/src/plugin-sdk/paths.js +15 -0
- package/dist/src/plugin-sdk/plugin.d.ts +7 -0
- package/dist/src/plugin-sdk/plugin.js +7 -0
- package/dist/src/plugin-sdk/results.d.ts +21 -0
- package/dist/src/plugin-sdk/results.js +70 -0
- package/dist/src/runtime/adapters/compiled-workspace-provider.d.ts +5 -0
- package/dist/src/runtime/adapters/compiled-workspace-provider.js +7 -0
- package/dist/src/runtime/adapters/configured-skill-provider.d.ts +16 -0
- package/dist/src/runtime/adapters/configured-skill-provider.js +59 -0
- package/dist/src/runtime/adapters/default-session-adapters.d.ts +3 -0
- package/dist/src/runtime/adapters/default-session-adapters.js +16 -0
- package/dist/src/runtime/adapters/file-session-store.d.ts +8 -0
- package/dist/src/runtime/adapters/file-session-store.js +26 -0
- package/dist/src/runtime/adapters/in-memory-session-store.d.ts +8 -0
- package/dist/src/runtime/adapters/in-memory-session-store.js +475 -0
- package/dist/src/runtime/adapters/index.d.ts +8 -0
- package/dist/src/runtime/adapters/index.js +8 -0
- package/dist/src/runtime/adapters/multi-workspace-provider.d.ts +7 -0
- package/dist/src/runtime/adapters/multi-workspace-provider.js +14 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/catalog/registrations.d.ts +2 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/catalog/registrations.js +39 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/catalog/runtime-path-bindings.d.ts +5 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/catalog/runtime-path-bindings.js +18 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/approval.d.ts +19 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/approval.js +47 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/call-binding.d.ts +23 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/call-binding.js +117 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/run.d.ts +8 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/execution/run.js +113 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/executor.d.ts +7 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/executor.js +56 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/payload/input-preparation.d.ts +10 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/payload/input-preparation.js +91 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/payload/lifecycle.d.ts +6 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/payload/lifecycle.js +97 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/contracts.d.ts +86 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/contracts.js +1 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/event-metadata.d.ts +2 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/event-metadata.js +10 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/rejection.d.ts +2 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/rejection.js +3 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/values.d.ts +1 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations/shared/values.js +7 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations.d.ts +3 -0
- package/dist/src/runtime/adapters/registered-tool-normal-invocations.js +2 -0
- package/dist/src/runtime/adapters/registered-tool-payload-plan.d.ts +90 -0
- package/dist/src/runtime/adapters/registered-tool-payload-plan.js +495 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/catalog.d.ts +6 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/catalog.js +144 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/contracts.d.ts +33 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/contracts.js +1 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/errors.d.ts +11 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/errors.js +30 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/execution.d.ts +12 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/execution.js +155 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-authoring-result.d.ts +5 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-authoring-result.js +60 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-lifecycle.d.ts +30 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-lifecycle.js +119 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-rejection.d.ts +20 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-rejection.js +46 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-stages.d.ts +32 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/payload-stages.js +303 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/result-evidence.d.ts +21 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/result-evidence.js +151 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/result-observer.d.ts +8 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/result-observer.js +167 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/runtime-path-controls.d.ts +12 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/runtime-path-controls.js +39 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/values.d.ts +3 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities/values.js +21 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities.d.ts +8 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capabilities.js +147 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capability-diagnostics.d.ts +37 -0
- package/dist/src/runtime/adapters/registered-tool-worker-capability-diagnostics.js +133 -0
- package/dist/src/runtime/adapters/request-tool-model-invoker.d.ts +4 -0
- package/dist/src/runtime/adapters/request-tool-model-invoker.js +20 -0
- package/dist/src/runtime/adapters/source-workspace-provider.d.ts +5 -0
- package/dist/src/runtime/adapters/source-workspace-provider.js +14 -0
- package/dist/src/runtime/admin/config-control.d.ts +42 -0
- package/dist/src/runtime/admin/config-control.js +211 -0
- package/dist/src/runtime/admin/system-control.d.ts +89 -0
- package/dist/src/runtime/admin/system-control.js +227 -0
- package/dist/src/runtime/attachments/store.d.ts +32 -0
- package/dist/src/runtime/attachments/store.js +169 -0
- package/dist/src/runtime/capabilities/configured-tool-registry.d.ts +3 -0
- package/dist/src/runtime/capabilities/configured-tool-registry.js +40 -0
- package/dist/src/runtime/capabilities/request-bound-tool-registry.d.ts +11 -0
- package/dist/src/runtime/capabilities/request-bound-tool-registry.js +80 -0
- package/dist/src/runtime/capabilities/request-runtime-tool-registry.d.ts +14 -0
- package/dist/src/runtime/capabilities/request-runtime-tool-registry.js +18 -0
- package/dist/src/runtime/capabilities/runtime-target-path.d.ts +42 -0
- package/dist/src/runtime/capabilities/runtime-target-path.js +261 -0
- package/dist/src/runtime/composition.d.ts +38 -0
- package/dist/src/runtime/composition.js +36 -0
- package/dist/src/runtime/config/builders.d.ts +23 -0
- package/dist/src/runtime/config/builders.js +485 -0
- package/dist/src/runtime/config/constants.d.ts +8 -0
- package/dist/src/runtime/config/constants.js +8 -0
- package/dist/src/runtime/config/effective-model-config-validation.d.ts +11 -0
- package/dist/src/runtime/config/effective-model-config-validation.js +165 -0
- package/dist/src/runtime/config/environment.d.ts +12 -0
- package/dist/src/runtime/config/environment.js +40 -0
- package/dist/src/runtime/config/fields.d.ts +5 -0
- package/dist/src/runtime/config/fields.js +259 -0
- package/dist/src/runtime/config/layout.d.ts +17 -0
- package/dist/src/runtime/config/layout.js +24 -0
- package/dist/src/runtime/config/loader.d.ts +12 -0
- package/dist/src/runtime/config/loader.js +46 -0
- package/dist/src/runtime/config/model-execution-policy.d.ts +13 -0
- package/dist/src/runtime/config/model-execution-policy.js +8 -0
- package/dist/src/runtime/config/request-runner-config.d.ts +6 -0
- package/dist/src/runtime/config/request-runner-config.js +16 -0
- package/dist/src/runtime/config/runner/contracts.d.ts +30 -0
- package/dist/src/runtime/config/runner/contracts.js +6 -0
- package/dist/src/runtime/config/runner/instruction-refs.d.ts +6 -0
- package/dist/src/runtime/config/runner/instruction-refs.js +48 -0
- package/dist/src/runtime/config/runner/loader.d.ts +4 -0
- package/dist/src/runtime/config/runner/loader.js +100 -0
- package/dist/src/runtime/config/runner/model-policy.d.ts +6 -0
- package/dist/src/runtime/config/runner/model-policy.js +26 -0
- package/dist/src/runtime/config/runner/step-instructions.d.ts +34 -0
- package/dist/src/runtime/config/runner/step-instructions.js +72 -0
- package/dist/src/runtime/config/runner/validation.d.ts +10 -0
- package/dist/src/runtime/config/runner/validation.js +57 -0
- package/dist/src/runtime/config/schema.d.ts +3 -0
- package/dist/src/runtime/config/schema.js +467 -0
- package/dist/src/runtime/config/types.d.ts +56 -0
- package/dist/src/runtime/config/types.js +1 -0
- package/dist/src/runtime/config/utils.d.ts +12 -0
- package/dist/src/runtime/config/utils.js +83 -0
- package/dist/src/runtime/config/validation.d.ts +17 -0
- package/dist/src/runtime/config/validation.js +561 -0
- package/dist/src/runtime/config.d.ts +11 -0
- package/dist/src/runtime/config.js +166 -0
- package/dist/src/runtime/context/model-step-compaction.d.ts +17 -0
- package/dist/src/runtime/context/model-step-compaction.js +456 -0
- package/dist/src/runtime/context/pinned-context-compaction.d.ts +33 -0
- package/dist/src/runtime/context/pinned-context-compaction.js +235 -0
- package/dist/src/runtime/context/request-context-budget.d.ts +17 -0
- package/dist/src/runtime/context/request-context-budget.js +51 -0
- package/dist/src/runtime/context/request-context-contracts.d.ts +64 -0
- package/dist/src/runtime/context/request-context-contracts.js +1 -0
- package/dist/src/runtime/context/request-context.d.ts +30 -0
- package/dist/src/runtime/context/request-context.js +242 -0
- package/dist/src/runtime/context/request-source.d.ts +33 -0
- package/dist/src/runtime/context/request-source.js +92 -0
- package/dist/src/runtime/context/request-temporal-context.d.ts +18 -0
- package/dist/src/runtime/context/request-temporal-context.js +43 -0
- package/dist/src/runtime/context/request-tool-results.d.ts +48 -0
- package/dist/src/runtime/context/request-tool-results.js +319 -0
- package/dist/src/runtime/context/semantic-compaction/chunking.d.ts +24 -0
- package/dist/src/runtime/context/semantic-compaction/chunking.js +50 -0
- package/dist/src/runtime/context/semantic-compaction/contracts.d.ts +60 -0
- package/dist/src/runtime/context/semantic-compaction/contracts.js +134 -0
- package/dist/src/runtime/context/semantic-compaction/dependency-results.d.ts +20 -0
- package/dist/src/runtime/context/semantic-compaction/dependency-results.js +81 -0
- package/dist/src/runtime/context/semantic-compaction/format.d.ts +3 -0
- package/dist/src/runtime/context/semantic-compaction/format.js +105 -0
- package/dist/src/runtime/context/semantic-compaction/index.d.ts +5 -0
- package/dist/src/runtime/context/semantic-compaction/index.js +5 -0
- package/dist/src/runtime/context/semantic-compaction/parser.d.ts +12 -0
- package/dist/src/runtime/context/semantic-compaction/parser.js +153 -0
- package/dist/src/runtime/context/semantic-compaction/prompt.d.ts +1 -0
- package/dist/src/runtime/context/semantic-compaction/prompt.js +12 -0
- package/dist/src/runtime/context/semantic-compaction/repair-headroom.d.ts +31 -0
- package/dist/src/runtime/context/semantic-compaction/repair-headroom.js +50 -0
- package/dist/src/runtime/context/semantic-compaction/run.d.ts +25 -0
- package/dist/src/runtime/context/semantic-compaction/run.js +561 -0
- package/dist/src/runtime/context/semantic-compaction/store.d.ts +9 -0
- package/dist/src/runtime/context/semantic-compaction/store.js +82 -0
- package/dist/src/runtime/context/session-artifact-paths.d.ts +42 -0
- package/dist/src/runtime/context/session-artifact-paths.js +58 -0
- package/dist/src/runtime/context/session-memory/compaction/batching.d.ts +4 -0
- package/dist/src/runtime/context/session-memory/compaction/batching.js +17 -0
- package/dist/src/runtime/context/session-memory/compaction/format.d.ts +2 -0
- package/dist/src/runtime/context/session-memory/compaction/format.js +26 -0
- package/dist/src/runtime/context/session-memory/compaction/parser.d.ts +8 -0
- package/dist/src/runtime/context/session-memory/compaction/parser.js +30 -0
- package/dist/src/runtime/context/session-memory/compaction/prompt.d.ts +1 -0
- package/dist/src/runtime/context/session-memory/compaction/prompt.js +10 -0
- package/dist/src/runtime/context/session-memory/compaction/repair-headroom.d.ts +6 -0
- package/dist/src/runtime/context/session-memory/compaction/repair-headroom.js +24 -0
- package/dist/src/runtime/context/session-memory/compaction/run.d.ts +9 -0
- package/dist/src/runtime/context/session-memory/compaction/run.js +125 -0
- package/dist/src/runtime/context/session-memory/contracts.d.ts +38 -0
- package/dist/src/runtime/context/session-memory/contracts.js +1 -0
- package/dist/src/runtime/context/session-memory/controller.d.ts +2 -0
- package/dist/src/runtime/context/session-memory/controller.js +90 -0
- package/dist/src/runtime/context/session-memory/index.d.ts +4 -0
- package/dist/src/runtime/context/session-memory/index.js +3 -0
- package/dist/src/runtime/context/session-memory/message-replacement.d.ts +7 -0
- package/dist/src/runtime/context/session-memory/message-replacement.js +39 -0
- package/dist/src/runtime/context/session-memory/model-step-controller.d.ts +3 -0
- package/dist/src/runtime/context/session-memory/model-step-controller.js +42 -0
- package/dist/src/runtime/context/session-memory/projection.d.ts +5 -0
- package/dist/src/runtime/context/session-memory/projection.js +26 -0
- package/dist/src/runtime/context/session-memory/root-projection.d.ts +9 -0
- package/dist/src/runtime/context/session-memory/root-projection.js +14 -0
- package/dist/src/runtime/context/session-memory/selection.d.ts +8 -0
- package/dist/src/runtime/context/session-memory/selection.js +35 -0
- package/dist/src/runtime/context/skills-context.d.ts +12 -0
- package/dist/src/runtime/context/skills-context.js +27 -0
- package/dist/src/runtime/context/token-estimator.d.ts +6 -0
- package/dist/src/runtime/context/token-estimator.js +53 -0
- package/dist/src/runtime/context/workspace-context.d.ts +8 -0
- package/dist/src/runtime/context/workspace-context.js +49 -0
- package/dist/src/runtime/default-adapters.d.ts +29 -0
- package/dist/src/runtime/default-adapters.js +209 -0
- package/dist/src/runtime/events/event-status.d.ts +20 -0
- package/dist/src/runtime/events/event-status.js +298 -0
- package/dist/src/runtime/events/planner-event-status.d.ts +9 -0
- package/dist/src/runtime/events/planner-event-status.js +56 -0
- package/dist/src/runtime/events/runtime-emitter.d.ts +30 -0
- package/dist/src/runtime/events/runtime-emitter.js +186 -0
- package/dist/src/runtime/events/runtime-status.d.ts +5 -0
- package/dist/src/runtime/events/runtime-status.js +3 -0
- package/dist/src/runtime/index.d.ts +12 -0
- package/dist/src/runtime/index.js +12 -0
- package/dist/src/runtime/lifecycle/request-finalizer.d.ts +30 -0
- package/dist/src/runtime/lifecycle/request-finalizer.js +42 -0
- package/dist/src/runtime/model/input-token-count.d.ts +10 -0
- package/dist/src/runtime/model/input-token-count.js +42 -0
- package/dist/src/runtime/model/invoke-raw-step.d.ts +57 -0
- package/dist/src/runtime/model/invoke-raw-step.js +146 -0
- package/dist/src/runtime/model/invoke-step.d.ts +16 -0
- package/dist/src/runtime/model/invoke-step.js +535 -0
- package/dist/src/runtime/model/invoke-structured-step.d.ts +41 -0
- package/dist/src/runtime/model/invoke-structured-step.js +143 -0
- package/dist/src/runtime/model/json-schema-value.d.ts +9 -0
- package/dist/src/runtime/model/json-schema-value.js +261 -0
- package/dist/src/runtime/model/model-catalog.d.ts +18 -0
- package/dist/src/runtime/model/model-catalog.js +55 -0
- package/dist/src/runtime/model/model-context-budget.d.ts +25 -0
- package/dist/src/runtime/model/model-context-budget.js +51 -0
- package/dist/src/runtime/model/model-selection.d.ts +16 -0
- package/dist/src/runtime/model/model-selection.js +66 -0
- package/dist/src/runtime/model/model-step-capability-policy.d.ts +14 -0
- package/dist/src/runtime/model/model-step-capability-policy.js +49 -0
- package/dist/src/runtime/model/model-step-port.d.ts +37 -0
- package/dist/src/runtime/model/model-step-port.js +1 -0
- package/dist/src/runtime/model/model-step-timeout-policy.d.ts +15 -0
- package/dist/src/runtime/model/model-step-timeout-policy.js +34 -0
- package/dist/src/runtime/model/provider-completion.d.ts +13 -0
- package/dist/src/runtime/model/provider-completion.js +29 -0
- package/dist/src/runtime/model/repair-prompts.d.ts +13 -0
- package/dist/src/runtime/model/repair-prompts.js +22 -0
- package/dist/src/runtime/model/structured-decision-envelope.d.ts +4 -0
- package/dist/src/runtime/model/structured-decision-envelope.js +47 -0
- package/dist/src/runtime/model/thinking-trace.d.ts +6 -0
- package/dist/src/runtime/model/thinking-trace.js +1 -0
- package/dist/src/runtime/observability/debug-logger.d.ts +27 -0
- package/dist/src/runtime/observability/debug-logger.js +132 -0
- package/dist/src/runtime/observability/error-type.d.ts +1 -0
- package/dist/src/runtime/observability/error-type.js +33 -0
- package/dist/src/runtime/observability/log-rotation.d.ts +24 -0
- package/dist/src/runtime/observability/log-rotation.js +142 -0
- package/dist/src/runtime/orchestration/capability-adapters/descriptor.d.ts +13 -0
- package/dist/src/runtime/orchestration/capability-adapters/descriptor.js +54 -0
- package/dist/src/runtime/orchestration/capability-adapters/index.d.ts +14 -0
- package/dist/src/runtime/orchestration/capability-adapters/index.js +12 -0
- package/dist/src/runtime/orchestration/capability-adapters/result.d.ts +74 -0
- package/dist/src/runtime/orchestration/capability-adapters/result.js +307 -0
- package/dist/src/runtime/orchestration/capability-adapters/scope.d.ts +17 -0
- package/dist/src/runtime/orchestration/capability-adapters/scope.js +51 -0
- package/dist/src/runtime/orchestration/capability-adapters/working-directory.d.ts +4 -0
- package/dist/src/runtime/orchestration/capability-adapters/working-directory.js +7 -0
- package/dist/src/runtime/orchestration/final-response/finalization.d.ts +15 -0
- package/dist/src/runtime/orchestration/final-response/finalization.js +18 -0
- package/dist/src/runtime/orchestration/lifecycle/request-lifecycle.d.ts +37 -0
- package/dist/src/runtime/orchestration/lifecycle/request-lifecycle.js +109 -0
- package/dist/src/runtime/orchestration/request/request-attachment-prompt.d.ts +2 -0
- package/dist/src/runtime/orchestration/request/request-attachment-prompt.js +17 -0
- package/dist/src/runtime/orchestration/request/request-attachments.d.ts +18 -0
- package/dist/src/runtime/orchestration/request/request-attachments.js +81 -0
- package/dist/src/runtime/orchestration/role-calls/assignment-scope.d.ts +22 -0
- package/dist/src/runtime/orchestration/role-calls/assignment-scope.js +100 -0
- package/dist/src/runtime/orchestration/role-calls/candidate-validation.d.ts +5 -0
- package/dist/src/runtime/orchestration/role-calls/candidate-validation.js +328 -0
- package/dist/src/runtime/orchestration/role-calls/capability-selection-reconsideration.d.ts +25 -0
- package/dist/src/runtime/orchestration/role-calls/capability-selection-reconsideration.js +158 -0
- package/dist/src/runtime/orchestration/role-calls/child-return.d.ts +32 -0
- package/dist/src/runtime/orchestration/role-calls/child-return.js +85 -0
- package/dist/src/runtime/orchestration/role-calls/command-decoder.d.ts +9 -0
- package/dist/src/runtime/orchestration/role-calls/command-decoder.js +390 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch.d.ts +2 -0
- package/dist/src/runtime/orchestration/role-calls/command-dispatch.js +606 -0
- package/dist/src/runtime/orchestration/role-calls/contracts.d.ts +418 -0
- package/dist/src/runtime/orchestration/role-calls/contracts.js +36 -0
- package/dist/src/runtime/orchestration/role-calls/dependency-results.d.ts +8 -0
- package/dist/src/runtime/orchestration/role-calls/dependency-results.js +73 -0
- package/dist/src/runtime/orchestration/role-calls/diagnostics.d.ts +38 -0
- package/dist/src/runtime/orchestration/role-calls/diagnostics.js +270 -0
- package/dist/src/runtime/orchestration/role-calls/index.d.ts +11 -0
- package/dist/src/runtime/orchestration/role-calls/index.js +11 -0
- package/dist/src/runtime/orchestration/role-calls/ledger.d.ts +5 -0
- package/dist/src/runtime/orchestration/role-calls/ledger.js +334 -0
- package/dist/src/runtime/orchestration/role-calls/plan-binding.d.ts +35 -0
- package/dist/src/runtime/orchestration/role-calls/plan-binding.js +179 -0
- package/dist/src/runtime/orchestration/role-calls/plan-child-objective.d.ts +12 -0
- package/dist/src/runtime/orchestration/role-calls/plan-child-objective.js +38 -0
- package/dist/src/runtime/orchestration/role-calls/plan-codec.d.ts +2 -0
- package/dist/src/runtime/orchestration/role-calls/plan-codec.js +91 -0
- package/dist/src/runtime/orchestration/role-calls/plan-validation.d.ts +22 -0
- package/dist/src/runtime/orchestration/role-calls/plan-validation.js +158 -0
- package/dist/src/runtime/orchestration/role-calls/plan.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-calls/plan.js +4 -0
- package/dist/src/runtime/orchestration/role-calls/reducer-primitives.d.ts +31 -0
- package/dist/src/runtime/orchestration/role-calls/reducer-primitives.js +161 -0
- package/dist/src/runtime/orchestration/role-calls/reducer.d.ts +9 -0
- package/dist/src/runtime/orchestration/role-calls/reducer.js +50 -0
- package/dist/src/runtime/orchestration/role-calls/transactions.d.ts +5 -0
- package/dist/src/runtime/orchestration/role-calls/transactions.js +195 -0
- package/dist/src/runtime/orchestration/role-calls/worker-capability-scope.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-calls/worker-capability-scope.js +28 -0
- package/dist/src/runtime/orchestration/role-calls/working-directory.d.ts +16 -0
- package/dist/src/runtime/orchestration/role-calls/working-directory.js +51 -0
- package/dist/src/runtime/orchestration/role-executors/activation/loop.d.ts +21 -0
- package/dist/src/runtime/orchestration/role-executors/activation/loop.js +245 -0
- package/dist/src/runtime/orchestration/role-executors/activation/result-normalization.d.ts +8 -0
- package/dist/src/runtime/orchestration/role-executors/activation/result-normalization.js +117 -0
- package/dist/src/runtime/orchestration/role-executors/activation/state-validation.d.ts +24 -0
- package/dist/src/runtime/orchestration/role-executors/activation/state-validation.js +137 -0
- package/dist/src/runtime/orchestration/role-executors/child-invocation/diagnostic-fields.d.ts +4 -0
- package/dist/src/runtime/orchestration/role-executors/child-invocation/diagnostic-fields.js +39 -0
- package/dist/src/runtime/orchestration/role-executors/child-invocation/state-validation.d.ts +41 -0
- package/dist/src/runtime/orchestration/role-executors/child-invocation/state-validation.js +80 -0
- package/dist/src/runtime/orchestration/role-executors/child-invocation/transaction.d.ts +22 -0
- package/dist/src/runtime/orchestration/role-executors/child-invocation/transaction.js +232 -0
- package/dist/src/runtime/orchestration/role-executors/contracts.d.ts +72 -0
- package/dist/src/runtime/orchestration/role-executors/contracts.js +1 -0
- package/dist/src/runtime/orchestration/role-executors/diagnostics.d.ts +100 -0
- package/dist/src/runtime/orchestration/role-executors/diagnostics.js +133 -0
- package/dist/src/runtime/orchestration/role-executors/index.d.ts +2 -0
- package/dist/src/runtime/orchestration/role-executors/index.js +2 -0
- package/dist/src/runtime/orchestration/role-executors/registry.d.ts +2 -0
- package/dist/src/runtime/orchestration/role-executors/registry.js +39 -0
- package/dist/src/runtime/orchestration/role-executors/shared/diagnostic-context.d.ts +9 -0
- package/dist/src/runtime/orchestration/role-executors/shared/diagnostic-context.js +16 -0
- package/dist/src/runtime/orchestration/role-executors/shared/runtime-invariants.d.ts +14 -0
- package/dist/src/runtime/orchestration/role-executors/shared/runtime-invariants.js +45 -0
- package/dist/src/runtime/orchestration/roles.d.ts +7 -0
- package/dist/src/runtime/orchestration/roles.js +15 -0
- package/dist/src/runtime/orchestration/state-head.d.ts +110 -0
- package/dist/src/runtime/orchestration/state-head.js +349 -0
- package/dist/src/runtime/orchestration/synchronous-boundary.d.ts +6 -0
- package/dist/src/runtime/orchestration/synchronous-boundary.js +26 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding.d.ts +13 -0
- package/dist/src/runtime/orchestration/worker-capabilities/binding.js +625 -0
- package/dist/src/runtime/orchestration/worker-capabilities/contracts.d.ts +178 -0
- package/dist/src/runtime/orchestration/worker-capabilities/contracts.js +18 -0
- package/dist/src/runtime/orchestration/worker-capabilities/controls.d.ts +18 -0
- package/dist/src/runtime/orchestration/worker-capabilities/controls.js +251 -0
- package/dist/src/runtime/orchestration/worker-capabilities/diagnostics.d.ts +33 -0
- package/dist/src/runtime/orchestration/worker-capabilities/diagnostics.js +117 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution.d.ts +38 -0
- package/dist/src/runtime/orchestration/worker-capabilities/execution.js +400 -0
- package/dist/src/runtime/orchestration/worker-capabilities/index.d.ts +8 -0
- package/dist/src/runtime/orchestration/worker-capabilities/index.js +8 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-author.d.ts +8 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-author.js +575 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-contracts.d.ts +116 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-contracts.js +27 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-diagnostics.d.ts +33 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-diagnostics.js +82 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-instructions.d.ts +6 -0
- package/dist/src/runtime/orchestration/worker-capabilities/payload-instructions.js +56 -0
- package/dist/src/runtime/orchestration/worker-capabilities/scope.d.ts +35 -0
- package/dist/src/runtime/orchestration/worker-capabilities/scope.js +141 -0
- package/dist/src/runtime/orchestration/worker-capabilities/selection-controls.d.ts +37 -0
- package/dist/src/runtime/orchestration/worker-capabilities/selection-controls.js +95 -0
- package/dist/src/runtime/orchestration/worker-capabilities/settled-results.d.ts +15 -0
- package/dist/src/runtime/orchestration/worker-capabilities/settled-results.js +119 -0
- package/dist/src/runtime/plugins/bundled-root.d.ts +5 -0
- package/dist/src/runtime/plugins/bundled-root.js +35 -0
- package/dist/src/runtime/plugins/compiled-catalog.d.ts +16 -0
- package/dist/src/runtime/plugins/compiled-catalog.js +1 -0
- package/dist/src/runtime/plugins/discovered-manifest.d.ts +6 -0
- package/dist/src/runtime/plugins/discovered-manifest.js +1 -0
- package/dist/src/runtime/plugins/loader.d.ts +6 -0
- package/dist/src/runtime/plugins/loader.js +337 -0
- package/dist/src/runtime/plugins/manifest-discovery.d.ts +8 -0
- package/dist/src/runtime/plugins/manifest-discovery.js +125 -0
- package/dist/src/runtime/plugins/manifest-projection.d.ts +19 -0
- package/dist/src/runtime/plugins/manifest-projection.js +92 -0
- package/dist/src/runtime/plugins/manifest-validator.d.ts +2 -0
- package/dist/src/runtime/plugins/manifest-validator.js +459 -0
- package/dist/src/runtime/ports.d.ts +240 -0
- package/dist/src/runtime/ports.js +1 -0
- package/dist/src/runtime/request/contracts.d.ts +121 -0
- package/dist/src/runtime/request/contracts.js +6 -0
- package/dist/src/runtime/request/dependencies.d.ts +23 -0
- package/dist/src/runtime/request/dependencies.js +40 -0
- package/dist/src/runtime/request/execution-agent-root-execution.d.ts +2 -0
- package/dist/src/runtime/request/execution-agent-root-execution.js +117 -0
- package/dist/src/runtime/request/execution-facets.d.ts +11 -0
- package/dist/src/runtime/request/execution-facets.js +90 -0
- package/dist/src/runtime/request/execution-scope-surfaces.d.ts +14 -0
- package/dist/src/runtime/request/execution-scope-surfaces.js +138 -0
- package/dist/src/runtime/request/execution-scope.d.ts +43 -0
- package/dist/src/runtime/request/execution-scope.js +34 -0
- package/dist/src/runtime/request/handler.d.ts +3 -0
- package/dist/src/runtime/request/handler.js +244 -0
- package/dist/src/runtime/request/immutable-view.d.ts +4 -0
- package/dist/src/runtime/request/immutable-view.js +10 -0
- package/dist/src/runtime/request/input.d.ts +10 -0
- package/dist/src/runtime/request/input.js +21 -0
- package/dist/src/runtime/request/plan-event-projection.d.ts +61 -0
- package/dist/src/runtime/request/plan-event-projection.js +64 -0
- package/dist/src/runtime/request/planner-plan-events.d.ts +6 -0
- package/dist/src/runtime/request/planner-plan-events.js +44 -0
- package/dist/src/runtime/request/request-steering-context.d.ts +3 -0
- package/dist/src/runtime/request/request-steering-context.js +22 -0
- package/dist/src/runtime/request/request-steering.d.ts +36 -0
- package/dist/src/runtime/request/request-steering.js +193 -0
- package/dist/src/runtime/request/result.d.ts +15 -0
- package/dist/src/runtime/request/result.js +1 -0
- package/dist/src/runtime/request/role-call-planner-event-diagnostics.d.ts +17 -0
- package/dist/src/runtime/request/role-call-planner-event-diagnostics.js +78 -0
- package/dist/src/runtime/request/role-call-planner-events.d.ts +19 -0
- package/dist/src/runtime/request/role-call-planner-events.js +104 -0
- package/dist/src/runtime/request/role-executor-composition.d.ts +9 -0
- package/dist/src/runtime/request/role-executor-composition.js +150 -0
- package/dist/src/runtime/request/root-contract.d.ts +98 -0
- package/dist/src/runtime/request/root-contract.js +1 -0
- package/dist/src/runtime/request/root-execution-kernel.d.ts +11 -0
- package/dist/src/runtime/request/root-execution-kernel.js +472 -0
- package/dist/src/runtime/request/runner.d.ts +6 -0
- package/dist/src/runtime/request/runner.js +81 -0
- package/dist/src/runtime/request/session-artifact-path-persistence.d.ts +11 -0
- package/dist/src/runtime/request/session-artifact-path-persistence.js +78 -0
- package/dist/src/runtime/request/session-store.d.ts +2 -0
- package/dist/src/runtime/request/session-store.js +1 -0
- package/dist/src/runtime/request/supervisor-root-execution-diagnostics.d.ts +46 -0
- package/dist/src/runtime/request/supervisor-root-execution-diagnostics.js +82 -0
- package/dist/src/runtime/request/supervisor-root-execution.d.ts +10 -0
- package/dist/src/runtime/request/supervisor-root-execution.js +35 -0
- package/dist/src/runtime/request/worker-capability-composition.d.ts +18 -0
- package/dist/src/runtime/request/worker-capability-composition.js +61 -0
- package/dist/src/runtime/request/worker-capability-payload-prompts.d.ts +2 -0
- package/dist/src/runtime/request/worker-capability-payload-prompts.js +16 -0
- package/dist/src/runtime/request/worker-capability-payload.d.ts +7 -0
- package/dist/src/runtime/request/worker-capability-payload.js +420 -0
- package/dist/src/runtime/session/request-history.d.ts +3 -0
- package/dist/src/runtime/session/request-history.js +10 -0
- package/dist/src/runtime/session/request-session.d.ts +33 -0
- package/dist/src/runtime/session/request-session.js +40 -0
- package/dist/src/runtime/session/session-title.d.ts +12 -0
- package/dist/src/runtime/session/session-title.js +38 -0
- package/dist/src/runtime/steps/auditor-decision/contracts.d.ts +91 -0
- package/dist/src/runtime/steps/auditor-decision/contracts.js +79 -0
- package/dist/src/runtime/steps/auditor-decision/format.d.ts +3 -0
- package/dist/src/runtime/steps/auditor-decision/format.js +86 -0
- package/dist/src/runtime/steps/auditor-decision/index.d.ts +7 -0
- package/dist/src/runtime/steps/auditor-decision/index.js +7 -0
- package/dist/src/runtime/steps/auditor-decision/input.d.ts +11 -0
- package/dist/src/runtime/steps/auditor-decision/input.js +67 -0
- package/dist/src/runtime/steps/auditor-decision/parser.d.ts +2 -0
- package/dist/src/runtime/steps/auditor-decision/parser.js +146 -0
- package/dist/src/runtime/steps/auditor-decision/projection.d.ts +4 -0
- package/dist/src/runtime/steps/auditor-decision/projection.js +120 -0
- package/dist/src/runtime/steps/auditor-decision/prompt.d.ts +1 -0
- package/dist/src/runtime/steps/auditor-decision/prompt.js +11 -0
- package/dist/src/runtime/steps/auditor-decision/run.d.ts +4 -0
- package/dist/src/runtime/steps/auditor-decision/run.js +70 -0
- package/dist/src/runtime/steps/degraded-finalization/contract.d.ts +27 -0
- package/dist/src/runtime/steps/degraded-finalization/contract.js +26 -0
- package/dist/src/runtime/steps/degraded-finalization/fallback.d.ts +2 -0
- package/dist/src/runtime/steps/degraded-finalization/fallback.js +10 -0
- package/dist/src/runtime/steps/degraded-finalization/input.d.ts +10 -0
- package/dist/src/runtime/steps/degraded-finalization/input.js +20 -0
- package/dist/src/runtime/steps/degraded-finalization/parser.d.ts +2 -0
- package/dist/src/runtime/steps/degraded-finalization/parser.js +31 -0
- package/dist/src/runtime/steps/degraded-finalization/prompt.d.ts +5 -0
- package/dist/src/runtime/steps/degraded-finalization/prompt.js +32 -0
- package/dist/src/runtime/steps/degraded-finalization/render.d.ts +5 -0
- package/dist/src/runtime/steps/degraded-finalization/render.js +25 -0
- package/dist/src/runtime/steps/degraded-finalization/run.d.ts +6 -0
- package/dist/src/runtime/steps/degraded-finalization/run.js +77 -0
- package/dist/src/runtime/steps/execution-agent/compaction.d.ts +15 -0
- package/dist/src/runtime/steps/execution-agent/compaction.js +12 -0
- package/dist/src/runtime/steps/execution-agent/contracts.d.ts +98 -0
- package/dist/src/runtime/steps/execution-agent/contracts.js +22 -0
- package/dist/src/runtime/steps/execution-agent/format.d.ts +25 -0
- package/dist/src/runtime/steps/execution-agent/format.js +340 -0
- package/dist/src/runtime/steps/execution-agent/index.d.ts +11 -0
- package/dist/src/runtime/steps/execution-agent/index.js +11 -0
- package/dist/src/runtime/steps/execution-agent/input.d.ts +29 -0
- package/dist/src/runtime/steps/execution-agent/input.js +153 -0
- package/dist/src/runtime/steps/execution-agent/parser.d.ts +2 -0
- package/dist/src/runtime/steps/execution-agent/parser.js +466 -0
- package/dist/src/runtime/steps/execution-agent/prompt.d.ts +11 -0
- package/dist/src/runtime/steps/execution-agent/prompt.js +48 -0
- package/dist/src/runtime/steps/execution-agent/refinement-prompt.d.ts +5 -0
- package/dist/src/runtime/steps/execution-agent/refinement-prompt.js +16 -0
- package/dist/src/runtime/steps/execution-agent/refinement.d.ts +31 -0
- package/dist/src/runtime/steps/execution-agent/refinement.js +379 -0
- package/dist/src/runtime/steps/execution-agent/response-input.d.ts +16 -0
- package/dist/src/runtime/steps/execution-agent/response-input.js +70 -0
- package/dist/src/runtime/steps/execution-agent/response-prompt.d.ts +3 -0
- package/dist/src/runtime/steps/execution-agent/response-prompt.js +22 -0
- package/dist/src/runtime/steps/execution-agent/response-run.d.ts +8 -0
- package/dist/src/runtime/steps/execution-agent/response-run.js +50 -0
- package/dist/src/runtime/steps/execution-agent/run.d.ts +15 -0
- package/dist/src/runtime/steps/execution-agent/run.js +95 -0
- package/dist/src/runtime/steps/execution-agent/state-context.d.ts +19 -0
- package/dist/src/runtime/steps/execution-agent/state-context.js +205 -0
- package/dist/src/runtime/steps/model-step-timeout.d.ts +8 -0
- package/dist/src/runtime/steps/model-step-timeout.js +24 -0
- package/dist/src/runtime/steps/planner-decision/contracts.d.ts +79 -0
- package/dist/src/runtime/steps/planner-decision/contracts.js +37 -0
- package/dist/src/runtime/steps/planner-decision/diagnostics.d.ts +75 -0
- package/dist/src/runtime/steps/planner-decision/diagnostics.js +227 -0
- package/dist/src/runtime/steps/planner-decision/format.d.ts +10 -0
- package/dist/src/runtime/steps/planner-decision/format.js +251 -0
- package/dist/src/runtime/steps/planner-decision/index.d.ts +9 -0
- package/dist/src/runtime/steps/planner-decision/index.js +9 -0
- package/dist/src/runtime/steps/planner-decision/input.d.ts +35 -0
- package/dist/src/runtime/steps/planner-decision/input.js +218 -0
- package/dist/src/runtime/steps/planner-decision/parser.d.ts +9 -0
- package/dist/src/runtime/steps/planner-decision/parser.js +241 -0
- package/dist/src/runtime/steps/planner-decision/plan-parser.d.ts +7 -0
- package/dist/src/runtime/steps/planner-decision/plan-parser.js +178 -0
- package/dist/src/runtime/steps/planner-decision/plan.d.ts +8 -0
- package/dist/src/runtime/steps/planner-decision/plan.js +125 -0
- package/dist/src/runtime/steps/planner-decision/prompt.d.ts +10 -0
- package/dist/src/runtime/steps/planner-decision/prompt.js +98 -0
- package/dist/src/runtime/steps/planner-decision/resume.d.ts +16 -0
- package/dist/src/runtime/steps/planner-decision/resume.js +78 -0
- package/dist/src/runtime/steps/planner-decision/run.d.ts +18 -0
- package/dist/src/runtime/steps/planner-decision/run.js +141 -0
- package/dist/src/runtime/steps/planner-decision/tool-results.d.ts +16 -0
- package/dist/src/runtime/steps/planner-decision/tool-results.js +43 -0
- package/dist/src/runtime/steps/planner-graph/contracts.d.ts +51 -0
- package/dist/src/runtime/steps/planner-graph/contracts.js +25 -0
- package/dist/src/runtime/steps/planner-graph/format.d.ts +3 -0
- package/dist/src/runtime/steps/planner-graph/format.js +80 -0
- package/dist/src/runtime/steps/planner-graph/index.d.ts +6 -0
- package/dist/src/runtime/steps/planner-graph/index.js +6 -0
- package/dist/src/runtime/steps/planner-graph/input.d.ts +11 -0
- package/dist/src/runtime/steps/planner-graph/input.js +58 -0
- package/dist/src/runtime/steps/planner-graph/parser.d.ts +2 -0
- package/dist/src/runtime/steps/planner-graph/parser.js +227 -0
- package/dist/src/runtime/steps/planner-graph/prompt.d.ts +1 -0
- package/dist/src/runtime/steps/planner-graph/prompt.js +11 -0
- package/dist/src/runtime/steps/planner-graph/run.d.ts +7 -0
- package/dist/src/runtime/steps/planner-graph/run.js +72 -0
- package/dist/src/runtime/steps/reviewer-decision/contracts.d.ts +103 -0
- package/dist/src/runtime/steps/reviewer-decision/contracts.js +42 -0
- package/dist/src/runtime/steps/reviewer-decision/diagnostics.d.ts +98 -0
- package/dist/src/runtime/steps/reviewer-decision/diagnostics.js +246 -0
- package/dist/src/runtime/steps/reviewer-decision/final-evidence.d.ts +42 -0
- package/dist/src/runtime/steps/reviewer-decision/final-evidence.js +309 -0
- package/dist/src/runtime/steps/reviewer-decision/format.d.ts +3 -0
- package/dist/src/runtime/steps/reviewer-decision/format.js +97 -0
- package/dist/src/runtime/steps/reviewer-decision/index.d.ts +8 -0
- package/dist/src/runtime/steps/reviewer-decision/index.js +8 -0
- package/dist/src/runtime/steps/reviewer-decision/input.d.ts +32 -0
- package/dist/src/runtime/steps/reviewer-decision/input.js +464 -0
- package/dist/src/runtime/steps/reviewer-decision/model-context.d.ts +17 -0
- package/dist/src/runtime/steps/reviewer-decision/model-context.js +95 -0
- package/dist/src/runtime/steps/reviewer-decision/parser.d.ts +5 -0
- package/dist/src/runtime/steps/reviewer-decision/parser.js +242 -0
- package/dist/src/runtime/steps/reviewer-decision/projection.d.ts +18 -0
- package/dist/src/runtime/steps/reviewer-decision/projection.js +296 -0
- package/dist/src/runtime/steps/reviewer-decision/prompt.d.ts +1 -0
- package/dist/src/runtime/steps/reviewer-decision/prompt.js +18 -0
- package/dist/src/runtime/steps/reviewer-decision/run.d.ts +13 -0
- package/dist/src/runtime/steps/reviewer-decision/run.js +158 -0
- package/dist/src/runtime/steps/supervisor-decision/contracts.d.ts +107 -0
- package/dist/src/runtime/steps/supervisor-decision/contracts.js +19 -0
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.d.ts +111 -0
- package/dist/src/runtime/steps/supervisor-decision/diagnostics.js +277 -0
- package/dist/src/runtime/steps/supervisor-decision/format.d.ts +9 -0
- package/dist/src/runtime/steps/supervisor-decision/format.js +151 -0
- package/dist/src/runtime/steps/supervisor-decision/index.d.ts +10 -0
- package/dist/src/runtime/steps/supervisor-decision/index.js +10 -0
- package/dist/src/runtime/steps/supervisor-decision/input.d.ts +26 -0
- package/dist/src/runtime/steps/supervisor-decision/input.js +176 -0
- package/dist/src/runtime/steps/supervisor-decision/ledger-projection.d.ts +4 -0
- package/dist/src/runtime/steps/supervisor-decision/ledger-projection.js +32 -0
- package/dist/src/runtime/steps/supervisor-decision/parser.d.ts +9 -0
- package/dist/src/runtime/steps/supervisor-decision/parser.js +259 -0
- package/dist/src/runtime/steps/supervisor-decision/prompt.d.ts +12 -0
- package/dist/src/runtime/steps/supervisor-decision/prompt.js +140 -0
- package/dist/src/runtime/steps/supervisor-decision/resume.d.ts +11 -0
- package/dist/src/runtime/steps/supervisor-decision/resume.js +113 -0
- package/dist/src/runtime/steps/supervisor-decision/run.d.ts +14 -0
- package/dist/src/runtime/steps/supervisor-decision/run.js +221 -0
- package/dist/src/runtime/steps/supervisor-decision/worker-affordances.d.ts +7 -0
- package/dist/src/runtime/steps/supervisor-decision/worker-affordances.js +10 -0
- package/dist/src/runtime/steps/supervisor-decision/working-directory.d.ts +17 -0
- package/dist/src/runtime/steps/supervisor-decision/working-directory.js +174 -0
- package/dist/src/runtime/steps/supervisor-response/contracts.d.ts +13 -0
- package/dist/src/runtime/steps/supervisor-response/contracts.js +2 -0
- package/dist/src/runtime/steps/supervisor-response/diagnostics.d.ts +27 -0
- package/dist/src/runtime/steps/supervisor-response/diagnostics.js +55 -0
- package/dist/src/runtime/steps/supervisor-response/index.d.ts +4 -0
- package/dist/src/runtime/steps/supervisor-response/index.js +4 -0
- package/dist/src/runtime/steps/supervisor-response/input.d.ts +13 -0
- package/dist/src/runtime/steps/supervisor-response/input.js +73 -0
- package/dist/src/runtime/steps/supervisor-response/prompt.d.ts +6 -0
- package/dist/src/runtime/steps/supervisor-response/prompt.js +33 -0
- package/dist/src/runtime/steps/supervisor-response/run.d.ts +8 -0
- package/dist/src/runtime/steps/supervisor-response/run.js +108 -0
- package/dist/src/runtime/steps/worker-capability-scope-decision.d.ts +9 -0
- package/dist/src/runtime/steps/worker-capability-scope-decision.js +38 -0
- package/dist/src/runtime/steps/worker-decision/capability-affordances.d.ts +12 -0
- package/dist/src/runtime/steps/worker-decision/capability-affordances.js +8 -0
- package/dist/src/runtime/steps/worker-decision/capability-catalog.d.ts +28 -0
- package/dist/src/runtime/steps/worker-decision/capability-catalog.js +52 -0
- package/dist/src/runtime/steps/worker-decision/capability-selection-rejection.d.ts +15 -0
- package/dist/src/runtime/steps/worker-decision/capability-selection-rejection.js +41 -0
- package/dist/src/runtime/steps/worker-decision/contracts.d.ts +92 -0
- package/dist/src/runtime/steps/worker-decision/contracts.js +34 -0
- package/dist/src/runtime/steps/worker-decision/diagnostics.d.ts +110 -0
- package/dist/src/runtime/steps/worker-decision/diagnostics.js +298 -0
- package/dist/src/runtime/steps/worker-decision/format.d.ts +18 -0
- package/dist/src/runtime/steps/worker-decision/format.js +306 -0
- package/dist/src/runtime/steps/worker-decision/index.d.ts +8 -0
- package/dist/src/runtime/steps/worker-decision/index.js +8 -0
- package/dist/src/runtime/steps/worker-decision/input/canonical-state.d.ts +19 -0
- package/dist/src/runtime/steps/worker-decision/input/canonical-state.js +167 -0
- package/dist/src/runtime/steps/worker-decision/input/capability-selection.d.ts +9 -0
- package/dist/src/runtime/steps/worker-decision/input/capability-selection.js +135 -0
- package/dist/src/runtime/steps/worker-decision/input/contract.d.ts +9 -0
- package/dist/src/runtime/steps/worker-decision/input/contract.js +92 -0
- package/dist/src/runtime/steps/worker-decision/input/diagnostic-projection.d.ts +4 -0
- package/dist/src/runtime/steps/worker-decision/input/diagnostic-projection.js +114 -0
- package/dist/src/runtime/steps/worker-decision/input/prompt-context.d.ts +3 -0
- package/dist/src/runtime/steps/worker-decision/input/prompt-context.js +189 -0
- package/dist/src/runtime/steps/worker-decision/input/reference-context.d.ts +2 -0
- package/dist/src/runtime/steps/worker-decision/input/reference-context.js +50 -0
- package/dist/src/runtime/steps/worker-decision/input/session.d.ts +3 -0
- package/dist/src/runtime/steps/worker-decision/input/session.js +55 -0
- package/dist/src/runtime/steps/worker-decision/input/types.d.ts +122 -0
- package/dist/src/runtime/steps/worker-decision/input/types.js +1 -0
- package/dist/src/runtime/steps/worker-decision/input.d.ts +21 -0
- package/dist/src/runtime/steps/worker-decision/input.js +31 -0
- package/dist/src/runtime/steps/worker-decision/ledger-projection.d.ts +9 -0
- package/dist/src/runtime/steps/worker-decision/ledger-projection.js +40 -0
- package/dist/src/runtime/steps/worker-decision/parser.d.ts +17 -0
- package/dist/src/runtime/steps/worker-decision/parser.js +495 -0
- package/dist/src/runtime/steps/worker-decision/prompt.d.ts +21 -0
- package/dist/src/runtime/steps/worker-decision/prompt.js +167 -0
- package/dist/src/runtime/steps/worker-decision/result-author.d.ts +6 -0
- package/dist/src/runtime/steps/worker-decision/result-author.js +177 -0
- package/dist/src/runtime/steps/worker-decision/run.d.ts +20 -0
- package/dist/src/runtime/steps/worker-decision/run.js +433 -0
- package/dist/src/runtime/steps/worker-decision/runtime-path-refinement.d.ts +5 -0
- package/dist/src/runtime/steps/worker-decision/runtime-path-refinement.js +30 -0
- package/dist/src/runtime/streaming/request-callbacks.d.ts +25 -0
- package/dist/src/runtime/streaming/request-callbacks.js +52 -0
- package/dist/src/sessions/artifact-paths.d.ts +9 -0
- package/dist/src/sessions/artifact-paths.js +51 -0
- package/dist/src/sessions/context-window.d.ts +20 -0
- package/dist/src/sessions/context-window.js +214 -0
- package/dist/src/sessions/index.d.ts +49 -0
- package/dist/src/sessions/index.js +64 -0
- package/dist/src/sessions/memory/contracts.d.ts +29 -0
- package/dist/src/sessions/memory/contracts.js +2 -0
- package/dist/src/sessions/memory/rules.d.ts +5 -0
- package/dist/src/sessions/memory/rules.js +77 -0
- package/dist/src/sessions/memory/source.d.ts +14 -0
- package/dist/src/sessions/memory/source.js +116 -0
- package/dist/src/sessions/record/projection.d.ts +25 -0
- package/dist/src/sessions/record/projection.js +212 -0
- package/dist/src/sessions/record/rules.d.ts +6 -0
- package/dist/src/sessions/record/rules.js +45 -0
- package/dist/src/sessions/session-service.d.ts +61 -0
- package/dist/src/sessions/session-service.js +435 -0
- package/dist/src/sessions/session-store.d.ts +6 -0
- package/dist/src/sessions/session-store.js +61 -0
- package/dist/src/sessions/types.d.ts +169 -0
- package/dist/src/sessions/types.js +1 -0
- package/dist/src/shared/agent.d.ts +4 -0
- package/dist/src/shared/agent.js +18 -0
- package/dist/src/shared/attachments.d.ts +64 -0
- package/dist/src/shared/attachments.js +26 -0
- package/dist/src/shared/constants.d.ts +4 -0
- package/dist/src/shared/constants.js +4 -0
- package/dist/src/shared/invocation-profile-selection.d.ts +42 -0
- package/dist/src/shared/invocation-profile-selection.js +125 -0
- package/dist/src/shared/load-dotenv.d.ts +1 -0
- package/dist/src/shared/load-dotenv.js +40 -0
- package/dist/src/shared/model-role-policy.d.ts +3 -0
- package/dist/src/shared/model-role-policy.js +12 -0
- package/dist/src/shared/model-step-registry-data.json +125 -0
- package/dist/src/shared/model-step-registry.d.ts +133 -0
- package/dist/src/shared/model-step-registry.generated.d.ts +123 -0
- package/dist/src/shared/model-step-registry.generated.js +123 -0
- package/dist/src/shared/model-step-registry.js +36 -0
- package/dist/src/shared/model-step-registry.types.d.ts +19 -0
- package/dist/src/shared/model-step-registry.types.js +1 -0
- package/dist/src/shared/model-steps.d.ts +5 -0
- package/dist/src/shared/model-steps.js +12 -0
- package/dist/src/shared/types.d.ts +17 -0
- package/dist/src/shared/types.js +1 -0
- package/dist/src/web-ui/app/ARCHITECTURE.md +52 -0
- package/dist/src/web-ui/app/app.js +749 -0
- package/dist/src/web-ui/app/components/composer-actions.d.ts +26 -0
- package/dist/src/web-ui/app/components/composer-actions.js +118 -0
- package/dist/src/web-ui/app/components/config-workspace.js +875 -0
- package/dist/src/web-ui/app/components/conversation-activity.d.ts +72 -0
- package/dist/src/web-ui/app/components/conversation-activity.js +523 -0
- package/dist/src/web-ui/app/components/conversation-view.js +278 -0
- package/dist/src/web-ui/app/components/menu-navigation.js +39 -0
- package/dist/src/web-ui/app/components/message-attachments.d.ts +27 -0
- package/dist/src/web-ui/app/components/message-attachments.js +114 -0
- package/dist/src/web-ui/app/components/message-timestamp.d.ts +22 -0
- package/dist/src/web-ui/app/components/message-timestamp.js +44 -0
- package/dist/src/web-ui/app/components/model-selector.d.ts +15 -0
- package/dist/src/web-ui/app/components/model-selector.js +142 -0
- package/dist/src/web-ui/app/components/runtime-setup-guide.js +519 -0
- package/dist/src/web-ui/app/components/session-actions-menu.d.ts +17 -0
- package/dist/src/web-ui/app/components/session-actions-menu.js +121 -0
- package/dist/src/web-ui/app/components/tool-approval-card.js +58 -0
- package/dist/src/web-ui/app/components/workspace-shell.js +236 -0
- package/dist/src/web-ui/app/controllers/app-event-bindings.js +280 -0
- package/dist/src/web-ui/app/controllers/chat-request-controller.js +79 -0
- package/dist/src/web-ui/app/controllers/composer-attachments-controller.js +227 -0
- package/dist/src/web-ui/app/controllers/composer-queue-controller.js +273 -0
- package/dist/src/web-ui/app/controllers/composer-submit-controller.js +108 -0
- package/dist/src/web-ui/app/controllers/conversation-session-controller.js +556 -0
- package/dist/src/web-ui/app/controllers/operations-controller.js +137 -0
- package/dist/src/web-ui/app/controllers/realtime-event-controller.js +444 -0
- package/dist/src/web-ui/app/controllers/runtime-onboarding-controller.js +134 -0
- package/dist/src/web-ui/app/controllers/runtime-selection-controller.js +419 -0
- package/dist/src/web-ui/app/controllers/session-controller.js +312 -0
- package/dist/src/web-ui/app/controllers/steer-controller.d.ts +21 -0
- package/dist/src/web-ui/app/controllers/steer-controller.js +97 -0
- package/dist/src/web-ui/app/controllers/tool-approval-controller.js +64 -0
- package/dist/src/web-ui/app/index.html +513 -0
- package/dist/src/web-ui/app/lib/attachment-policy.d.ts +15 -0
- package/dist/src/web-ui/app/lib/attachment-policy.js +49 -0
- package/dist/src/web-ui/app/lib/event-presentation.d.ts +23 -0
- package/dist/src/web-ui/app/lib/event-presentation.js +248 -0
- package/dist/src/web-ui/app/lib/realtime-message.js +25 -0
- package/dist/src/web-ui/app/lib/session-composer-queue.d.ts +76 -0
- package/dist/src/web-ui/app/lib/session-composer-queue.js +318 -0
- package/dist/src/web-ui/app/lib/text-format.d.ts +13 -0
- package/dist/src/web-ui/app/lib/text-format.js +197 -0
- package/dist/src/web-ui/app/services/client-preferences.js +117 -0
- package/dist/src/web-ui/app/services/realtime-transport.d.ts +17 -0
- package/dist/src/web-ui/app/services/realtime-transport.js +65 -0
- package/dist/src/web-ui/app/services/runtime-web-client.d.ts +96 -0
- package/dist/src/web-ui/app/services/runtime-web-client.js +270 -0
- package/dist/src/web-ui/app/styles/00-tokens-base.css +151 -0
- package/dist/src/web-ui/app/styles/10-shell-sessions.css +867 -0
- package/dist/src/web-ui/app/styles/20-chat-composer.css +1936 -0
- package/dist/src/web-ui/app/styles/30-inspector-config.css +2108 -0
- package/dist/src/web-ui/app/styles/90-responsive.css +451 -0
- package/dist/src/web-ui/app/styles/foundation.css +173 -0
- package/dist/src/web-ui/app/styles.css +6 -0
- package/dist/src/web-ui/app/ui-behavior.d.ts +55 -0
- package/dist/src/web-ui/app/ui-behavior.js +82 -0
- package/dist/src/web-ui/config-dashboard-backend.d.ts +41 -0
- package/dist/src/web-ui/config-dashboard-backend.js +276 -0
- package/dist/src/web-ui/external-bridge-backend.d.ts +20 -0
- package/dist/src/web-ui/external-bridge-backend.js +292 -0
- package/dist/src/web-ui/local-runtime/api-router.d.ts +13 -0
- package/dist/src/web-ui/local-runtime/api-router.js +253 -0
- package/dist/src/web-ui/local-runtime/attachment-routes.d.ts +10 -0
- package/dist/src/web-ui/local-runtime/attachment-routes.js +122 -0
- package/dist/src/web-ui/local-runtime/contracts.d.ts +33 -0
- package/dist/src/web-ui/local-runtime/contracts.js +1 -0
- package/dist/src/web-ui/local-runtime/control-routes.d.ts +11 -0
- package/dist/src/web-ui/local-runtime/control-routes.js +52 -0
- package/dist/src/web-ui/local-runtime/environment-registry.d.ts +12 -0
- package/dist/src/web-ui/local-runtime/environment-registry.js +58 -0
- package/dist/src/web-ui/local-runtime/http.d.ts +14 -0
- package/dist/src/web-ui/local-runtime/http.js +78 -0
- package/dist/src/web-ui/local-runtime/realtime-controller.d.ts +15 -0
- package/dist/src/web-ui/local-runtime/realtime-controller.js +69 -0
- package/dist/src/web-ui/local-runtime/realtime-hub.d.ts +8 -0
- package/dist/src/web-ui/local-runtime/realtime-hub.js +18 -0
- package/dist/src/web-ui/local-runtime/request-execution.d.ts +18 -0
- package/dist/src/web-ui/local-runtime/request-execution.js +199 -0
- package/dist/src/web-ui/local-runtime/runtime-availability.d.ts +3 -0
- package/dist/src/web-ui/local-runtime/runtime-availability.js +45 -0
- package/dist/src/web-ui/local-runtime-backend.d.ts +14 -0
- package/dist/src/web-ui/local-runtime-backend.js +60 -0
- package/dist/src/web-ui/runtime-service-auto-open.d.ts +58 -0
- package/dist/src/web-ui/runtime-service-auto-open.js +167 -0
- package/dist/src/web-ui/server.d.ts +36 -0
- package/dist/src/web-ui/server.js +326 -0
- package/dist/src/web-ui/web-ui-address.d.ts +7 -0
- package/dist/src/web-ui/web-ui-address.js +33 -0
- package/dist/src/workspace/files.d.ts +4 -0
- package/dist/src/workspace/files.js +49 -0
- package/dist/src/workspace/types.d.ts +10 -0
- package/dist/src/workspace/types.js +1 -0
- package/docs/architecture.md +134 -0
- package/docs/bridge-compatibility.md +128 -0
- package/docs/configuration.md +462 -0
- package/docs/installation.md +207 -0
- package/docs/known-limitations.md +89 -0
- package/docs/plugins.md +324 -0
- package/docs/publishing.md +140 -0
- package/docs/running-locally.md +184 -0
- package/docs/runtime-invariant-coverage.md +39 -0
- package/docs/runtime-library.md +289 -0
- package/docs/runtime-prompt-policy-contracts.md +70 -0
- package/docs/runtime-public-contracts.md +304 -0
- package/docs/tool-execution-result-evidence-contract.md +151 -0
- package/docs/troubleshooting.md +115 -0
- package/examples/env.example +9 -0
- package/examples/minimal-runtime-composition.ts +24 -0
- package/examples/models/default.config.json +28 -0
- package/examples/request-runner.config.example.json +42 -0
- package/examples/runtime-library-host.ts +24 -0
- package/examples/runtime.config.example.json +63 -0
- package/package.json +169 -0
- package/plugins/capability-brief/plugin.json +33 -0
- package/plugins/capability-brief/source/index.ts +84 -0
- package/plugins/capability-brief/src/index.cjs +194 -0
- package/plugins/code-outline/plugin.json +56 -0
- package/plugins/code-outline/skills/code_outline_skill/SKILL.md +9 -0
- package/plugins/code-outline/source/index.ts +125 -0
- package/plugins/code-outline/source/parser.ts +234 -0
- package/plugins/code-outline/src/index.cjs +572 -0
- package/plugins/document-reader/plugin.json +67 -0
- package/plugins/document-reader/skills/document_reader_skill/SKILL.md +26 -0
- package/plugins/document-reader/source/archive.ts +245 -0
- package/plugins/document-reader/source/constants.ts +41 -0
- package/plugins/document-reader/source/errors.ts +75 -0
- package/plugins/document-reader/source/extract.ts +53 -0
- package/plugins/document-reader/source/handler.ts +288 -0
- package/plugins/document-reader/source/index.ts +11 -0
- package/plugins/document-reader/source/ooxml.ts +182 -0
- package/plugins/document-reader/source/pdf-worker.ts +425 -0
- package/plugins/document-reader/source/pdf.ts +13 -0
- package/plugins/document-reader/source/reader.ts +55 -0
- package/plugins/document-reader/source/source-resolution.ts +137 -0
- package/plugins/document-reader/source/text-accumulator.ts +53 -0
- package/plugins/document-reader/source/types.ts +73 -0
- package/plugins/document-reader/src/index.cjs +1455 -0
- package/plugins/exec/plugin.json +113 -0
- package/plugins/exec/skills/exec_process_skill/SKILL.md +7 -0
- package/plugins/exec/skills/exec_skill/SKILL.md +12 -0
- package/plugins/exec/source/errors.ts +33 -0
- package/plugins/exec/source/filesystem-observer.ts +362 -0
- package/plugins/exec/source/handlers.ts +402 -0
- package/plugins/exec/source/index.ts +12 -0
- package/plugins/exec/source/paths.ts +97 -0
- package/plugins/exec/source/process-manager.ts +430 -0
- package/plugins/exec/source/settings.ts +46 -0
- package/plugins/exec/source/types.ts +77 -0
- package/plugins/exec/source/validation.ts +214 -0
- package/plugins/exec/src/index.cjs +1362 -0
- package/plugins/filesystem/plugin.json +259 -0
- package/plugins/filesystem/skills/edit_file_skill/SKILL.md +8 -0
- package/plugins/filesystem/skills/follow_up_existing_file_edit_skill/SKILL.md +9 -0
- package/plugins/filesystem/skills/read_file_skill/SKILL.md +6 -0
- package/plugins/filesystem/source/adapters.ts +44 -0
- package/plugins/filesystem/source/atomic-write.ts +115 -0
- package/plugins/filesystem/source/bounded-io.ts +514 -0
- package/plugins/filesystem/source/dev-view.ts +262 -0
- package/plugins/filesystem/source/draft/grounding.ts +171 -0
- package/plugins/filesystem/source/draft/prepare.ts +176 -0
- package/plugins/filesystem/source/draft/repair.ts +218 -0
- package/plugins/filesystem/source/draft/types.ts +36 -0
- package/plugins/filesystem/source/draft/validators.ts +237 -0
- package/plugins/filesystem/source/edit-file.ts +298 -0
- package/plugins/filesystem/source/errors.ts +61 -0
- package/plugins/filesystem/source/index.ts +59 -0
- package/plugins/filesystem/source/mutation-coordinator.ts +37 -0
- package/plugins/filesystem/source/mutation-parent.ts +164 -0
- package/plugins/filesystem/source/path-service.ts +73 -0
- package/plugins/filesystem/source/read-file.ts +63 -0
- package/plugins/filesystem/source/view-window.ts +95 -0
- package/plugins/filesystem/source/write-file.ts +146 -0
- package/plugins/filesystem/src/index.cjs +2187 -0
- package/plugins/json-inspector/plugin.json +52 -0
- package/plugins/json-inspector/skills/json_inspector_skill/SKILL.md +9 -0
- package/plugins/json-inspector/source/index.ts +145 -0
- package/plugins/json-inspector/source/shape.ts +144 -0
- package/plugins/json-inspector/src/index.cjs +536 -0
- package/plugins/local-search/plugin.json +65 -0
- package/plugins/local-search/skills/local_search_skill/SKILL.md +20 -0
- package/plugins/local-search/source/errors.ts +21 -0
- package/plugins/local-search/source/index.ts +195 -0
- package/plugins/local-search/source/output.ts +101 -0
- package/plugins/local-search/source/paths.ts +194 -0
- package/plugins/local-search/source/ripgrep.ts +353 -0
- package/plugins/local-search/src/index.cjs +840 -0
- package/plugins/memory/plugin.json +149 -0
- package/plugins/memory/skills/memory_lookup_skill/SKILL.md +12 -0
- package/plugins/memory/skills/memory_mutation_skill/SKILL.md +9 -0
- package/plugins/memory/source/format.ts +51 -0
- package/plugins/memory/source/index.ts +199 -0
- package/plugins/memory/source/search.ts +47 -0
- package/plugins/memory/source/store-lock.ts +482 -0
- package/plugins/memory/source/store.ts +331 -0
- package/plugins/memory/source/types.ts +31 -0
- package/plugins/memory/src/index.cjs +1082 -0
- package/plugins/project-orientation/plugin.json +63 -0
- package/plugins/project-orientation/skills/project_orientation_skill/SKILL.md +11 -0
- package/plugins/project-orientation/source/index.ts +118 -0
- package/plugins/project-orientation/source/manifest-summary.ts +153 -0
- package/plugins/project-orientation/source/tree.ts +126 -0
- package/plugins/project-orientation/src/index.cjs +584 -0
- package/plugins/system-probe/plugin.json +60 -0
- package/plugins/system-probe/source/index.ts +125 -0
- package/plugins/system-probe/source/metrics.ts +39 -0
- package/plugins/system-probe/src/index.cjs +309 -0
- package/plugins/web/plugin.json +146 -0
- package/plugins/web/skills/web_fetch_skill/SKILL.md +9 -0
- package/plugins/web/skills/web_search_skill/SKILL.md +16 -0
- package/plugins/web/source/aggregate-gate.ts +141 -0
- package/plugins/web/source/brave-client.ts +251 -0
- package/plugins/web/source/concurrency.ts +23 -0
- package/plugins/web/source/content.ts +291 -0
- package/plugins/web/source/deadline.ts +61 -0
- package/plugins/web/source/errors.ts +31 -0
- package/plugins/web/source/fetch-service.ts +81 -0
- package/plugins/web/source/index.ts +5 -0
- package/plugins/web/source/limits.ts +29 -0
- package/plugins/web/source/network-policy.ts +242 -0
- package/plugins/web/source/output-budget.ts +42 -0
- package/plugins/web/source/parameters.ts +145 -0
- package/plugins/web/source/plugin.ts +149 -0
- package/plugins/web/source/public-http.ts +142 -0
- package/plugins/web/source/request-hop.ts +196 -0
- package/plugins/web/source/research.ts +109 -0
- package/plugins/web/source/search-presentation.ts +111 -0
- package/plugins/web/source/search-service.ts +139 -0
- package/plugins/web/source/search-types.ts +47 -0
- package/plugins/web/source/untrusted-text.ts +8 -0
- package/plugins/web/src/index.cjs +1906 -0
- package/runtime.config.schema.json +791 -0
- package/src/runtime/README.md +411 -0
|
@@ -0,0 +1,1936 @@
|
|
|
1
|
+
/* Conversation canvas, message presentation, and composer. */
|
|
2
|
+
|
|
3
|
+
.chat-header {
|
|
4
|
+
position: relative;
|
|
5
|
+
z-index: 12;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: space-between;
|
|
9
|
+
gap: 18px;
|
|
10
|
+
min-height: 58px;
|
|
11
|
+
padding: 9px clamp(18px, 3vw, 34px);
|
|
12
|
+
border-bottom: 1px solid rgba(120, 157, 194, 0.12);
|
|
13
|
+
background: rgba(8, 20, 33, 0.92);
|
|
14
|
+
backdrop-filter: blur(16px);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.chat-heading-group {
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
gap: 9px;
|
|
21
|
+
min-width: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.chat-heading-copy {
|
|
25
|
+
display: flex;
|
|
26
|
+
align-items: center;
|
|
27
|
+
gap: 10px;
|
|
28
|
+
min-width: 0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.eyebrow,
|
|
32
|
+
.control-label {
|
|
33
|
+
display: none;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.chat-header h2 {
|
|
37
|
+
max-width: min(36vw, 520px);
|
|
38
|
+
margin: 0;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
color: var(--text-strong);
|
|
41
|
+
text-overflow: ellipsis;
|
|
42
|
+
white-space: nowrap;
|
|
43
|
+
font-size: 16px;
|
|
44
|
+
font-weight: 400;
|
|
45
|
+
letter-spacing: -0.012em;
|
|
46
|
+
}
|
|
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
|
+
.messages-list {
|
|
270
|
+
grid-row: 2;
|
|
271
|
+
display: flex;
|
|
272
|
+
flex-direction: column;
|
|
273
|
+
gap: 28px;
|
|
274
|
+
justify-self: center;
|
|
275
|
+
width: min(100%, 900px);
|
|
276
|
+
min-height: 0;
|
|
277
|
+
padding: 38px clamp(24px, 4vw, 42px) 30px;
|
|
278
|
+
overflow: auto;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.runtime-setup-guide {
|
|
282
|
+
grid-row: 2;
|
|
283
|
+
display: grid;
|
|
284
|
+
align-self: stretch;
|
|
285
|
+
align-content: safe center;
|
|
286
|
+
justify-self: stretch;
|
|
287
|
+
justify-items: center;
|
|
288
|
+
width: 100%;
|
|
289
|
+
min-width: 0;
|
|
290
|
+
min-height: 0;
|
|
291
|
+
padding: 38px clamp(24px, 4vw, 42px) 30px;
|
|
292
|
+
overflow-x: hidden;
|
|
293
|
+
overflow-y: auto;
|
|
294
|
+
overscroll-behavior: contain;
|
|
295
|
+
scrollbar-gutter: stable;
|
|
296
|
+
-webkit-overflow-scrolling: touch;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.runtime-setup-guide:focus-visible {
|
|
300
|
+
outline: 2px solid rgba(87, 148, 255, 0.48);
|
|
301
|
+
outline-offset: -3px;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.runtime-setup-card,
|
|
305
|
+
.runtime-setup-card * {
|
|
306
|
+
font-weight: 400;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.runtime-setup-card {
|
|
310
|
+
display: grid;
|
|
311
|
+
gap: 24px;
|
|
312
|
+
width: min(100%, 820px);
|
|
313
|
+
min-width: 0;
|
|
314
|
+
padding: clamp(24px, 4vw, 38px);
|
|
315
|
+
border: 1px solid var(--line);
|
|
316
|
+
border-radius: 18px;
|
|
317
|
+
background: color-mix(in srgb, var(--panel) 82%, transparent);
|
|
318
|
+
box-shadow: 0 24px 70px rgba(0, 6, 16, 0.22);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.runtime-setup-copy h3 {
|
|
322
|
+
margin: 0;
|
|
323
|
+
color: var(--text-strong);
|
|
324
|
+
font-size: clamp(22px, 2.2vw, 28px);
|
|
325
|
+
letter-spacing: -0.026em;
|
|
326
|
+
line-height: 1.25;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.runtime-setup-copy p {
|
|
330
|
+
max-width: 620px;
|
|
331
|
+
margin: 10px 0 0;
|
|
332
|
+
color: var(--muted);
|
|
333
|
+
font-size: 14px;
|
|
334
|
+
line-height: 1.65;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.runtime-setup-status {
|
|
338
|
+
display: grid;
|
|
339
|
+
gap: 4px;
|
|
340
|
+
margin: 0;
|
|
341
|
+
padding: 12px 14px;
|
|
342
|
+
border: 1px solid var(--line);
|
|
343
|
+
border-radius: 10px;
|
|
344
|
+
background: color-mix(in srgb, var(--panel-raised) 72%, transparent);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.runtime-setup-status strong {
|
|
348
|
+
color: var(--text);
|
|
349
|
+
font-size: 13px;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.runtime-setup-status span {
|
|
353
|
+
color: var(--muted);
|
|
354
|
+
font-size: 12px;
|
|
355
|
+
line-height: 1.5;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.runtime-setup-status.error {
|
|
359
|
+
border-color: color-mix(in srgb, var(--danger) 50%, var(--line));
|
|
360
|
+
background: color-mix(in srgb, var(--danger) 8%, var(--panel-raised));
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.runtime-provider-fieldset {
|
|
364
|
+
min-width: 0;
|
|
365
|
+
margin: 0;
|
|
366
|
+
padding: 0;
|
|
367
|
+
border: 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.runtime-provider-fieldset legend,
|
|
371
|
+
.runtime-model-field > label,
|
|
372
|
+
.runtime-setup-section h4 {
|
|
373
|
+
display: flex;
|
|
374
|
+
align-items: center;
|
|
375
|
+
gap: 9px;
|
|
376
|
+
margin: 0;
|
|
377
|
+
color: var(--text);
|
|
378
|
+
font-size: 13px;
|
|
379
|
+
line-height: 1.4;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.runtime-provider-fieldset legend > span,
|
|
383
|
+
.runtime-model-field > label > span,
|
|
384
|
+
.runtime-setup-section h4 > span {
|
|
385
|
+
display: inline-grid;
|
|
386
|
+
flex: 0 0 auto;
|
|
387
|
+
place-items: center;
|
|
388
|
+
width: 23px;
|
|
389
|
+
height: 23px;
|
|
390
|
+
border: 1px solid var(--line-strong);
|
|
391
|
+
border-radius: 50%;
|
|
392
|
+
color: var(--accent-strong);
|
|
393
|
+
font-size: 11px;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.runtime-provider-options {
|
|
397
|
+
display: grid;
|
|
398
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
399
|
+
gap: 10px;
|
|
400
|
+
margin-top: 10px;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.runtime-provider-option {
|
|
404
|
+
display: flex;
|
|
405
|
+
gap: 10px;
|
|
406
|
+
min-width: 0;
|
|
407
|
+
padding: 13px 14px;
|
|
408
|
+
border: 1px solid var(--line);
|
|
409
|
+
border-radius: 11px;
|
|
410
|
+
background: color-mix(in srgb, var(--panel-raised) 70%, transparent);
|
|
411
|
+
cursor: pointer;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.runtime-provider-option:has(input:checked) {
|
|
415
|
+
border-color: var(--accent);
|
|
416
|
+
background: var(--accent-soft);
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.runtime-provider-option input {
|
|
420
|
+
flex: 0 0 auto;
|
|
421
|
+
margin: 3px 0 0;
|
|
422
|
+
accent-color: var(--accent);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.runtime-provider-option strong,
|
|
426
|
+
.runtime-provider-option small {
|
|
427
|
+
display: block;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.runtime-provider-option strong {
|
|
431
|
+
color: var(--text);
|
|
432
|
+
font-size: 13px;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.runtime-provider-option small {
|
|
436
|
+
margin-top: 3px;
|
|
437
|
+
color: var(--muted-2);
|
|
438
|
+
font-size: 11.5px;
|
|
439
|
+
line-height: 1.4;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.runtime-model-field {
|
|
443
|
+
display: grid;
|
|
444
|
+
gap: 8px;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.runtime-model-field input {
|
|
448
|
+
width: 100%;
|
|
449
|
+
min-height: 42px;
|
|
450
|
+
padding: 0 12px;
|
|
451
|
+
border: 1px solid var(--line);
|
|
452
|
+
border-radius: 9px;
|
|
453
|
+
outline: none;
|
|
454
|
+
background: var(--control-bg);
|
|
455
|
+
color: var(--text);
|
|
456
|
+
font-family: var(--mono);
|
|
457
|
+
font-size: 13px;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.runtime-model-field input:focus {
|
|
461
|
+
border-color: var(--accent);
|
|
462
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.runtime-model-field > small {
|
|
466
|
+
color: var(--muted-2);
|
|
467
|
+
font-size: 11.5px;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.runtime-model-field > small.error {
|
|
471
|
+
color: var(--danger);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.runtime-setup-section {
|
|
475
|
+
display: grid;
|
|
476
|
+
gap: 10px;
|
|
477
|
+
padding-top: 22px;
|
|
478
|
+
border-top: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.runtime-setup-section > p,
|
|
482
|
+
.runtime-secret-note p,
|
|
483
|
+
.runtime-setup-footer p {
|
|
484
|
+
margin: 0;
|
|
485
|
+
color: var(--muted);
|
|
486
|
+
font-size: 12px;
|
|
487
|
+
line-height: 1.6;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.runtime-setup-section code,
|
|
491
|
+
.runtime-setup-footer code,
|
|
492
|
+
.runtime-secret-note code {
|
|
493
|
+
color: var(--text);
|
|
494
|
+
font-family: var(--mono);
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.runtime-terminal {
|
|
498
|
+
min-width: 0;
|
|
499
|
+
overflow: hidden;
|
|
500
|
+
border: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
|
|
501
|
+
border-radius: 10px;
|
|
502
|
+
background: #091724;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.runtime-terminal-heading {
|
|
506
|
+
display: flex;
|
|
507
|
+
align-items: center;
|
|
508
|
+
justify-content: space-between;
|
|
509
|
+
gap: 10px;
|
|
510
|
+
min-height: 34px;
|
|
511
|
+
padding: 5px 7px 5px 11px;
|
|
512
|
+
border-bottom: 1px solid rgba(122, 158, 191, 0.14);
|
|
513
|
+
color: #93a9bd;
|
|
514
|
+
font-size: 10.5px;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.runtime-terminal-heading button {
|
|
518
|
+
min-height: 25px;
|
|
519
|
+
padding: 0 9px;
|
|
520
|
+
border: 1px solid rgba(126, 163, 198, 0.22);
|
|
521
|
+
border-radius: 6px;
|
|
522
|
+
background: rgba(112, 153, 190, 0.1);
|
|
523
|
+
color: #c8d8e7;
|
|
524
|
+
font-size: 10.5px;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.runtime-terminal-heading button:hover:not(:disabled),
|
|
528
|
+
.runtime-terminal-heading button:focus-visible:not(:disabled) {
|
|
529
|
+
border-color: rgba(126, 177, 224, 0.55);
|
|
530
|
+
background: rgba(112, 163, 211, 0.18);
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.runtime-terminal-heading button:disabled {
|
|
534
|
+
cursor: not-allowed;
|
|
535
|
+
opacity: 0.45;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.runtime-terminal pre {
|
|
539
|
+
margin: 0;
|
|
540
|
+
padding: 12px;
|
|
541
|
+
overflow: auto;
|
|
542
|
+
color: #d4e3f0;
|
|
543
|
+
font-family: var(--mono);
|
|
544
|
+
font-size: 11.5px;
|
|
545
|
+
line-height: 1.65;
|
|
546
|
+
text-align: left;
|
|
547
|
+
direction: ltr;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.runtime-terminal code {
|
|
551
|
+
color: inherit;
|
|
552
|
+
white-space: pre;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.runtime-copy-status {
|
|
556
|
+
display: block;
|
|
557
|
+
min-height: 17px;
|
|
558
|
+
padding: 0 11px 4px;
|
|
559
|
+
color: #89b7dd;
|
|
560
|
+
font-size: 10.5px;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.runtime-copy-status.error {
|
|
564
|
+
color: #f0a0a0;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.runtime-secret-note {
|
|
568
|
+
padding: 12px 13px;
|
|
569
|
+
border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
|
|
570
|
+
border-radius: 9px;
|
|
571
|
+
background: color-mix(in srgb, var(--accent-soft) 62%, transparent);
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.runtime-secret-note strong {
|
|
575
|
+
display: block;
|
|
576
|
+
margin-bottom: 4px;
|
|
577
|
+
color: var(--text);
|
|
578
|
+
font-size: 12px;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.runtime-provider-note {
|
|
582
|
+
padding-left: 1px;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.runtime-restart-commands {
|
|
586
|
+
display: grid;
|
|
587
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
588
|
+
gap: 10px;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.runtime-setup-section kbd {
|
|
592
|
+
padding: 1px 4px;
|
|
593
|
+
border: 1px solid var(--line);
|
|
594
|
+
border-radius: 4px;
|
|
595
|
+
background: var(--control-bg);
|
|
596
|
+
color: var(--text);
|
|
597
|
+
font-family: var(--mono);
|
|
598
|
+
font-size: 10.5px;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.runtime-setup-footer {
|
|
602
|
+
display: flex;
|
|
603
|
+
align-items: center;
|
|
604
|
+
justify-content: space-between;
|
|
605
|
+
gap: 18px;
|
|
606
|
+
padding-top: 22px;
|
|
607
|
+
border-top: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.runtime-setup-footer p {
|
|
611
|
+
max-width: 540px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.runtime-setup-action {
|
|
615
|
+
flex: 0 0 auto;
|
|
616
|
+
min-height: 38px;
|
|
617
|
+
padding: 0 16px;
|
|
618
|
+
border: 1px solid var(--line-strong);
|
|
619
|
+
border-radius: 10px;
|
|
620
|
+
background: var(--accent-soft);
|
|
621
|
+
color: var(--accent-strong);
|
|
622
|
+
font-size: 13px;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.runtime-setup-action:hover:not(:disabled) {
|
|
626
|
+
border-color: var(--accent);
|
|
627
|
+
background: var(--control-bg-hover);
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.runtime-setup-action:disabled {
|
|
631
|
+
cursor: wait;
|
|
632
|
+
opacity: 0.62;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.chat-empty-state {
|
|
636
|
+
display: flex;
|
|
637
|
+
flex-direction: column;
|
|
638
|
+
align-items: flex-start;
|
|
639
|
+
width: min(620px, 100%);
|
|
640
|
+
margin: auto;
|
|
641
|
+
padding: 24px 18px 72px;
|
|
642
|
+
border: 0;
|
|
643
|
+
background: transparent;
|
|
644
|
+
text-align: left;
|
|
645
|
+
box-shadow: none;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.mode-empty-title {
|
|
649
|
+
max-width: 560px;
|
|
650
|
+
color: var(--text-strong);
|
|
651
|
+
font-size: clamp(24px, 2.4vw, 29px);
|
|
652
|
+
font-weight: 400;
|
|
653
|
+
letter-spacing: -0.028em;
|
|
654
|
+
line-height: 1.28;
|
|
655
|
+
text-wrap: balance;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.mode-empty-copy {
|
|
659
|
+
max-width: 520px;
|
|
660
|
+
margin-top: 10px;
|
|
661
|
+
color: var(--muted);
|
|
662
|
+
font-size: 14px;
|
|
663
|
+
line-height: 1.6;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.message-row {
|
|
667
|
+
display: flex;
|
|
668
|
+
gap: 10px;
|
|
669
|
+
width: 100%;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.message-row.assistant {
|
|
673
|
+
align-items: flex-start;
|
|
674
|
+
justify-content: flex-start;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.message-row.user {
|
|
678
|
+
justify-content: flex-end;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.message-avatar {
|
|
682
|
+
display: none;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.message-bubble {
|
|
686
|
+
max-width: min(760px, 88%);
|
|
687
|
+
color: var(--text);
|
|
688
|
+
white-space: pre-wrap;
|
|
689
|
+
overflow-wrap: anywhere;
|
|
690
|
+
font-size: 14.5px;
|
|
691
|
+
line-height: 1.65;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.message-row.assistant .message-bubble {
|
|
695
|
+
width: min(100%, 780px);
|
|
696
|
+
max-width: 100%;
|
|
697
|
+
padding: 0;
|
|
698
|
+
border: 0;
|
|
699
|
+
border-radius: 0;
|
|
700
|
+
background: transparent;
|
|
701
|
+
box-shadow: none;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.message-row.user .message-bubble {
|
|
705
|
+
max-width: min(650px, 82%);
|
|
706
|
+
padding: 11px 14px;
|
|
707
|
+
border: 1px solid rgba(111, 159, 207, 0.15);
|
|
708
|
+
border-radius: 14px 14px 4px 14px;
|
|
709
|
+
background: #112b43;
|
|
710
|
+
color: #e8f1fb;
|
|
711
|
+
box-shadow: none;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.message-meta {
|
|
715
|
+
display: flex;
|
|
716
|
+
align-items: center;
|
|
717
|
+
gap: 8px;
|
|
718
|
+
margin-bottom: 8px;
|
|
719
|
+
color: var(--muted-2);
|
|
720
|
+
font-size: 12px;
|
|
721
|
+
font-weight: 400;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.message-row.user .message-meta {
|
|
725
|
+
justify-content: flex-end;
|
|
726
|
+
margin-bottom: 6px;
|
|
727
|
+
color: rgba(202, 218, 236, 0.64);
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.message-timestamp {
|
|
731
|
+
display: inline-flex;
|
|
732
|
+
align-items: center;
|
|
733
|
+
color: inherit;
|
|
734
|
+
font: inherit;
|
|
735
|
+
font-variant-numeric: tabular-nums;
|
|
736
|
+
white-space: nowrap;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.message-timestamp::before {
|
|
740
|
+
margin-inline-end: 8px;
|
|
741
|
+
color: currentColor;
|
|
742
|
+
content: "·";
|
|
743
|
+
opacity: 0.6;
|
|
744
|
+
}
|
|
745
|
+
|
|
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
|
+
.rtl-text {
|
|
786
|
+
text-align: right;
|
|
787
|
+
}
|
|
788
|
+
|
|
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
|
+
.thinking-card {
|
|
880
|
+
margin: 2px 0 14px;
|
|
881
|
+
overflow: hidden;
|
|
882
|
+
border: 1px solid rgba(111, 154, 197, 0.12);
|
|
883
|
+
border-radius: 9px;
|
|
884
|
+
background: rgba(77, 111, 145, 0.055);
|
|
885
|
+
color: var(--muted);
|
|
886
|
+
font-size: 12.5px;
|
|
887
|
+
font-style: normal;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.thinking-card summary {
|
|
891
|
+
display: flex;
|
|
892
|
+
align-items: center;
|
|
893
|
+
justify-content: space-between;
|
|
894
|
+
gap: 10px;
|
|
895
|
+
padding: 8px 10px;
|
|
896
|
+
color: var(--muted);
|
|
897
|
+
cursor: pointer;
|
|
898
|
+
list-style: none;
|
|
899
|
+
font-size: 12px;
|
|
900
|
+
font-weight: 500;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.thinking-card summary::-webkit-details-marker {
|
|
904
|
+
display: none;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.thinking-card summary span:last-child {
|
|
908
|
+
color: var(--muted-2);
|
|
909
|
+
font-size: 11px;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.thinking-body {
|
|
913
|
+
padding: 10px;
|
|
914
|
+
border-top: 1px solid rgba(111, 154, 197, 0.1);
|
|
915
|
+
line-height: 1.55;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.conversation-activity {
|
|
919
|
+
margin: 2px 0 14px;
|
|
920
|
+
overflow: hidden;
|
|
921
|
+
border: 1px solid rgba(111, 154, 197, 0.13);
|
|
922
|
+
border-radius: 10px;
|
|
923
|
+
background: rgba(72, 110, 148, 0.045);
|
|
924
|
+
color: var(--muted);
|
|
925
|
+
white-space: normal;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.conversation-activity[open] {
|
|
929
|
+
background: rgba(72, 110, 148, 0.065);
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.conversation-activity-summary {
|
|
933
|
+
display: flex;
|
|
934
|
+
align-items: center;
|
|
935
|
+
justify-content: space-between;
|
|
936
|
+
gap: 16px;
|
|
937
|
+
min-height: 36px;
|
|
938
|
+
padding: 7px 10px;
|
|
939
|
+
color: var(--muted);
|
|
940
|
+
cursor: pointer;
|
|
941
|
+
list-style: none;
|
|
942
|
+
user-select: none;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.conversation-activity-summary::-webkit-details-marker {
|
|
946
|
+
display: none;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.conversation-activity-heading {
|
|
950
|
+
display: inline-flex;
|
|
951
|
+
align-items: center;
|
|
952
|
+
gap: 8px;
|
|
953
|
+
min-width: 0;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.conversation-activity-chevron {
|
|
957
|
+
width: 7px;
|
|
958
|
+
height: 7px;
|
|
959
|
+
border-right: 1.5px solid currentColor;
|
|
960
|
+
border-bottom: 1.5px solid currentColor;
|
|
961
|
+
transform: rotate(-45deg);
|
|
962
|
+
transition: transform 120ms ease;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.conversation-activity[open] .conversation-activity-chevron {
|
|
966
|
+
transform: rotate(45deg) translate(-1px, -1px);
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.conversation-activity-title {
|
|
970
|
+
overflow: hidden;
|
|
971
|
+
color: var(--muted);
|
|
972
|
+
text-overflow: ellipsis;
|
|
973
|
+
white-space: nowrap;
|
|
974
|
+
font-size: 12px;
|
|
975
|
+
font-weight: 400;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
.conversation-activity-current {
|
|
979
|
+
flex: 1;
|
|
980
|
+
min-width: 0;
|
|
981
|
+
overflow: hidden;
|
|
982
|
+
color: var(--muted);
|
|
983
|
+
text-overflow: ellipsis;
|
|
984
|
+
white-space: nowrap;
|
|
985
|
+
font-size: 11px;
|
|
986
|
+
font-weight: 400;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.conversation-activity-facts {
|
|
990
|
+
flex: none;
|
|
991
|
+
color: var(--muted-2);
|
|
992
|
+
font-size: 11px;
|
|
993
|
+
font-variant-numeric: tabular-nums;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.conversation-activity-facts.failed {
|
|
997
|
+
color: #ef9a9a;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.conversation-activity-body {
|
|
1001
|
+
display: grid;
|
|
1002
|
+
gap: 10px;
|
|
1003
|
+
max-height: 330px;
|
|
1004
|
+
padding: 10px;
|
|
1005
|
+
overflow: auto;
|
|
1006
|
+
border-top: 1px solid rgba(111, 154, 197, 0.1);
|
|
1007
|
+
scrollbar-gutter: stable;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
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
|
+
.conversation-activity-progress {
|
|
1077
|
+
display: grid;
|
|
1078
|
+
gap: 7px;
|
|
1079
|
+
padding: 9px 10px;
|
|
1080
|
+
border: 1px solid rgba(111, 154, 197, 0.1);
|
|
1081
|
+
border-radius: 8px;
|
|
1082
|
+
background: rgba(6, 18, 30, 0.22);
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.conversation-activity-progress-header {
|
|
1086
|
+
display: flex;
|
|
1087
|
+
align-items: baseline;
|
|
1088
|
+
justify-content: space-between;
|
|
1089
|
+
gap: 14px;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.conversation-activity-progress-title {
|
|
1093
|
+
min-width: 0;
|
|
1094
|
+
overflow: hidden;
|
|
1095
|
+
color: var(--text);
|
|
1096
|
+
text-overflow: ellipsis;
|
|
1097
|
+
white-space: nowrap;
|
|
1098
|
+
font-size: 12px;
|
|
1099
|
+
font-weight: 400;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.conversation-activity-progress-count {
|
|
1103
|
+
flex: none;
|
|
1104
|
+
color: var(--muted-2);
|
|
1105
|
+
font-family: var(--font-mono);
|
|
1106
|
+
font-size: 10px;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.conversation-activity-progress-track {
|
|
1110
|
+
height: 2px;
|
|
1111
|
+
overflow: hidden;
|
|
1112
|
+
border-radius: 999px;
|
|
1113
|
+
background: rgba(118, 157, 198, 0.12);
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.conversation-activity-progress-track span {
|
|
1117
|
+
display: block;
|
|
1118
|
+
height: 100%;
|
|
1119
|
+
border-radius: inherit;
|
|
1120
|
+
background: #5d8fe1;
|
|
1121
|
+
transition: width 180ms ease;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.conversation-activity-progress-items {
|
|
1125
|
+
display: grid;
|
|
1126
|
+
gap: 5px;
|
|
1127
|
+
margin: 1px 0 0;
|
|
1128
|
+
padding: 0;
|
|
1129
|
+
list-style: none;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.conversation-activity-progress-item {
|
|
1133
|
+
display: grid;
|
|
1134
|
+
grid-template-columns: 8px minmax(0, 1fr);
|
|
1135
|
+
gap: 8px;
|
|
1136
|
+
align-items: center;
|
|
1137
|
+
min-width: 0;
|
|
1138
|
+
color: var(--muted);
|
|
1139
|
+
font-size: 11px;
|
|
1140
|
+
line-height: 1.35;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
.conversation-activity-progress-dot {
|
|
1144
|
+
width: 6px;
|
|
1145
|
+
height: 6px;
|
|
1146
|
+
border: 1px solid rgba(137, 174, 210, 0.4);
|
|
1147
|
+
border-radius: 50%;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
.conversation-activity-progress-item.active .conversation-activity-progress-dot,
|
|
1151
|
+
.conversation-activity-progress-item.in_progress
|
|
1152
|
+
.conversation-activity-progress-dot {
|
|
1153
|
+
border-color: #6c9ff0;
|
|
1154
|
+
background: #6c9ff0;
|
|
1155
|
+
box-shadow: 0 0 0 3px rgba(92, 147, 235, 0.09);
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.conversation-activity-progress-item.done .conversation-activity-progress-dot,
|
|
1159
|
+
.conversation-activity-progress-item.completed
|
|
1160
|
+
.conversation-activity-progress-dot {
|
|
1161
|
+
border-color: #5ab68a;
|
|
1162
|
+
background: #5ab68a;
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
.conversation-activity-progress-item.failed
|
|
1166
|
+
.conversation-activity-progress-dot {
|
|
1167
|
+
border-color: #e27777;
|
|
1168
|
+
background: #e27777;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.conversation-activity-progress-item.failed
|
|
1172
|
+
.conversation-activity-progress-label {
|
|
1173
|
+
color: #f0a0a0;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.conversation-activity-progress-item.muted {
|
|
1177
|
+
opacity: 0.58;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.conversation-activity-timeline {
|
|
1181
|
+
display: grid;
|
|
1182
|
+
gap: 1px;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
.conversation-activity-event {
|
|
1186
|
+
position: relative;
|
|
1187
|
+
display: grid;
|
|
1188
|
+
grid-template-columns: 10px minmax(0, 1fr);
|
|
1189
|
+
gap: 9px;
|
|
1190
|
+
align-items: start;
|
|
1191
|
+
min-width: 0;
|
|
1192
|
+
padding: 6px 4px;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
.conversation-activity-event-marker {
|
|
1196
|
+
width: 6px;
|
|
1197
|
+
height: 6px;
|
|
1198
|
+
margin-top: 5px;
|
|
1199
|
+
border: 1px solid rgba(133, 171, 208, 0.48);
|
|
1200
|
+
border-radius: 50%;
|
|
1201
|
+
background: #0d1d2d;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.conversation-activity-event.done .conversation-activity-event-marker {
|
|
1205
|
+
border-color: #5ab68a;
|
|
1206
|
+
background: #5ab68a;
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
.conversation-activity-event.failed .conversation-activity-event-marker {
|
|
1210
|
+
border-color: #e27777;
|
|
1211
|
+
background: #e27777;
|
|
1212
|
+
box-shadow: 0 0 0 3px rgba(226, 119, 119, 0.08);
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.conversation-activity-event.thinking .conversation-activity-event-marker {
|
|
1216
|
+
border-color: #9d8ee4;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.conversation-activity-event-content {
|
|
1220
|
+
min-width: 0;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.conversation-activity-event-title {
|
|
1224
|
+
display: flex;
|
|
1225
|
+
align-items: baseline;
|
|
1226
|
+
gap: 7px;
|
|
1227
|
+
min-width: 0;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
.conversation-activity-event-name {
|
|
1231
|
+
min-width: 0;
|
|
1232
|
+
overflow: hidden;
|
|
1233
|
+
color: var(--text);
|
|
1234
|
+
text-overflow: ellipsis;
|
|
1235
|
+
white-space: nowrap;
|
|
1236
|
+
font-size: 11.5px;
|
|
1237
|
+
font-weight: 400;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.conversation-activity-event.failed .conversation-activity-event-name {
|
|
1241
|
+
color: #f0a0a0;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.conversation-activity-event-count {
|
|
1245
|
+
flex: none;
|
|
1246
|
+
color: var(--muted-2);
|
|
1247
|
+
font-family: var(--font-mono);
|
|
1248
|
+
font-size: 9px;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.conversation-activity-event-detail {
|
|
1252
|
+
display: block;
|
|
1253
|
+
margin-top: 2px;
|
|
1254
|
+
overflow: hidden;
|
|
1255
|
+
color: var(--muted-2);
|
|
1256
|
+
text-overflow: ellipsis;
|
|
1257
|
+
white-space: nowrap;
|
|
1258
|
+
font-size: 10.5px;
|
|
1259
|
+
line-height: 1.4;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
@media (prefers-reduced-motion: reduce) {
|
|
1263
|
+
.conversation-activity-chevron,
|
|
1264
|
+
.conversation-activity-progress-track span {
|
|
1265
|
+
transition: none;
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
.message-attachments {
|
|
1270
|
+
display: flex;
|
|
1271
|
+
flex-wrap: wrap;
|
|
1272
|
+
align-items: flex-start;
|
|
1273
|
+
gap: 8px;
|
|
1274
|
+
margin: 5px 0 9px;
|
|
1275
|
+
color: var(--muted);
|
|
1276
|
+
font-size: 12px;
|
|
1277
|
+
white-space: normal;
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
.message-attachment {
|
|
1281
|
+
min-width: 0;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
.message-attachment.image {
|
|
1285
|
+
display: grid;
|
|
1286
|
+
width: min(100%, 420px);
|
|
1287
|
+
margin: 0;
|
|
1288
|
+
overflow: hidden;
|
|
1289
|
+
border: 1px solid rgba(111, 159, 207, 0.16);
|
|
1290
|
+
border-radius: 10px;
|
|
1291
|
+
background: rgba(3, 12, 21, 0.28);
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
.message-attachment-image {
|
|
1295
|
+
display: block;
|
|
1296
|
+
width: 100%;
|
|
1297
|
+
max-height: 360px;
|
|
1298
|
+
object-fit: contain;
|
|
1299
|
+
background: rgba(2, 8, 14, 0.32);
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
.message-attachment-name {
|
|
1303
|
+
display: block;
|
|
1304
|
+
min-width: 0;
|
|
1305
|
+
overflow: hidden;
|
|
1306
|
+
text-overflow: ellipsis;
|
|
1307
|
+
white-space: nowrap;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.message-attachment.image .message-attachment-name {
|
|
1311
|
+
padding: 6px 8px;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
.message-attachment.file,
|
|
1315
|
+
.message-attachment.image.load-failed {
|
|
1316
|
+
display: inline-flex;
|
|
1317
|
+
max-width: 100%;
|
|
1318
|
+
padding: 4px 8px;
|
|
1319
|
+
border: 1px solid rgba(111, 159, 207, 0.13);
|
|
1320
|
+
border-radius: 7px;
|
|
1321
|
+
background: rgba(91, 134, 176, 0.07);
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
.message-attachment.image.load-failed .message-attachment-name {
|
|
1325
|
+
padding: 0;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.message-actions {
|
|
1329
|
+
display: flex;
|
|
1330
|
+
gap: 5px;
|
|
1331
|
+
margin-top: 8px;
|
|
1332
|
+
opacity: 0;
|
|
1333
|
+
transition: opacity 120ms ease;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.message-row:hover .message-actions,
|
|
1337
|
+
.message-row:focus-within .message-actions {
|
|
1338
|
+
opacity: 1;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.message-action-button {
|
|
1342
|
+
min-height: 28px;
|
|
1343
|
+
padding: 0 8px;
|
|
1344
|
+
border-color: transparent;
|
|
1345
|
+
background: transparent;
|
|
1346
|
+
color: var(--muted-2);
|
|
1347
|
+
font-size: 11px;
|
|
1348
|
+
font-weight: 500;
|
|
1349
|
+
box-shadow: none;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
.message-action-button:hover {
|
|
1353
|
+
border-color: transparent;
|
|
1354
|
+
background: rgba(91, 134, 176, 0.08);
|
|
1355
|
+
color: var(--text);
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
.approval-message-row {
|
|
1359
|
+
justify-content: flex-start;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
.message-row.assistant .approval-message-bubble {
|
|
1363
|
+
display: grid;
|
|
1364
|
+
gap: 10px;
|
|
1365
|
+
width: min(100%, 580px);
|
|
1366
|
+
max-width: min(100%, 580px);
|
|
1367
|
+
padding: 14px 15px;
|
|
1368
|
+
border: 1px solid var(--line);
|
|
1369
|
+
border-radius: 12px;
|
|
1370
|
+
background: rgba(13, 29, 48, 0.72);
|
|
1371
|
+
box-shadow: none;
|
|
1372
|
+
white-space: normal;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
.approval-message-header {
|
|
1376
|
+
display: grid;
|
|
1377
|
+
gap: 2px;
|
|
1378
|
+
min-width: 0;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.approval-message-label {
|
|
1382
|
+
color: var(--muted-2);
|
|
1383
|
+
font-size: 11px;
|
|
1384
|
+
font-weight: 500;
|
|
1385
|
+
line-height: 1.35;
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
.approval-message-title {
|
|
1389
|
+
color: var(--text-strong);
|
|
1390
|
+
font-size: 14px;
|
|
1391
|
+
font-weight: 600;
|
|
1392
|
+
line-height: 1.4;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
.approval-message-detail {
|
|
1396
|
+
margin: 0;
|
|
1397
|
+
color: var(--muted);
|
|
1398
|
+
font-size: 12.5px;
|
|
1399
|
+
line-height: 1.55;
|
|
1400
|
+
text-align: start;
|
|
1401
|
+
unicode-bidi: plaintext;
|
|
1402
|
+
white-space: pre-wrap;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
.tool-approval-actions {
|
|
1406
|
+
display: grid;
|
|
1407
|
+
grid-template-columns: repeat(2, minmax(96px, 116px));
|
|
1408
|
+
gap: 7px;
|
|
1409
|
+
justify-content: start;
|
|
1410
|
+
padding-top: 2px;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.tool-approval-button {
|
|
1414
|
+
min-height: 34px;
|
|
1415
|
+
padding: 0 13px;
|
|
1416
|
+
border-radius: 8px;
|
|
1417
|
+
font-size: 12px;
|
|
1418
|
+
font-weight: 600;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.tool-approval-button.approve {
|
|
1422
|
+
border-color: rgba(87, 148, 255, 0.34);
|
|
1423
|
+
background: rgba(87, 148, 255, 0.14);
|
|
1424
|
+
color: #b9d2ff;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.tool-approval-button.approve:hover {
|
|
1428
|
+
border-color: rgba(87, 148, 255, 0.48);
|
|
1429
|
+
background: rgba(87, 148, 255, 0.2);
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
.tool-approval-button.reject {
|
|
1433
|
+
border-color: var(--line);
|
|
1434
|
+
background: transparent;
|
|
1435
|
+
color: var(--muted);
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
.tool-approval-button.reject:hover {
|
|
1439
|
+
border-color: var(--line-strong);
|
|
1440
|
+
background: var(--control-bg-hover);
|
|
1441
|
+
color: var(--text);
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.tool-approval-button:disabled {
|
|
1445
|
+
cursor: wait;
|
|
1446
|
+
opacity: 0.55;
|
|
1447
|
+
box-shadow: none;
|
|
1448
|
+
transform: none;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
.composer-dock {
|
|
1452
|
+
position: relative;
|
|
1453
|
+
z-index: 14;
|
|
1454
|
+
display: grid;
|
|
1455
|
+
justify-items: center;
|
|
1456
|
+
padding: 12px 22px 14px;
|
|
1457
|
+
background: linear-gradient(180deg, transparent, #081421 24%, #081421);
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
.composer {
|
|
1461
|
+
display: grid;
|
|
1462
|
+
grid-template-columns: 34px auto minmax(0, 1fr) 36px;
|
|
1463
|
+
grid-template-rows: auto auto auto;
|
|
1464
|
+
gap: 7px;
|
|
1465
|
+
align-items: center;
|
|
1466
|
+
width: min(100%, 860px);
|
|
1467
|
+
margin: 0;
|
|
1468
|
+
padding: 12px;
|
|
1469
|
+
border: 1px solid rgba(112, 157, 201, 0.18);
|
|
1470
|
+
border-radius: 16px;
|
|
1471
|
+
background: #0d1d2d;
|
|
1472
|
+
box-shadow: 0 14px 36px rgba(0, 6, 16, 0.22);
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
.composer:focus-within {
|
|
1476
|
+
border-color: rgba(87, 148, 255, 0.38);
|
|
1477
|
+
background: #0e2032;
|
|
1478
|
+
box-shadow:
|
|
1479
|
+
0 0 0 3px rgba(87, 148, 255, 0.06),
|
|
1480
|
+
0 14px 36px rgba(0, 6, 16, 0.22);
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
.composer > * {
|
|
1484
|
+
min-width: 0;
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
.composer textarea {
|
|
1488
|
+
grid-column: 1 / -1;
|
|
1489
|
+
grid-row: 1;
|
|
1490
|
+
width: 100%;
|
|
1491
|
+
min-height: 42px;
|
|
1492
|
+
max-height: 176px;
|
|
1493
|
+
padding: 2px 3px 9px;
|
|
1494
|
+
resize: none;
|
|
1495
|
+
border: 0;
|
|
1496
|
+
background: transparent;
|
|
1497
|
+
color: var(--text-strong);
|
|
1498
|
+
font-size: 14.5px;
|
|
1499
|
+
line-height: 1.5;
|
|
1500
|
+
box-shadow: none;
|
|
1501
|
+
scrollbar-gutter: stable;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
.composer textarea:hover,
|
|
1505
|
+
.composer textarea:focus {
|
|
1506
|
+
border: 0;
|
|
1507
|
+
background: transparent;
|
|
1508
|
+
outline: 0;
|
|
1509
|
+
box-shadow: none;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.composer textarea::placeholder {
|
|
1513
|
+
color: var(--muted-2);
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
.attachment-input {
|
|
1517
|
+
display: none;
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
.attachment-preview {
|
|
1521
|
+
grid-column: 1 / -1;
|
|
1522
|
+
grid-row: 2;
|
|
1523
|
+
display: flex;
|
|
1524
|
+
flex-wrap: wrap;
|
|
1525
|
+
gap: 6px;
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
.attachment-preview:empty {
|
|
1529
|
+
display: none;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
.attachment-chip {
|
|
1533
|
+
display: inline-flex;
|
|
1534
|
+
align-items: center;
|
|
1535
|
+
gap: 6px;
|
|
1536
|
+
max-width: 100%;
|
|
1537
|
+
padding: 4px 6px;
|
|
1538
|
+
border: 1px solid rgba(111, 154, 197, 0.14);
|
|
1539
|
+
border-radius: 7px;
|
|
1540
|
+
background: rgba(88, 129, 169, 0.07);
|
|
1541
|
+
color: var(--muted);
|
|
1542
|
+
font-size: 12px;
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.attachment-chip button {
|
|
1546
|
+
width: 20px;
|
|
1547
|
+
min-width: 20px;
|
|
1548
|
+
height: 20px;
|
|
1549
|
+
min-height: 20px;
|
|
1550
|
+
padding: 0;
|
|
1551
|
+
border-radius: 5px;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
.attachment-button,
|
|
1555
|
+
.send-button {
|
|
1556
|
+
display: inline-grid;
|
|
1557
|
+
place-items: center;
|
|
1558
|
+
width: 34px;
|
|
1559
|
+
min-width: 34px;
|
|
1560
|
+
height: 34px;
|
|
1561
|
+
min-height: 34px;
|
|
1562
|
+
padding: 0;
|
|
1563
|
+
border-color: transparent;
|
|
1564
|
+
border-radius: 9px;
|
|
1565
|
+
box-shadow: none;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
.attachment-button {
|
|
1569
|
+
grid-column: 1;
|
|
1570
|
+
grid-row: 3;
|
|
1571
|
+
background: transparent;
|
|
1572
|
+
color: var(--muted);
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
.attachment-button:hover {
|
|
1576
|
+
border-color: transparent;
|
|
1577
|
+
background: rgba(95, 139, 182, 0.09);
|
|
1578
|
+
color: var(--text);
|
|
1579
|
+
}
|
|
1580
|
+
|
|
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
|
+
.send-button {
|
|
1649
|
+
grid-column: 4;
|
|
1650
|
+
grid-row: 3;
|
|
1651
|
+
background: #2b6ddd;
|
|
1652
|
+
color: #fff;
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
.send-button:hover {
|
|
1656
|
+
border-color: transparent;
|
|
1657
|
+
background: #3578e8;
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
.send-button:disabled {
|
|
1661
|
+
background: rgba(84, 123, 163, 0.14);
|
|
1662
|
+
color: var(--muted-2);
|
|
1663
|
+
opacity: 0.72;
|
|
1664
|
+
}
|
|
1665
|
+
|
|
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
|
+
.composer-submit-control.split .send-button {
|
|
1686
|
+
width: 32px;
|
|
1687
|
+
min-width: 32px;
|
|
1688
|
+
height: 32px;
|
|
1689
|
+
min-height: 32px;
|
|
1690
|
+
border: 1px solid rgba(112, 157, 201, 0.2);
|
|
1691
|
+
border-right: 0;
|
|
1692
|
+
border-radius: 8px 0 0 8px;
|
|
1693
|
+
background: rgba(57, 108, 169, 0.26);
|
|
1694
|
+
color: #d9e8f7;
|
|
1695
|
+
box-shadow: none;
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.composer-submit-control.split .send-button:hover {
|
|
1699
|
+
border-color: rgba(126, 171, 215, 0.28);
|
|
1700
|
+
border-right: 0;
|
|
1701
|
+
background: rgba(63, 119, 185, 0.34);
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
.composer-submit-control.split .send-button:disabled {
|
|
1705
|
+
background: rgba(84, 123, 163, 0.1);
|
|
1706
|
+
color: var(--muted-2);
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
.send-next-menu-button {
|
|
1710
|
+
display: inline-grid;
|
|
1711
|
+
place-items: center;
|
|
1712
|
+
width: 18px;
|
|
1713
|
+
min-width: 18px;
|
|
1714
|
+
height: 32px;
|
|
1715
|
+
min-height: 32px;
|
|
1716
|
+
padding: 0;
|
|
1717
|
+
border: 1px solid rgba(112, 157, 201, 0.2);
|
|
1718
|
+
border-left-color: rgba(126, 171, 215, 0.18);
|
|
1719
|
+
border-radius: 0 8px 8px 0;
|
|
1720
|
+
background: rgba(57, 108, 169, 0.16);
|
|
1721
|
+
color: #b9cee3;
|
|
1722
|
+
box-shadow: none;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
.send-next-menu-button:hover,
|
|
1726
|
+
.send-next-menu-button.open {
|
|
1727
|
+
border-color: rgba(126, 171, 215, 0.28);
|
|
1728
|
+
border-left-color: rgba(126, 171, 215, 0.18);
|
|
1729
|
+
background: rgba(63, 119, 185, 0.26);
|
|
1730
|
+
color: #d9e8f7;
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
.send-next-menu-button svg {
|
|
1734
|
+
width: 10px;
|
|
1735
|
+
height: 10px;
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
.send-next-menu-button[data-count]::after {
|
|
1739
|
+
position: absolute;
|
|
1740
|
+
top: -5px;
|
|
1741
|
+
right: -5px;
|
|
1742
|
+
display: grid;
|
|
1743
|
+
place-items: center;
|
|
1744
|
+
min-width: 14px;
|
|
1745
|
+
height: 14px;
|
|
1746
|
+
padding: 0 3px;
|
|
1747
|
+
border: 1px solid #132438;
|
|
1748
|
+
border-radius: 999px;
|
|
1749
|
+
background: #6889a8;
|
|
1750
|
+
color: #f1f6fb;
|
|
1751
|
+
content: attr(data-count);
|
|
1752
|
+
font-size: 8px;
|
|
1753
|
+
font-weight: 400;
|
|
1754
|
+
line-height: 1;
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
.send-next-menu {
|
|
1758
|
+
position: absolute;
|
|
1759
|
+
right: 0;
|
|
1760
|
+
bottom: calc(100% + 5px);
|
|
1761
|
+
z-index: 80;
|
|
1762
|
+
width: max-content;
|
|
1763
|
+
min-width: 126px;
|
|
1764
|
+
padding: 3px;
|
|
1765
|
+
border: 1px solid rgba(112, 157, 201, 0.18);
|
|
1766
|
+
border-radius: 8px;
|
|
1767
|
+
background: #102131;
|
|
1768
|
+
box-shadow: 0 8px 18px rgba(0, 6, 16, 0.2);
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
.send-next-menu button {
|
|
1772
|
+
width: 100%;
|
|
1773
|
+
min-height: 30px;
|
|
1774
|
+
padding: 0 8px;
|
|
1775
|
+
border-color: transparent;
|
|
1776
|
+
border-radius: 6px;
|
|
1777
|
+
background: transparent;
|
|
1778
|
+
color: #c4d3e2;
|
|
1779
|
+
text-align: left;
|
|
1780
|
+
font-size: 12px;
|
|
1781
|
+
font-weight: 400;
|
|
1782
|
+
line-height: 1.2;
|
|
1783
|
+
box-shadow: none;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.send-next-menu button:hover,
|
|
1787
|
+
.send-next-menu button:focus-visible {
|
|
1788
|
+
border-color: transparent;
|
|
1789
|
+
background: rgba(91, 138, 183, 0.09);
|
|
1790
|
+
color: #e1ebf5;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.composer-hint {
|
|
1794
|
+
display: none;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.jump-to-latest {
|
|
1798
|
+
position: absolute;
|
|
1799
|
+
bottom: calc(100% + 2px);
|
|
1800
|
+
display: inline-flex;
|
|
1801
|
+
align-items: center;
|
|
1802
|
+
gap: 6px;
|
|
1803
|
+
min-height: 31px;
|
|
1804
|
+
padding: 0 10px;
|
|
1805
|
+
border-color: rgba(111, 157, 204, 0.2);
|
|
1806
|
+
border-radius: 999px;
|
|
1807
|
+
background: #12283d;
|
|
1808
|
+
color: #bfd2e7;
|
|
1809
|
+
font-size: 11.5px;
|
|
1810
|
+
font-weight: 500;
|
|
1811
|
+
box-shadow: 0 10px 28px rgba(0, 6, 16, 0.25);
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.jump-to-latest svg {
|
|
1815
|
+
width: 14px;
|
|
1816
|
+
height: 14px;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
@media (max-width: 940px) {
|
|
1820
|
+
.model-control {
|
|
1821
|
+
width: 155px;
|
|
1822
|
+
}
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
@media (max-width: 760px) {
|
|
1826
|
+
.chat-header {
|
|
1827
|
+
min-height: 52px;
|
|
1828
|
+
padding: 8px 11px;
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
.chat-heading-copy {
|
|
1832
|
+
display: block;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
.chat-header h2 {
|
|
1836
|
+
max-width: calc(100vw - 224px);
|
|
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;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.messages-list {
|
|
1859
|
+
gap: 24px;
|
|
1860
|
+
padding: 28px 16px 22px;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.runtime-setup-guide {
|
|
1864
|
+
padding: 28px 16px 22px;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.runtime-restart-commands {
|
|
1868
|
+
grid-template-columns: 1fr;
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.message-row.user .message-bubble {
|
|
1872
|
+
max-width: 90%;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.composer-dock {
|
|
1876
|
+
padding: 9px 10px 10px;
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
.composer {
|
|
1880
|
+
width: 100%;
|
|
1881
|
+
padding: 10px;
|
|
1882
|
+
border-radius: 14px;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
.message-actions {
|
|
1886
|
+
opacity: 1;
|
|
1887
|
+
}
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
@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
|
+
.chat-empty-state {
|
|
1900
|
+
padding: 18px 8px 54px;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.runtime-setup-guide {
|
|
1904
|
+
padding: 18px 10px;
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.runtime-setup-card {
|
|
1908
|
+
gap: 20px;
|
|
1909
|
+
padding: 20px;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
.runtime-provider-options {
|
|
1913
|
+
grid-template-columns: 1fr;
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.runtime-setup-footer {
|
|
1917
|
+
align-items: stretch;
|
|
1918
|
+
flex-direction: column;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
.runtime-setup-action {
|
|
1922
|
+
width: 100%;
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
.mode-empty-title {
|
|
1926
|
+
font-size: 24px;
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
.message-bubble {
|
|
1930
|
+
font-size: 14px;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
.composer textarea {
|
|
1934
|
+
font-size: 14px;
|
|
1935
|
+
}
|
|
1936
|
+
}
|