docs agnet

This commit is contained in:
dal 2025-09-09 09:42:17 -06:00
parent 88b7c6d1c7
commit 27bb616f33
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
2 changed files with 5 additions and 3 deletions

View File

@ -43,10 +43,12 @@ import { getDocsAgentSystemPrompt } from './get-docs-agent-system-prompt';
export const DOCS_AGENT_NAME = 'docsAgent';
const DEFAULT_CACHE_OPTIONS = {
anthropic: { cacheControl: { type: 'ephemeral', ttl: '1h' } },
openai: {
parallelToolCalls: false,
reasoningEffort: 'medium',
reasoningEffort: 'high',
},
gateway: {
only: ['openai'],
},
};

View File

@ -407,5 +407,5 @@ describe('docs-agent-workflow integration', () => {
`Total files processed: ${successfulResults}/${targetYamlFiles.length} YAML files`
);
console.info(`Final shared branch with all changes: ${sharedBranchName}`);
}, 900000); // 15 minute timeout for full workflow
}, 1200000); // 15 minute timeout for full workflow
});