This commit is contained in:
Shreya Keshive
2026-01-27 13:37:01 -05:00
parent 7904f973a0
commit 89337d7d79
3 changed files with 4 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ export function useApprovalModeIndicator({
addItem(
{
type: MessageType.WARNING,
text: 'You cannot enter YOLO mode since it is disabled in your settings.',
text: 'You cannot enter YOLO mode since it is disabled by your admin.',
},
Date.now(),
);

View File

@@ -119,7 +119,7 @@ function startAdminControlsPolling(
debugLogger.error('Failed to poll admin controls: ', e);
}
},
5 * 60 * 1000,
1 * 60 * 1000,
); // 5 minutes
}

View File

@@ -59,7 +59,8 @@ export interface HttpOptions {
headers?: Record<string, string>;
}
export const CODE_ASSIST_ENDPOINT = 'https://cloudcode-pa.googleapis.com';
export const CODE_ASSIST_ENDPOINT =
'https://staging-cloudcode-pa.sandbox.googleapis.com';
export const CODE_ASSIST_API_VERSION = 'v1internal';
export class CodeAssistServer implements ContentGenerator {