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
@@ -119,7 +119,7 @@ function startAdminControlsPolling(
debugLogger.error('Failed to poll admin controls: ', e);
}
},
5 * 60 * 1000,
1 * 60 * 1000,
); // 5 minutes
}
+2 -1
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 {