-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (36 loc) · 1.89 KB
/
Copy path.env.example
File metadata and controls
46 lines (36 loc) · 1.89 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
# ─────────────────────────────────────────────────────
# 0xeeMini — Template de configuration
# Copier vers ~/.config/0xeeMini/.env et remplir
# Ce fichier reste dans git (pas de vraies valeurs ici)
# ─────────────────────────────────────────────────────
# ── Wallet 0xeeMini (agent autonome) ──
OXEEMINI_WALLET_PUBLIC_KEY=REMPLACER_PAR_CLE_PUBLIQUE_SOLANA
OXEEMINI_WALLET_PRIVATE_KEY=REMPLACER_PAR_CLE_PRIVEE_BASE58
# ── Wallet owner (Solflare — destination des profits) ──
OWNER_SOLFLARE_ADDRESS=REMPLACER_PAR_ADRESSE_SOLFLARE
# ── Solana RPC ──
SOLANA_RPC_URL=https://api.mainnet-beta.solana.com
# ── Claude API (cerveau principal — audits + constitution) ──
CLAUDE_API_KEY=REMPLACER_PAR_CLE_API_ANTHROPIC
CLAUDE_BUDGET_MONTHLY_USD=5.0
CLAUDE_THROTTLE_SECS=600
# ── Cerveau réflexe (GGUF 0.5B sur VPS — constitution toutes les 60s) ──
# Téléchargement : ./mini download-model
# Installation : ./mini install-brain
BRAIN_MODEL_PATH=/home/debian/0xeeMini/models/qwen2.5-0.5b-instruct-q4_k_m.gguf
# ── Mode Samouraï (GGUF 1.5B sur VPS — fallback audit si Claude indispo) ──
# Téléchargement : ./mini download-audit-model
BRAIN_AUDIT_MODEL_PATH=/home/debian/0xeeMini/models/qwen2.5-coder-1.5b-instruct-q4_k_m.gguf
# ── Telegram Bot (optionnel — @BotFather → /newbot) ──
TELEGRAM_BOT_TOKEN=REMPLACER_PAR_TOKEN_BOTFATHER
# ── Alertes ──
WEBHOOK_ALERT_URL=REMPLACER_PAR_WEBHOOK_DISCORD_OU_VIDE
# ── Paramètres financiers ──
RESERVE_MINIMUM_USDC=5.0
PRICE_PER_INSIGHT_USDC=0.10
VPS_MONTHLY_COST_USD=5.00
CURRENT_VPS_PLAN=2GB
# ── Web platform ──
PLATFORM_URL=https://mini.0xee.li
API_HOST=127.0.0.1
API_PORT=8000