-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
33 lines (29 loc) · 990 Bytes
/
env.example
File metadata and controls
33 lines (29 loc) · 990 Bytes
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
# Discord Bot Configuration
DISCORD_TOKEN=your_discord_bot_token_here
GUILD_ID=your_guild_id_here
VERIFIED_ROLE_ID=your_verified_role_id_here
VERIFICATION_CHANNEL_ID=your_verification_channel_id_here
MOD_LOG_CHANNEL_ID=your_mod_log_channel_id_here
# Embed Configuration
EMBED_TITLE=Verification
EMBED_DESCRIPTION=Click the button below to get your roles.
EMBED_COLOR=5865F2
# Rules Configuration
RULES_TITLE=Server Rules
RULES_DESCRIPTION=Your custom rules description here...
RULES_COLOR=FF8C00
# AI Configuration (Optional - set AI_ENABLED=true to enable)
AI_ENABLED=false
AI_PROVIDER=gemini
AI_GEMINI_API_KEY=your_google_ai_api_key_here
AI_GEMINI_MODEL=gemini-2.0-flash-exp
AI_MAX_TOKENS=100
AI_TEMPERATURE=0.7
AI_TOP_P=0.9
AI_REPETITION_PENALTY=1.1
AI_SYSTEM_PROMPT=Your custom system prompt here...
# Legacy local model config (for backward compatibility)
AI_MODEL_NAME=meta-llama/Meta-Llama-3.1-8B-Instruct
AI_HF_TOKEN=your_huggingface_token_here
AI_USE_4BIT=true
AI_USE_GPU=true