5a85070c22
Most of the examples needed updates of Readmes to show how to run them. Some of the requirements.txt files had extra content that wasn't needed, or missing altogether. Apparently some folks like to run npm start to run typescript, so a script was added to all typescript examples which hadn't been done before. Basically just a lot of cleanup. Signed-off-by: Matt Williams <m@technovangelist.com> |
||
---|---|---|
.. | ||
README.md | ||
requirements.txt | ||
summ.py | ||
utils.py |
News Summarizer
This example goes through a series of steps:
- You choose a topic area (e.g., "news", "NVidia", "music", etc.).
- Gets the most recent articles on that topic from various sources.
- Uses Ollama to summarize each article.
- Creates chunks of sentences from each article.
- Uses Sentence Transformers to generate embeddings for each of those chunks.
- You enter a question regarding the summaries shown.
- Uses Sentence Transformers to generate an embedding for that question.
- Uses the embedded question to find the most similar chunks.
- Feeds all that to Ollama to generate a good answer to your question based on these news articles.
This example lets you pick from a few different topic areas, then summarize the most recent x articles for that topic. It then creates chunks of sentences from each article and then generates embeddings for each of those chunks.
Running the Example
-
Ensure you have the
mistral-openorca
model installed:ollama pull mistral-openorca
-
Install the Python Requirements.
pip install -r requirements.txt
-
Run the example:
python summ.py