@vizzor/cli 0.14.5 → 0.15.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/README.md +10 -1
- package/chronovisor-engine/Dockerfile +12 -0
- package/chronovisor-engine/models/regime_detector/metrics_1773536830.json +36 -0
- package/chronovisor-engine/models/rug_detector/metrics_1773536830.json +7 -0
- package/chronovisor-engine/models/sentiment_nlp/metrics_1773536831.json +4 -0
- package/chronovisor-engine/models/trend_scorer/metrics_1773536830.json +5 -0
- package/chronovisor-engine/pyproject.toml +1 -1
- package/chronovisor-engine/src/server.py +2 -1
- package/dist/index.js +27868 -6002
- package/dist/index.js.map +1 -1
- package/package.json +7 -1
- package/vizzor_logodarkicon.png +0 -0
- package/vizzor_logoicon.png +0 -0
package/README.md
CHANGED
|
@@ -72,6 +72,7 @@ That's it. Vizzor launches a guided setup wizard that walks you through:
|
|
|
72
72
|
- Choosing your AI provider (Claude, GPT-4, Gemini, or local Ollama)
|
|
73
73
|
- Setting up API keys
|
|
74
74
|
- Picking your default chain
|
|
75
|
+
- Optionally installing the ChronoVisor ML engine on first run
|
|
75
76
|
- Learning the first commands
|
|
76
77
|
|
|
77
78
|
### Start predicting
|
|
@@ -88,7 +89,8 @@ That's it. Vizzor launches a guided setup wizard that walks you through:
|
|
|
88
89
|
### Better prediction accuracy
|
|
89
90
|
|
|
90
91
|
After setup, follow these tips for the best results:
|
|
91
|
-
-
|
|
92
|
+
- Enable the ChronoVisor engine during setup, or run `vizzor chronovisor setup` later
|
|
93
|
+
- Run `/cosmos on` for stricter tracked-only qualification and fewer low-edge setups
|
|
92
94
|
- For intraday: focus on `BTC`, `ETH`, and `SOL` with `2h`, `3h`, `4h`, `6h` horizons
|
|
93
95
|
- For scalping: focus on `BTC` and `ETH` with exact short horizons like `10m`, `20m`, `45m`
|
|
94
96
|
- For long-range: ask for `7d`, `30d`, `90d`, or `1y` scenario ranges
|
|
@@ -256,6 +258,7 @@ vizzor chronovisor start # Start engine
|
|
|
256
258
|
vizzor chronovisor stop # Stop engine
|
|
257
259
|
vizzor chronovisor status # Engine health check
|
|
258
260
|
vizzor predictions reset # Reset prediction history
|
|
261
|
+
vizzor update # Update to latest version
|
|
259
262
|
vizzor health # Check config, API keys, and service connectivity
|
|
260
263
|
```
|
|
261
264
|
|
|
@@ -456,6 +459,12 @@ WS /ws # WebSocket real-time push
|
|
|
456
459
|
|
|
457
460
|
The ChronoVisor engine is an optional Python-based prediction accelerator with 16 trained models that enhances Vizzor's predictions with ML. When unavailable, Vizzor falls back to its rule-based heuristics automatically — no setup required to start using Vizzor.
|
|
458
461
|
|
|
462
|
+
If your tracked setups keep getting skipped, check whether ChronoVisor is actually enabled and healthy:
|
|
463
|
+
|
|
464
|
+
```bash
|
|
465
|
+
vizzor chronovisor status
|
|
466
|
+
```
|
|
467
|
+
|
|
459
468
|
### Quick setup
|
|
460
469
|
|
|
461
470
|
```bash
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accuracy": 0.22,
|
|
3
|
+
"per_class": {
|
|
4
|
+
"trending_bull": {
|
|
5
|
+
"precision": 0.14285714285714285,
|
|
6
|
+
"recall": 0.09090909090909091,
|
|
7
|
+
"f1-score": 0.1111111111111111,
|
|
8
|
+
"support": 33.0
|
|
9
|
+
},
|
|
10
|
+
"trending_bear": {
|
|
11
|
+
"precision": 0.208955223880597,
|
|
12
|
+
"recall": 0.45161290322580644,
|
|
13
|
+
"f1-score": 0.2857142857142857,
|
|
14
|
+
"support": 31.0
|
|
15
|
+
},
|
|
16
|
+
"ranging": {
|
|
17
|
+
"precision": 0.20689655172413793,
|
|
18
|
+
"recall": 0.2222222222222222,
|
|
19
|
+
"f1-score": 0.21428571428571427,
|
|
20
|
+
"support": 27.0
|
|
21
|
+
},
|
|
22
|
+
"volatile": {
|
|
23
|
+
"precision": 0.2857142857142857,
|
|
24
|
+
"recall": 0.1875,
|
|
25
|
+
"f1-score": 0.22641509433962265,
|
|
26
|
+
"support": 32.0
|
|
27
|
+
},
|
|
28
|
+
"capitulation": {
|
|
29
|
+
"precision": 0.3333333333333333,
|
|
30
|
+
"recall": 0.14814814814814814,
|
|
31
|
+
"f1-score": 0.20512820512820512,
|
|
32
|
+
"support": 27.0
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"test_samples": 150
|
|
36
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vizzor-ml-sidecar"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.15.0"
|
|
4
4
|
description = "ML sidecar for Vizzor — LSTM, RF, Isolation Forest, Rug Detection, Wallet Classification, Sentiment NLP, Trend Scoring, TA Interpretation, Regime Detection, Strategy Bandit, Project Risk, Portfolio Optimization, Intent Classification"
|
|
5
5
|
requires-python = ">=3.11"
|
|
6
6
|
dependencies = [
|
|
@@ -664,7 +664,7 @@ async def lifespan(_app: FastAPI):
|
|
|
664
664
|
|
|
665
665
|
app = FastAPI(
|
|
666
666
|
title="Vizzor ML Sidecar",
|
|
667
|
-
version="0.
|
|
667
|
+
version="0.15.0",
|
|
668
668
|
lifespan=lifespan,
|
|
669
669
|
)
|
|
670
670
|
|
|
@@ -1509,6 +1509,7 @@ async def catalog_roadmap():
|
|
|
1509
1509
|
@app.get("/health")
|
|
1510
1510
|
async def health():
|
|
1511
1511
|
return {
|
|
1512
|
+
"version": app.version,
|
|
1512
1513
|
"models": [
|
|
1513
1514
|
{
|
|
1514
1515
|
"name": "lstm-predictor",
|