fix production run

This commit is contained in:
Denis Angell
2026-05-13 19:35:19 +02:00
parent 96244b016a
commit bb265dce80
3 changed files with 27 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ export const PROMPTS_DIR: string = resolve(AGENT_DIR, 'prompts');
export const XRPLD_ROOT: string = process.env['XRPLD_ROOT'] ?? resolve(AGENT_DIR, '..', '..', '..');
/** Model used for documentation generation and review. */
export const MODEL: string = process.env['DOC_AGENT_MODEL'] ?? 'claude-opus-4-7';
export const MODEL: string = process.env['DOC_AGENT_MODEL'] ?? 'claude-sonnet-4-6';
/** Absolute path to the skills directory inside the xrpld repo. */
export const SKILLS_DIR: string = resolve(XRPLD_ROOT, 'docs', 'skills');