├── .github └── ISSUE_TEMPLATE │ └── default_issue.yml ├── .gitignore ├── .streamlit └── config.toml ├── Dockerfile ├── LICENSE ├── README.md ├── README.zh-TW.md ├── app.py ├── components ├── __init__.py ├── document_processor.py ├── response_handler.py ├── sidebar.py └── theme.py ├── docGPT ├── __init__.py ├── agent.py ├── check_api_key.py └── docGPT.py ├── docker-compose.yml ├── model ├── __init__.py └── data_connection.py ├── requirements.txt └── static └── img ├── 2023-07-03-22-38-08.png ├── 2023-08-24-15-02-11.png ├── 2023-08-29-13-39-00.png ├── 2023-09-06-14-56-20.png ├── chatbot.png ├── chatbot_v2.1.png ├── chatbot_v2.png ├── docGPT.gif ├── repos_logo.png └── repos_logo_v1.png /.github/ISSUE_TEMPLATE/default_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/.github/ISSUE_TEMPLATE/default_issue.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [server] 2 | enableStaticServing = true -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/README.zh-TW.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/app.py -------------------------------------------------------------------------------- /components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/components/__init__.py -------------------------------------------------------------------------------- /components/document_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/components/document_processor.py -------------------------------------------------------------------------------- /components/response_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/components/response_handler.py -------------------------------------------------------------------------------- /components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/components/sidebar.py -------------------------------------------------------------------------------- /components/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/components/theme.py -------------------------------------------------------------------------------- /docGPT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/docGPT/__init__.py -------------------------------------------------------------------------------- /docGPT/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/docGPT/agent.py -------------------------------------------------------------------------------- /docGPT/check_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/docGPT/check_api_key.py -------------------------------------------------------------------------------- /docGPT/docGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/docGPT/docGPT.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | from .data_connection import ( 2 | DocumentLoader 3 | ) 4 | -------------------------------------------------------------------------------- /model/data_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/model/data_connection.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/img/2023-07-03-22-38-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/2023-07-03-22-38-08.png -------------------------------------------------------------------------------- /static/img/2023-08-24-15-02-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/2023-08-24-15-02-11.png -------------------------------------------------------------------------------- /static/img/2023-08-29-13-39-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/2023-08-29-13-39-00.png -------------------------------------------------------------------------------- /static/img/2023-09-06-14-56-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/2023-09-06-14-56-20.png -------------------------------------------------------------------------------- /static/img/chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/chatbot.png -------------------------------------------------------------------------------- /static/img/chatbot_v2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/chatbot_v2.1.png -------------------------------------------------------------------------------- /static/img/chatbot_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/chatbot_v2.png -------------------------------------------------------------------------------- /static/img/docGPT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/docGPT.gif -------------------------------------------------------------------------------- /static/img/repos_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/repos_logo.png -------------------------------------------------------------------------------- /static/img/repos_logo_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lin-jun-xiang/docGPT-langchain/HEAD/static/img/repos_logo_v1.png --------------------------------------------------------------------------------