Enable Model Routing (#11154)

This commit is contained in:
Victor May
2025-10-14 20:47:48 -04:00
committed by GitHub
parent 996c9f5955
commit a2f3339a0e
4 changed files with 5 additions and 5 deletions

View File

@@ -2070,7 +2070,7 @@ describe('loadCliConfig model selection', () => {
argv,
);
expect(config.getModel()).toBe(DEFAULT_GEMINI_MODEL);
expect(config.getModel()).toBe('auto');
});
it('always prefers model from argvs', async () => {
@@ -2506,7 +2506,7 @@ describe('loadCliConfig useRipgrep', () => {
'test-session',
argv,
);
expect(config.getUseModelRouter()).toBe(false);
expect(config.getUseModelRouter()).toBe(true);
});
it('should be true when useModelRouter is set to true in settings', async () => {