diff --git a/MinuteMate/README.md b/MinuteMate/README.md index 7f0ec008..d4c463c8 100644 --- a/MinuteMate/README.md +++ b/MinuteMate/README.md @@ -15,8 +15,18 @@ - **Response Generation** - Generates a response, typically by sending a request to a generative model with the original user prompt and a system prompt including selected resources acquired from the vector database. - **Trust & Safety** - Two separate stages, each using an external generative model. The first stage examines only the incoming prompt. If an inappropriate prompt is detected at this stage, all ordinary steps are skipped and a response is sent declining the prompt. The second examines generated responses and vetoes those with inappropriate content. -##### Setup - Docker - -TODO +##### Setup - Repo + +**Front-End +``` +cd /MinuteMate/front/ +streamlit run app.py +``` + +**Back-End +``` +cd /MinuteMate/back/ +uvicorn main02:app --reload +```