Naman Gupta commited on
Commit
beba4d2
·
1 Parent(s): 8d70360

Added.env example

Browse files
Files changed (1) hide show
  1. .env.example +17 -0
.env.example ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copy this file to .env and fill in your values.
2
+ # Never commit .env to git.
3
+
4
+ # Groq API key — get one free at https://console.groq.com
5
+ GROQ_API_KEY=gsk_your_key_here
6
+
7
+ # Model to use (fast + free options below)
8
+ # llama-3.1-8b-instant ← fastest
9
+ # mixtral-8x7b-32768
10
+ # llama-3.3-70b-versatile ← smartest but slower
11
+ MODEL_NAME=llama-3.1-8b-instant
12
+
13
+ # Server settings
14
+ MAX_TURNS=10
15
+ DEBUG=false
16
+ LLM_TIMEOUT=30
17
+ LLM_MAX_RETRIES=3