From b8776f4f3b010a56a5c6c6e1eda7688326579ad8 Mon Sep 17 00:00:00 2001 From: Joshua Carroll Date: Thu, 22 Aug 2024 21:33:32 -0700 Subject: [PATCH] Add quickstart to readme --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 3535ade..1a4d29a 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,25 @@ This project offers a template for you to easily build and run your own agents u +### Quickstart +Run directly in python + +```sh +echo 'OPENAI_API_KEY=your_openai_api_key' >> .env +pip install -r requirements.txt +python run_service.py + +# In another shell +streamlit run streamlit_app.py +``` + +Run with docker + +```sh +echo 'OPENAI_API_KEY=your_openai_api_key' >> .env +docker compose watch +``` ### Architecture Diagram