-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (25 loc) · 800 Bytes
/
Copy path.env.example
File metadata and controls
34 lines (25 loc) · 800 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
34
# OpenAI API Configuration
OPENAI_API_KEY=YOUR_KEY
# Replace 'sk-your-openai-api-key-here' with your actual OpenAI API key
# Get your API key from: https://platform.openai.com/api-keys
# Optional configurations
# Whisper model options: tiny, base, small, medium, large
WHISPER_MODEL=base
# OpenAI model options: gpt-3.5-turbo, gpt-4, gpt-4-turbo
OPENAI_MODEL=gpt-4
# Maximum file size in MB
MAX_FILE_SIZE_MB=500
# Web interface port
GRADIO_SERVER_PORT=7860
# Theme options: soft, default, monochrome, glass
GRADIO_THEME=soft
# Enable/disable AI analysis
ENABLE_KEY_POINTS=true
# Custom application title
APP_TITLE=Software development cycle
# TRD Generation Configuration
ENABLE_TRD_GENERATION=true
TRD_OPENAI_MODEL=gpt-4
TRD_MAX_TOKENS=3000
TRD_TEMPERATURE=0.2
TRD_FILE_PREFIX=TRD_Android_