Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion apps/docs/environment-variables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ as per-task auth tokens or workspace paths.
| `R_API_SHUTDOWN_DRAIN_MS` | Optional | Milliseconds the API allows in-flight Fast turns to finish during shutdown before aborting the remainder so they resume on the next process. Defaults to `20000`; set to `0` to abort immediately. Keep it below the hosting platform's SIGTERM-to-SIGKILL grace period. Also the fallback for `R_BULLMQ_SHUTDOWN_DRAIN_MS`. |
| `R_BULLMQ_SHUTDOWN_DRAIN_MS` | Optional | Same window for the bullmq service, which executes the Fast turns the queue resumes. Defaults to `R_API_SHUTDOWN_DRAIN_MS`, then `20000`. |
| `R_FAST_DURABLE_RETRY_DISABLED` | Optional | Set to `true` to keep inference retry waits in the current process instead of parking in-flight Fast turns durably. Durable admission remains enabled. |
| `R_FAST_SCHEDULING_PROGRESSIVE_DISCLOSURE_ENABLED` | Optional pilot | Set to `true` to make Fast discover scheduling tools and guidance only when a turn needs reminders, monitoring, or custom automation management. The pilot is disabled by default; restart the API and bullmq services after changing it. Existing schedules and scheduling behavior are unchanged. |
| `R_CLOUD_ENABLED` | Roomote Cloud only | Deployment-managed switch for Roomote Cloud behavior, including required anonymous analytics and Cloud support integrations. Do not set this for self-hosted deployments. |
| `R_CURATED_INTEGRATIONS_DISABLED` | Optional | Operator policy for the curated **Settings > Integrations** catalog, which is enabled by default. Set to `true` and restart Roomote to prevent those integrations from being configured or used. Existing connections remain stored while disabled and become available again once the value is unset. Communications, source-control, inference, sandbox providers, and environment-defined MCP servers are unaffected. |
| `R_GITHUB_APP_SLUG` | GitHub setup | Primary GitHub App slug used by server-rendered setup, mentions, and GitHub integration flows. |
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,6 @@ export async function getFastAgentNativeToolRuntime(
integrations: FastAgentIntegration[],
options: {
surface?: FastAgentSurface;
schedulingProgressiveDisclosureEnabled?: boolean;
} = {},
): Promise<FastAgentNativeToolRuntime> {
bridgePromise ??= startBridge();
Expand Down Expand Up @@ -1391,11 +1390,7 @@ export async function getFastAgentNativeToolRuntime(
build: {
tools: buildFastAgentToolFilter(
nativeIntegrations.map((integration) => integration.id),
{
surface: options.surface ?? 'web',
schedulingProgressiveDisclosureEnabled:
options.schedulingProgressiveDisclosureEnabled,
},
{ surface: options.surface ?? 'web' },
),
},
},
Expand Down
Loading
Loading