Marek4321 commited on
Commit
3063fd2
·
verified ·
1 Parent(s): a2f934a

Update .env

Browse files
Files changed (1) hide show
  1. .env +16 -6
.env CHANGED
@@ -1,12 +1,22 @@
1
- ## API Keys
2
- DEEPSEEK_API_KEY=sk-aa3ae9fd6d834818906acadf249881c6
3
- OPENAI_API_KEY=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
4
-
5
- # Base Configuration
6
- DEEPSEEK_BASE_URL=https://api.deepseek.com
7
  ENVIRONMENT=development
8
  DEBUG=false
9
 
 
 
 
 
 
 
 
 
 
 
 
10
  # Paths
11
  TEMP_DIR=./temp
12
  OUTPUT_DIR=./output
 
 
 
 
 
1
+ # System Configuration
 
 
 
 
 
2
  ENVIRONMENT=development
3
  DEBUG=false
4
 
5
+ # API Configuration
6
+ DEEPSEEK_BASE_URL=https://api.deepseek.com
7
+
8
+ # File Processing
9
+ MAX_FILE_SIZE=10485760 # 10MB
10
+ READ_TIMEOUT=300
11
+
12
+ # Cache Settings
13
+ CACHE_TTL=3600 # 1 hour
14
+ MEMORY_LIMIT=1024 # MB in cache
15
+
16
  # Paths
17
  TEMP_DIR=./temp
18
  OUTPUT_DIR=./output
19
+
20
+ # Processing
21
+ MAX_WORKERS=4
22
+ SYSTEM_TIMEOUT=600