Skip to content

Latest commit

 

History

History
74 lines (58 loc) · 1.97 KB

File metadata and controls

74 lines (58 loc) · 1.97 KB

DocQuery

DocQuery - Intelligent Document Interaction Application


             

Steps to Run

  1. Clone this Repository
git clone https://github.com/YashasJKumar/DocQuery.git
  1. Navigate inside the cloned Directory
cd DocQuery
  1. Create a python virtual environment to stay isolated

i] For MacOS-X / Linux :

python3 -m venv my_env

ii] For Windows:

python -m venv my_env
  1. Now Activate the virtual Environment

i] For MacOS-X / Linux :

source my_env/bin/activate

ii] For Windows :

  • for Powershell
  .\venv\Scripts\Activate.ps1
  • for CommandPrompt
  .\venv\Scripts\activate.bat
  1. Install all the requirements
pip install -r requirements.txt
  1. Place your API Keys from Groq-Cloud & Google Go to line 31 & 89.Replace st.secrets['API_KEY'] with your respective API Key's.

  2. All set. Run your Application

streamlit run documents_qna.py