d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
64 lines
2.7 KiB
TypeScript
64 lines
2.7 KiB
TypeScript
import { env } from '@/lib/core/config/env'
|
|
|
|
export const SIM_AGENT_API_URL_DEFAULT = 'https://www.copilot.sim.ai'
|
|
export const SIM_AGENT_VERSION = '3.0.0'
|
|
|
|
/** Resolved copilot backend URL — reads from env with fallback to default. */
|
|
const rawAgentUrl = env.SIM_AGENT_API_URL || SIM_AGENT_API_URL_DEFAULT
|
|
export const SIM_AGENT_API_URL =
|
|
rawAgentUrl.startsWith('http://') || rawAgentUrl.startsWith('https://')
|
|
? rawAgentUrl
|
|
: SIM_AGENT_API_URL_DEFAULT
|
|
|
|
/** Default timeout for the copilot orchestration stream loop (60 min). */
|
|
export const ORCHESTRATION_TIMEOUT_MS = 3_600_000
|
|
|
|
/**
|
|
* Watchdog cap for a single sim-executed copilot tool. A tool that neither
|
|
* resolves nor rejects within its cap is failed with a timeout error so the
|
|
* checkpoint loop can resume Go with an error result instead of wedging the
|
|
* chat (and its pending-stream lock) behind a hung await forever.
|
|
*/
|
|
export const TOOL_WATCHDOG_DEFAULT_MS = 60_000
|
|
|
|
/**
|
|
* Watchdog cap for tool classes with legitimately long runtimes (workflow
|
|
* executions, media/image generation, sandboxed code, deep research). Those
|
|
* tools carry their own inner budgets (plan execution timeouts, sandbox
|
|
* timeouts), so this cap only backstops a true hang and sits above all of
|
|
* them — matching ORCHESTRATION_TIMEOUT_MS so it never undercuts a legal run.
|
|
*/
|
|
export const TOOL_WATCHDOG_LONG_RUNNING_MS = ORCHESTRATION_TIMEOUT_MS
|
|
|
|
/** Extra slack the resume gate allows past the slowest pending tool's watchdog. */
|
|
export const TOOL_WATCHDOG_RESUME_GRACE_MS = 30_000
|
|
|
|
/** Timeout for the client-side streaming response handler (60 min). */
|
|
export const STREAM_TIMEOUT_MS = 3_600_000
|
|
|
|
/** SessionStorage key for persisting active stream metadata across page reloads. */
|
|
export const STREAM_STORAGE_KEY = 'copilot_active_stream'
|
|
|
|
/** POST — send a chat message through the unified mothership chat surface. */
|
|
export const MOTHERSHIP_CHAT_API_PATH = '/api/mothership/chat'
|
|
|
|
/** POST — confirm or reject a tool call. */
|
|
export const COPILOT_CONFIRM_API_PATH = '/api/copilot/confirm'
|
|
|
|
/** Maximum entries in the in-memory SSE tool-event dedup cache. */
|
|
export const STREAM_BUFFER_MAX_DEDUP_ENTRIES = 1_000
|
|
|
|
/** Approximate max inline tool-result budget before artifact/error handling takes over. */
|
|
export const TOOL_RESULT_MAX_INLINE_TOKENS = 50_000
|
|
|
|
/** Rough chars-per-token estimate used when only serialized text length is available. */
|
|
export const TOOL_RESULT_ESTIMATED_CHARS_PER_TOKEN = 4
|
|
|
|
/** Approximate max inline tool-result size in characters. */
|
|
export const TOOL_RESULT_MAX_INLINE_CHARS =
|
|
TOOL_RESULT_MAX_INLINE_TOKENS * TOOL_RESULT_ESTIMATED_CHARS_PER_TOKEN
|
|
|
|
export const COPILOT_MODES = ['ask', 'build', 'plan'] as const
|
|
|
|
export const COPILOT_REQUEST_MODES = ['ask', 'build', 'plan', 'agent'] as const
|