-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
57 lines (45 loc) · 1.65 KB
/
Copy path.env.example
File metadata and controls
57 lines (45 loc) · 1.65 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
57
# =============================================================
# aiagentgres .env example
# Copy this file ke .env: `cp .env.example .env` lalu isi value-nya.
# JANGAN commit .env (sudah di .gitignore).
# =============================================================
# --- Telegram ---
# Bot token dari @BotFather
TELEGRAM_BOT_TOKEN=
# Comma-separated Telegram user ID yang boleh akses bot.
# WAJIB di-set, kalau kosong bot REJECT semua pesan.
# Cari user ID lo: chat sama @userinfobot di Telegram.
# Contoh: 123456789 atau 123456789,987654321
OWNER_TELEGRAM_IDS=
# Legacy single-owner var (masih support buat back-compat). Kalau lo udah pakai OWNER_TELEGRAM_IDS, ini bisa kosong.
OWNER_TELEGRAM_ID=
# --- Groq (LLM provider utama) ---
GROQ_API_KEY=
# Optional: tambahan key untuk rotation kalau kena rate limit
GROQ_API_KEY_2=
GROQ_API_KEY_3=
GROQ_API_KEY_4=
# Optional, default: llama-3.3-70b-versatile
GROQ_MODEL=
# --- Tavily (web & news search) ---
TAVILY_API_KEY=
# --- Gmail SMTP (kirim & baca email) ---
GMAIL_ADDRESS=
GMAIL_APP_PASSWORD=
# --- Alpha Vantage (stock/forex data) ---
ALPHA_VANTAGE_KEY=
# --- Binance Futures (auto trader) ---
BINANCE_API_KEY=
BINANCE_SECRET_KEY=
BINANCE_TESTNET=false
# --- Agent runtime config ---
# Optional path override. Default = direktori repo ini.
JAGRESMAN_HOME=
# Set 'true' untuk auto-approve semua action EXECUTE_BASH (UNSAFE, dev only).
# Default 'false' = wajib approve manual via tombol Telegram.
AUTO_APPROVE_DANGEROUS=false
# Set 'true' untuk skip approval untuk command di safe-list (ls, df, free, uptime, dll).
# Default 'true'.
AUTO_APPROVE_SAFE_COMMANDS=true
# Log level: DEBUG / INFO / WARNING / ERROR
LOG_LEVEL=INFO