We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dc62c3 commit 5056444Copy full SHA for 5056444
1 file changed
src/github/copilotApi.ts
@@ -20,7 +20,7 @@ import { hasEnterpriseUri } from './utils';
20
const LEARN_MORE_URL = 'https://aka.ms/coding-agent-docs';
21
const PREMIUM_REQUESTS_URL = 'https://docs.github.com/en/copilot/concepts/copilot-billing/understanding-and-managing-requests-in-copilot#what-are-premium-requests';
22
// https://github.com/github/sweagentd/blob/59e7d9210ca3ebba029918387e525eea73cb1f4a/internal/problemstatement/problemstatement.go#L36-L53
23
-export const MAX_PROBLEM_STATEMENT_LENGTH = 30_000;
+export const MAX_PROBLEM_STATEMENT_LENGTH = 30_000 - 50; // 50 character buffer
24
export interface RemoteAgentJobPayload {
25
problem_statement: string;
26
event_type: string;
0 commit comments