hedgequantx 2.5.10 → 2.5.11
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/package.json +1 -1
- package/src/menus/ai-agent.js +6 -6
package/package.json
CHANGED
package/src/menus/ai-agent.js
CHANGED
|
@@ -121,7 +121,7 @@ const showExistingTokens = async () => {
|
|
|
121
121
|
// Show found tokens
|
|
122
122
|
console.clear();
|
|
123
123
|
displayBanner();
|
|
124
|
-
|
|
124
|
+
drawBoxHeaderContinue('EXISTING SESSIONS FOUND', boxWidth);
|
|
125
125
|
|
|
126
126
|
console.log(makeLine(chalk.green(`FOUND ${tokens.length} EXISTING SESSION(S)`)));
|
|
127
127
|
console.log(makeLine(''));
|
|
@@ -244,7 +244,7 @@ const selectCategory = async () => {
|
|
|
244
244
|
|
|
245
245
|
console.clear();
|
|
246
246
|
displayBanner();
|
|
247
|
-
|
|
247
|
+
drawBoxHeaderContinue('SELECT PROVIDER TYPE', boxWidth);
|
|
248
248
|
|
|
249
249
|
const categories = getCategories();
|
|
250
250
|
|
|
@@ -313,7 +313,7 @@ const selectProvider = async (categoryId) => {
|
|
|
313
313
|
|
|
314
314
|
const categories = getCategories();
|
|
315
315
|
const category = categories.find(c => c.id === categoryId);
|
|
316
|
-
|
|
316
|
+
drawBoxHeaderContinue(category.name, boxWidth);
|
|
317
317
|
|
|
318
318
|
const providers = getProvidersByCategory(categoryId);
|
|
319
319
|
|
|
@@ -399,7 +399,7 @@ const selectProviderOption = async (provider) => {
|
|
|
399
399
|
|
|
400
400
|
console.clear();
|
|
401
401
|
displayBanner();
|
|
402
|
-
|
|
402
|
+
drawBoxHeaderContinue(provider.name, boxWidth);
|
|
403
403
|
|
|
404
404
|
console.log(makeLine(chalk.white('SELECT CONNECTION METHOD:')));
|
|
405
405
|
console.log(makeLine(''));
|
|
@@ -547,7 +547,7 @@ const setupConnection = async (provider, option) => {
|
|
|
547
547
|
// Show instructions for this field
|
|
548
548
|
console.clear();
|
|
549
549
|
displayBanner();
|
|
550
|
-
|
|
550
|
+
drawBoxHeaderContinue(`CONNECT TO ${provider.name}`, boxWidth);
|
|
551
551
|
|
|
552
552
|
const instructions = getCredentialInstructions(provider, option, field);
|
|
553
553
|
|
|
@@ -664,7 +664,7 @@ const selectModel = async (provider) => {
|
|
|
664
664
|
|
|
665
665
|
console.clear();
|
|
666
666
|
displayBanner();
|
|
667
|
-
|
|
667
|
+
drawBoxHeaderContinue('SELECT MODEL', boxWidth);
|
|
668
668
|
|
|
669
669
|
const models = provider.models || [];
|
|
670
670
|
|