├── .gitignore ├── README.md ├── chatbot ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── serializers.py ├── tasks.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── config ├── __init__.py ├── asgi.py ├── celery.py ├── settings │ ├── __init__.py │ ├── common.py │ ├── key_values.py │ ├── local.py │ ├── prod.py │ └── stage.py ├── urls.py └── wsgi.py ├── example.env ├── filestructure.txt ├── manage.py ├── models └── .gitkeep ├── requirements.txt ├── site_settings ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── static └── .gitkeep ├── templates └── admin │ └── training_model │ └── document │ └── change_form.html ├── training_model ├── __init__.py ├── admin.py ├── apps.py ├── faiss_helpers.py ├── models.py ├── pinecone_helpers.py ├── tests.py ├── urls.py └── views.py └── users ├── __init__.py ├── admin.py ├── apps.py ├── backends.py ├── models.py ├── serializers.py ├── tasks.py ├── tests.py ├── urls.py ├── utils.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /chatbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chatbot/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/chatbot/admin.py -------------------------------------------------------------------------------- /chatbot/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/chatbot/apps.py -------------------------------------------------------------------------------- /chatbot/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/chatbot/models.py -------------------------------------------------------------------------------- /chatbot/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/chatbot/serializers.py -------------------------------------------------------------------------------- /chatbot/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/chatbot/tasks.py -------------------------------------------------------------------------------- /chatbot/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/chatbot/tests.py -------------------------------------------------------------------------------- /chatbot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/chatbot/urls.py -------------------------------------------------------------------------------- /chatbot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/chatbot/utils.py -------------------------------------------------------------------------------- /chatbot/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/chatbot/views.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/celery.py -------------------------------------------------------------------------------- /config/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/settings/__init__.py -------------------------------------------------------------------------------- /config/settings/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/settings/common.py -------------------------------------------------------------------------------- /config/settings/key_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/settings/key_values.py -------------------------------------------------------------------------------- /config/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/settings/local.py -------------------------------------------------------------------------------- /config/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/settings/prod.py -------------------------------------------------------------------------------- /config/settings/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/settings/stage.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/example.env -------------------------------------------------------------------------------- /filestructure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/filestructure.txt -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/manage.py -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /site_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site_settings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/site_settings/admin.py -------------------------------------------------------------------------------- /site_settings/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/site_settings/apps.py -------------------------------------------------------------------------------- /site_settings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/site_settings/models.py -------------------------------------------------------------------------------- /site_settings/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/site_settings/serializers.py -------------------------------------------------------------------------------- /site_settings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/site_settings/tests.py -------------------------------------------------------------------------------- /site_settings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/site_settings/urls.py -------------------------------------------------------------------------------- /site_settings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/site_settings/views.py -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | # Keep in git -------------------------------------------------------------------------------- /templates/admin/training_model/document/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/templates/admin/training_model/document/change_form.html -------------------------------------------------------------------------------- /training_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /training_model/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/training_model/admin.py -------------------------------------------------------------------------------- /training_model/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/training_model/apps.py -------------------------------------------------------------------------------- /training_model/faiss_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/training_model/faiss_helpers.py -------------------------------------------------------------------------------- /training_model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/training_model/models.py -------------------------------------------------------------------------------- /training_model/pinecone_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/training_model/pinecone_helpers.py -------------------------------------------------------------------------------- /training_model/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/training_model/tests.py -------------------------------------------------------------------------------- /training_model/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/training_model/urls.py -------------------------------------------------------------------------------- /training_model/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/training_model/views.py -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/backends.py -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/models.py -------------------------------------------------------------------------------- /users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/serializers.py -------------------------------------------------------------------------------- /users/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/tasks.py -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/urls.py -------------------------------------------------------------------------------- /users/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/utils.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AringoldX/customizable-gpt-chatbot/HEAD/users/views.py --------------------------------------------------------------------------------