chat-with-PDF.mdx 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. ### Embedchain Chat with PDF App
  2. You can easily create and deploy your own `chat-pdf` App using Embedchain.
  3. Here are few simple steps for you to create and deploy your app:
  4. 1. Fork the embedchain repo from [Github](https://github.com/embedchain/embedchain).
  5. <Note>
  6. If you run into problems with forking, please refer to [github docs](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo) for forking a repo.
  7. </Note>
  8. 2. Navigate to `chat-pdf` example app from your forked repo:
  9. ```bash
  10. cd <your_fork_repo>/examples/chat-pdf
  11. ```
  12. 3. Run your app in development environment with simple commands
  13. ```bash
  14. pip install -r requirements.txt
  15. ec dev
  16. ```
  17. Feel free to improve our simple `chat-pdf` streamlit app and create pull request to showcase your app [here](https://docs.embedchain.ai/examples/showcase)
  18. 4. You can easily deploy your app using Streamlit interface
  19. Connect your Github account with Streamlit and refer this [guide](https://docs.streamlit.io/streamlit-community-cloud/deploy-your-app) to deploy your app.
  20. You can also use the deploy button from your streamlit website you see when running `ec dev` command.