-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
56 lines (51 loc) · 2.06 KB
/
install.sh
File metadata and controls
56 lines (51 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
# YUCLAW — One-command install for NVIDIA DGX Spark (Ubuntu 24, ARM64)
# Run: chmod +x install.sh && ./install.sh
set -e
echo ""
echo "╔══════════════════════════════════════════╗"
echo "║ YUCLAW ATROS — Installing ║"
echo "╚══════════════════════════════════════════╝"
echo ""
# Python deps
pip install -r requirements.txt
# Create data and output dirs
mkdir -p data/filings output
# Check which mode to use
if [ -n "$YUCLAW_SUPER_ENDPOINT" ]; then
echo "[OK] DGX Spark mode — using local Nemotron at $YUCLAW_SUPER_ENDPOINT"
elif [ -n "$OPENROUTER_API_KEY" ]; then
echo "[OK] OpenRouter mode — using free Nemotron 3 Super API"
else
echo ""
echo "[!] No model endpoint configured."
echo " Edit .env and set either:"
echo " YUCLAW_SUPER_ENDPOINT=http://localhost:8001/v1 (DGX Spark)"
echo " OPENROUTER_API_KEY=your_free_key (cloud fallback)"
echo ""
fi
echo ""
echo "╔══════════════════════════════════════════╗"
echo "║ Installation complete! ║"
echo "╚══════════════════════════════════════════╝"
echo ""
echo " HOW TO USE:"
echo ""
echo " Research a company:"
echo " python yuclaw_cli.py research AAPL"
echo ""
echo " Validate a strategy (Red Team attack):"
echo ' python yuclaw_cli.py validate "Buy momentum ETFs monthly rebalance"'
echo ""
echo " Analyze a macro event:"
echo ' python yuclaw_cli.py macro "Fed raises rates 75bps"'
echo ""
echo " Generate + validate a strategy:"
echo ' python yuclaw_cli.py strategy "Find best ETF momentum factor"'
echo ""
echo " See your watchlist:"
echo " python yuclaw_cli.py watchlist show"
echo ""
echo " See audit log:"
echo " python yuclaw_cli.py audit"
echo ""