chat with pdf
1.0.0
Simple application using Python and Streamlit using OpenAI API. Upload any pdf file and ask questions about it! It also supports images scans.
With History and Auto generated questions
Make sure you have python and pip installed
git clone https://github.com/pratikkalein/chat-with-pdf
python3 -m venv venv
source /venv/bin/activate
pip install -r requirements.txt
OPEN_AI_API_KEY=yourapikey
streamlit run app.py
gcloud builds submit --tag gcr.io/gcp-project-id/chat-with-pdf --project=gcp-project-id
Before running the command make sure you add your secret to the Secret Manager. Syntax for the --update-secrets
--update-secretes=ENV_VAR_NAME=SECRET_NAME:VERSION
gcloud run deploy chat-with-pdf --image gcr.io/gcp-project-id/chat-with-pdf --platform managed --project=gcp-project-id --allow-unauthenticated --region=asia-south1 --max-instances=2 --update-secrets=OPENAI_API_KEY=openai:1
If you wish to modify your deployment you can refere the documentation here.