├── .github └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE └── backend ├── app ├── __init__.py ├── api │ ├── __init__.py │ ├── endpoints.py │ └── upload.py ├── app.py ├── core │ ├── llm_pipeline.py │ ├── text_pipeline.py │ └── vector_store.py ├── models │ └── document.py └── services │ ├── text_to_speech.py │ └── video_handler.py ├── config └── __init__.py └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | # App initialization 2 | -------------------------------------------------------------------------------- /backend/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/api/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/app/api/endpoints.py -------------------------------------------------------------------------------- /backend/app/api/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/app/api/upload.py -------------------------------------------------------------------------------- /backend/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/app/app.py -------------------------------------------------------------------------------- /backend/app/core/llm_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/app/core/llm_pipeline.py -------------------------------------------------------------------------------- /backend/app/core/text_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/app/core/text_pipeline.py -------------------------------------------------------------------------------- /backend/app/core/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/app/core/vector_store.py -------------------------------------------------------------------------------- /backend/app/models/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/app/models/document.py -------------------------------------------------------------------------------- /backend/app/services/text_to_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/app/services/text_to_speech.py -------------------------------------------------------------------------------- /backend/app/services/video_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/app/services/video_handler.py -------------------------------------------------------------------------------- /backend/config/__init__.py: -------------------------------------------------------------------------------- 1 | # Configuration settings 2 | -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdark-git/DarkGPT/HEAD/backend/requirements.txt --------------------------------------------------------------------------------