hedgequantx 2.7.35 → 2.7.36
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
CHANGED
package/src/pages/ai-agents.js
CHANGED
|
@@ -17,10 +17,10 @@ const { fetchModelsFromApi } = require('./ai-models');
|
|
|
17
17
|
const { drawProvidersTable, drawModelsTable, drawProviderWindow } = require('./ai-agents-ui');
|
|
18
18
|
const cliproxy = require('../services/cliproxy');
|
|
19
19
|
|
|
20
|
-
/** Clear screen and show banner */
|
|
20
|
+
/** Clear screen and show banner (closed) */
|
|
21
21
|
const clearWithBanner = () => {
|
|
22
22
|
console.clear();
|
|
23
|
-
displayBanner();
|
|
23
|
+
displayBanner(true); // Always close the banner
|
|
24
24
|
};
|
|
25
25
|
|
|
26
26
|
// Config file path
|
package/src/pages/stats/index.js
CHANGED
|
@@ -198,8 +198,7 @@ const showStats = async (service) => {
|
|
|
198
198
|
|
|
199
199
|
spinner.succeed('Stats loaded');
|
|
200
200
|
console.clear();
|
|
201
|
-
displayBanner();
|
|
202
|
-
console.log();
|
|
201
|
+
displayBanner(true); // Closed banner
|
|
203
202
|
|
|
204
203
|
// Calculate stats from API data
|
|
205
204
|
const stats = aggregateStats(activeAccounts, accountData.allTrades);
|