diff --git a/examples/python-chat-app/README.md b/examples/python-chat-app/README.md new file mode 100644 index 00000000..340c7a2f --- /dev/null +++ b/examples/python-chat-app/README.md @@ -0,0 +1,21 @@ +# Ollama Chat App + +Build a Llama2 chat app using Streamlit and Ollama. + +## Running the Example + +1. Ensure you have the `llama2` model installed: + + ```bash + ollama pull llama2 + ``` +2. Install the Python Requirements. + + ```bash + pip install -r requirements.txt + ``` +3. Run the example: + + ```bash + python main.py + ```