diff --git a/backend/.gitignore b/backend/.gitignore new file mode 100644 index 0000000..fb5514d --- /dev/null +++ b/backend/.gitignore @@ -0,0 +1,100 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Virtual environment +venv/ +env/ +ENV/ +.venv/ +.ENV/ + +# pipenv +Pipfile +Pipfile.lock + +# Poetry +poetry.lock +poetry.toml + +# Pyre type checker +.pyre/ + +# Mypy type checker +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pytest +.pytest_cache/ + +# Coverage reports +htmlcov/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover + +# Jupyter Notebook +.ipynb_checkpoints + +# PyCharm +.idea/ + +# VSCode +.vscode/ + +# macOS +.DS_Store + +# Logs +*.log + +# Local environment variables +.env +.env.* +*.env + +# Docker +*.pid +*.seed +*.pid.lock +docker-compose.override.yml + +# Build files +build/ +dist/ +*.egg-info/ +.eggs/ + +# Wheel files +*.whl + +# Sphinx documentation +docs/_build/ + +# PyInstaller +*.manifest +*.spec + +# Celery +celerybeat-schedule +celerybeat.pid + +# Django stuff: +*.sqlite3 +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# FastAPI specific +*.db diff --git a/backend/app/__pycache__/__init__.cpython-310.pyc b/backend/app/__pycache__/__init__.cpython-310.pyc index 9992e69..4f90000 100644 Binary files a/backend/app/__pycache__/__init__.cpython-310.pyc and b/backend/app/__pycache__/__init__.cpython-310.pyc differ diff --git a/backend/app/api/__pycache__/__init__.cpython-310.pyc b/backend/app/api/__pycache__/__init__.cpython-310.pyc index 4696b42..d27d461 100644 Binary files a/backend/app/api/__pycache__/__init__.cpython-310.pyc and b/backend/app/api/__pycache__/__init__.cpython-310.pyc differ diff --git a/backend/app/api/v1/__pycache__/__init__.cpython-310.pyc b/backend/app/api/v1/__pycache__/__init__.cpython-310.pyc index 98a5ba4..c4b8876 100644 Binary files a/backend/app/api/v1/__pycache__/__init__.cpython-310.pyc and b/backend/app/api/v1/__pycache__/__init__.cpython-310.pyc differ diff --git a/backend/app/api/v1/endpoints/__pycache__/__init__.cpython-310.pyc b/backend/app/api/v1/endpoints/__pycache__/__init__.cpython-310.pyc index f686b7f..2235716 100644 Binary files a/backend/app/api/v1/endpoints/__pycache__/__init__.cpython-310.pyc and b/backend/app/api/v1/endpoints/__pycache__/__init__.cpython-310.pyc differ diff --git a/backend/app/api/v1/endpoints/__pycache__/chat.cpython-310.pyc b/backend/app/api/v1/endpoints/__pycache__/chat.cpython-310.pyc index 13bd989..9609379 100644 Binary files a/backend/app/api/v1/endpoints/__pycache__/chat.cpython-310.pyc and b/backend/app/api/v1/endpoints/__pycache__/chat.cpython-310.pyc differ diff --git a/backend/app/api/v1/endpoints/__pycache__/model.cpython-310.pyc b/backend/app/api/v1/endpoints/__pycache__/model.cpython-310.pyc index 576ed7a..be2c326 100644 Binary files a/backend/app/api/v1/endpoints/__pycache__/model.cpython-310.pyc and b/backend/app/api/v1/endpoints/__pycache__/model.cpython-310.pyc differ diff --git a/backend/app/api/v1/endpoints/__pycache__/websocket_service.cpython-310.pyc b/backend/app/api/v1/endpoints/__pycache__/websocket_service.cpython-310.pyc index df5b363..f343817 100644 Binary files a/backend/app/api/v1/endpoints/__pycache__/websocket_service.cpython-310.pyc and b/backend/app/api/v1/endpoints/__pycache__/websocket_service.cpython-310.pyc differ diff --git a/backend/app/constants/__pycache__/__init__.cpython-310.pyc b/backend/app/constants/__pycache__/__init__.cpython-310.pyc index 0736e8e..80219ea 100644 Binary files a/backend/app/constants/__pycache__/__init__.cpython-310.pyc and b/backend/app/constants/__pycache__/__init__.cpython-310.pyc differ diff --git a/backend/app/constants/__pycache__/asr.cpython-310.pyc b/backend/app/constants/__pycache__/asr.cpython-310.pyc index 6bc415f..5c5e28a 100644 Binary files a/backend/app/constants/__pycache__/asr.cpython-310.pyc and b/backend/app/constants/__pycache__/asr.cpython-310.pyc differ diff --git a/backend/app/constants/__pycache__/model_data.cpython-310.pyc b/backend/app/constants/__pycache__/model_data.cpython-310.pyc index bacb9e7..811de7c 100644 Binary files a/backend/app/constants/__pycache__/model_data.cpython-310.pyc and b/backend/app/constants/__pycache__/model_data.cpython-310.pyc differ diff --git a/backend/app/schemas/__pycache__/__init__.cpython-310.pyc b/backend/app/schemas/__pycache__/__init__.cpython-310.pyc index a4fb110..51910ff 100644 Binary files a/backend/app/schemas/__pycache__/__init__.cpython-310.pyc and b/backend/app/schemas/__pycache__/__init__.cpython-310.pyc differ diff --git a/backend/app/schemas/__pycache__/chat.cpython-310.pyc b/backend/app/schemas/__pycache__/chat.cpython-310.pyc index 6567d53..47f3398 100644 Binary files a/backend/app/schemas/__pycache__/chat.cpython-310.pyc and b/backend/app/schemas/__pycache__/chat.cpython-310.pyc differ diff --git a/backend/app/services/__pycache__/__init__.cpython-310.pyc b/backend/app/services/__pycache__/__init__.cpython-310.pyc index 5cbae0b..bc9fb3e 100644 Binary files a/backend/app/services/__pycache__/__init__.cpython-310.pyc and b/backend/app/services/__pycache__/__init__.cpython-310.pyc differ diff --git a/backend/app/services/__pycache__/llm_request.cpython-310.pyc b/backend/app/services/__pycache__/llm_request.cpython-310.pyc index 50b479a..a9ba313 100644 Binary files a/backend/app/services/__pycache__/llm_request.cpython-310.pyc and b/backend/app/services/__pycache__/llm_request.cpython-310.pyc differ diff --git a/fastAPI/.idea/workspace.xml b/fastAPI/.idea/workspace.xml index 0233b71..a6703c8 100644 --- a/fastAPI/.idea/workspace.xml +++ b/fastAPI/.idea/workspace.xml @@ -4,7 +4,9 @@