-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeys.example.py
More file actions
28 lines (25 loc) · 1.07 KB
/
keys.example.py
File metadata and controls
28 lines (25 loc) · 1.07 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
# API Keys Configuration Template
#
# IMPORTANT: This is a template file. DO NOT put your actual API keys here!
#
# Instructions:
# 1. Copy this file and rename it to 'keys.py'
# 2. Replace the placeholder values with your actual API keys
# 3. The 'keys.py' file is already in .gitignore and will not be committed to the repository
#
# Security Note:
# - Never commit your actual API keys to version control
# - Keep your keys.py file secure and private
# - Rotate your keys regularly for security
# OpenAI API Key (for Whisper API transcription and GPT models)
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY = "sk-your-openai-api-key-here"
# Volcano Engine API Key (for alternative AI models)
# Get your key from: https://console.volcengine.com/
VOLCENGINE_API_KEY = "your-volcengine-api-key-here"
# Additional API Keys (optional)
# Add more API keys as needed for other providers:
# DEEPSEEK_API_KEY = "your-deepseek-api-key-here"
# ANTHROPIC_API_KEY = "your-anthropic-api-key-here"
# XAI_API_KEY = "your-xai-api-key-here"
# ZHIPU_API_KEY = "your-zhipu-api-key-here"