README.md 447 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 `llama3.1` model installed:
Jeffrey Morgan's avatar
Jeffrey Morgan committed
8

9
   ```bash
10
   ollama pull llama3.1
11
   ```
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
   ```