README.md 443 Bytes
Newer Older
Jeffrey Morgan's avatar
Jeffrey Morgan committed
1
2
# LangChain Web Summarization

3
This example summarizes the website, [https://ollama.com/blog/run-llama2-uncensored-locally](https://ollama.com/blog/run-llama2-uncensored-locally)
Jeffrey Morgan's avatar
Jeffrey Morgan committed
4

5
## Running the Example
Jeffrey Morgan's avatar
Jeffrey Morgan committed
6

7
1. Ensure you have the `llama2` model installed:
Jeffrey Morgan's avatar
Jeffrey Morgan committed
8

9
10
11
   ```bash
   ollama pull llama2
   ```
Jeffrey Morgan's avatar
Jeffrey Morgan committed
12

13
14
15
16
17
18
19
20
21
22
23
2. Install the Python Requirements.

   ```bash
   pip install -r requirements.txt
   ```

3. Run the example:

   ```bash
   python main.py
   ```