@taj-special/dravix-code 1.2.9 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/services/ai.js +2 -2
- package/package.json +1 -1
package/dist/services/ai.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const AI_PROXY = 'https://dravix.app/ai-proxy.php';
|
|
2
2
|
const PROMPT_URL = 'https://dravix.app/cli-prompt.php';
|
|
3
|
-
export const FLASH_MODEL = 'deepseek
|
|
4
|
-
export const PRO_MODEL = 'deepseek
|
|
3
|
+
export const FLASH_MODEL = 'deepseek-v4-pro'; // fast, cheap — default for all tasks
|
|
4
|
+
export const PRO_MODEL = 'deepseek-v4-pro'; // high-reasoning — used after errors/retries
|
|
5
5
|
export const CLAUDE_MODEL = 'anthropic/claude-sonnet-4'; // high-quality — for complex tasks
|
|
6
6
|
// Model routing: decide which model to use based on task complexity
|
|
7
7
|
export function selectModel(userMessage, retryCount = 0) {
|