@vizzor/cli 0.14.6 → 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 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
- - Run `/cosmos on` to enable full data pipeline
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
@@ -457,6 +459,12 @@ WS /ws # WebSocket real-time push
457
459
 
458
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.
459
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
+
460
468
  ### Quick setup
461
469
 
462
470
  ```bash
@@ -0,0 +1,12 @@
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY pyproject.toml .
6
+ COPY src/ src/
7
+
8
+ RUN pip install --no-cache-dir .
9
+
10
+ EXPOSE 7200
11
+
12
+ CMD ["uvicorn", "src.server:app", "--host", "0.0.0.0", "--port", "7200"]
@@ -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
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "accuracy": 0.96,
3
+ "precision": 0.9285714285714286,
4
+ "recall": 0.8666666666666667,
5
+ "f1": 0.896551724137931,
6
+ "test_samples": 150
7
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "accuracy": 0.37333333333333335,
3
+ "test_samples": 75
4
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "r2": 0.9008962744572128,
3
+ "mae": 9.576466093118714,
4
+ "test_samples": 150
5
+ }
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vizzor-ml-sidecar"
3
- version = "0.14.5"
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.14.5",
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",