Initial project setup for AudioScribe
Basic environment for Volcano Engine (Bytedance) bigmodel audio transcription API. Includes Python virtual environment, dependencies (requests, python-dotenv), and configuration template. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
3
.env.example
Normal file
3
.env.example
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Volcano Engine (Bytedance) API Configuration
|
||||||
|
X_API_KEY=your_api_key_here
|
||||||
|
X_API_RESOURCE_ID=volc.seedasr.auc
|
||||||
36
.gitignore
vendored
Normal file
36
.gitignore
vendored
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# Virtual environment
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
|
||||||
|
# Python
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
*.egg-info/
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
|
||||||
|
# Environment variables
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# OS
|
||||||
|
Thumbs.db
|
||||||
|
Desktop.ini
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Audio files (large)
|
||||||
|
*.wav
|
||||||
|
*.mp3
|
||||||
|
*.flac
|
||||||
|
*.ogg
|
||||||
|
*.m4a
|
||||||
|
*.wma
|
||||||
|
*.aac
|
||||||
|
|
||||||
|
# Output
|
||||||
|
output/
|
||||||
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
requests>=2.31.0
|
||||||
|
python-dotenv>=1.0.0
|
||||||
Reference in New Issue
Block a user