├── .gitignore ├── .streamlit └── config.toml ├── README.md ├── data └── test.txt ├── example └── direct.py ├── requirements.txt ├── resources ├── img │ ├── Application.PNG │ ├── Documents.PNG │ ├── Query.PNG │ └── schema.png └── video │ └── demo_video.gif ├── setup.py └── src ├── Home.py ├── __init__.py ├── pages ├── 1_Step 1️⃣ Create Data Base.py ├── 2_Step 2️⃣ Ask to the document.py └── __init__.py ├── qa_tool.py ├── style.py └── utils ├── __init__.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/README.md -------------------------------------------------------------------------------- /data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/data/test.txt -------------------------------------------------------------------------------- /example/direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/example/direct.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/img/Application.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/resources/img/Application.PNG -------------------------------------------------------------------------------- /resources/img/Documents.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/resources/img/Documents.PNG -------------------------------------------------------------------------------- /resources/img/Query.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/resources/img/Query.PNG -------------------------------------------------------------------------------- /resources/img/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/resources/img/schema.png -------------------------------------------------------------------------------- /resources/video/demo_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/resources/video/demo_video.gif -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/setup.py -------------------------------------------------------------------------------- /src/Home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/src/Home.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/pages/1_Step 1️⃣ Create Data Base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/src/pages/1_Step 1️⃣ Create Data Base.py -------------------------------------------------------------------------------- /src/pages/2_Step 2️⃣ Ask to the document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/src/pages/2_Step 2️⃣ Ask to the document.py -------------------------------------------------------------------------------- /src/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/src/pages/__init__.py -------------------------------------------------------------------------------- /src/qa_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/src/qa_tool.py -------------------------------------------------------------------------------- /src/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/src/style.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damiangilgonzalez1995/TalkDocument/HEAD/src/utils/util.py --------------------------------------------------------------------------------