You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
example: "Subtask #1.2 becomes Task #4 (next available ID)",
155
173
},
156
174
];
175
+
176
+
// notes
177
+
exportconstNOTE_MODELS=
178
+
"Note: This list is optimized for faster TMAI testing using free or high-quota models. These models are also fully suitable for real-world projects. Additional models — including popular paid options with highly competitive pricing — are also available, mostly via the OpenRouter provider";
179
+
exportconstNOTE_LANGS=
180
+
"Note: Make sure the LLM used by TMAI supports the language you choose!";
Copy file name to clipboardExpand all lines: src/core/asks.ts
+5-8Lines changed: 5 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ import {
10
10
DEFAULT_SUBTASKS_TO_GENERATE,
11
11
DEFAULT_TAG,
12
12
DEFAULT_TASKS_TO_GENERATE,
13
-
LANG,
13
+
LANGS,
14
14
MAX_DESCRIPTION_LENGTH,
15
15
MAX_PROMPT_LENGTH,
16
16
MAX_SUBTASKS_TO_GENERATE,
@@ -22,6 +22,7 @@ import {
22
22
TASKS_STATUSES,
23
23
TASKS_BCK_DEST_PATH,
24
24
AI_MODELS,
25
+
NOTE_MODELS,
25
26
}from"@/constants";
26
27
27
28
/* utils */
@@ -492,26 +493,22 @@ export async function askLangAsync(): Promise<string> {
492
493
type: "list",
493
494
name: "lang",
494
495
message: "Select the language for TMAI responses:",
495
-
choices: LANG,
496
+
choices: LANGS,
496
497
});
497
498
returnlang;
498
499
}
499
500
500
501
/**
501
502
* @description Prompts the user to select AI models for main, research, and fallback
502
-
* Note: This list is designed for faster TMAI testing using free or generously quota'd models.
503
+
* This list is designed for faster TMAI testing using free or generously quota'd models.
503
504
* For a wider selection, use the standard interactive configuration mode.
504
505
*/
505
506
exportasyncfunctionaskModelsAsync(): Promise<{
506
507
mainModel: string;
507
508
researchModel: string;
508
509
fallbackModel: string;
509
510
}>{
510
-
console.log(
511
-
chalk.blue(
512
-
"Note: This list is optimized for quicker TMAI testing with free or high-quota models. These models are fully suitable for real projects too. For more options, use the standard interactive configuration mode.",
0 commit comments