-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (32 loc) · 1.51 KB
/
.env.example
File metadata and controls
39 lines (32 loc) · 1.51 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
# CVAudioStudio Environment Variables Template
# Copy this file to .env and fill in your actual values
# NEVER commit the actual .env file to version control
# ============================================================================
# REQUIRED VARIABLES
# ============================================================================
# OpenAI API Key
# Get your API key from: https://platform.openai.com/api-keys
# This is required for the TTS functionality to work
OPENAI_API_KEY=your_api_key_here
# ============================================================================
# OPTIONAL VARIABLES
# ============================================================================
# OpenAI Organization ID (if applicable)
# Only needed if you're part of an organization with multiple API keys
# OPENAI_ORG_ID=org-your_organization_id_here
# Log Level
# Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
# Default: INFO
# LOG_LEVEL=INFO
# Maximum Text Length for TTS
# Maximum characters allowed per TTS request
# Default: 5000
# MAX_TEXT_LENGTH=5000
# ============================================================================
# SECURITY NOTES
# ============================================================================
# - Never share your .env file or commit it to version control
# - .env is already in .gitignore to prevent accidental commits
# - Keep your API keys secret and rotate them periodically
# - Use separate API keys for development and production
# - Monitor your API usage regularly at https://platform.openai.com/usage