Initial project structure and config
This commit is contained in:
commit
4f161e36c2
12 changed files with 55 additions and 0 deletions
55
.gitignore
vendored
Normal file
55
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,55 @@
|
||||||
|
# ==========================================
|
||||||
|
# macOS System Files
|
||||||
|
# ==========================================
|
||||||
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
Icon?
|
||||||
|
._*
|
||||||
|
|
||||||
|
# ==========================================
|
||||||
|
# Python & Bytecode
|
||||||
|
# ==========================================
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
*.so
|
||||||
|
.Python
|
||||||
|
|
||||||
|
# ==========================================
|
||||||
|
# Virtual Environments
|
||||||
|
# ==========================================
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# ==========================================
|
||||||
|
# Application Data & Cache
|
||||||
|
# ==========================================
|
||||||
|
# Keep the data/ directory structure, but ignore dynamic files inside it
|
||||||
|
data/*
|
||||||
|
!data/.gitkeep
|
||||||
|
|
||||||
|
# Local log files and audio caches
|
||||||
|
*.log
|
||||||
|
*.wav
|
||||||
|
*.mp3
|
||||||
|
*.ogg
|
||||||
|
|
||||||
|
# ==========================================
|
||||||
|
# Environment & Secrets
|
||||||
|
# ==========================================
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
*.pem
|
||||||
|
|
||||||
|
# ==========================================
|
||||||
|
# IDEs & Editors
|
||||||
|
# ==========================================
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
0
app/__init__.py
Normal file
0
app/__init__.py
Normal file
0
app/main.py
Normal file
0
app/main.py
Normal file
0
app/modules/feedback_engine.py
Normal file
0
app/modules/feedback_engine.py
Normal file
0
app/modules/llm_controller.py
Normal file
0
app/modules/llm_controller.py
Normal file
0
app/modules/stt_engine.py
Normal file
0
app/modules/stt_engine.py
Normal file
0
app/modules/tts_engine.py
Normal file
0
app/modules/tts_engine.py
Normal file
0
app/ui/chat_tab.py
Normal file
0
app/ui/chat_tab.py
Normal file
0
app/ui/control_tab.py
Normal file
0
app/ui/control_tab.py
Normal file
0
app/ui/main_window.py
Normal file
0
app/ui/main_window.py
Normal file
0
data/.gitkeep
Normal file
0
data/.gitkeep
Normal file
0
doc/notes.md
Normal file
0
doc/notes.md
Normal file
Loading…
Reference in a new issue