Skip to content

Commit

Permalink
minor update to read.me
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanfrench committed Nov 22, 2024
1 parent 5817ca9 commit b5bc53d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ In this step, the cleaned text from the pre-processing stage is processed by an

- **Model Loader (`model_loader.py`)**: Loads GGUF-type LLM models from repositories using the llama_cpp library. This enables the models to run efficiently on CPUs, making them more accessible and suitable for local setups.

- **Text-to-Text Interaction (`text_to_text.py`)**:
- Combines the text from the input doc and a user-defined 'system prompt' and feeds this to loaded LLM to generate the desired text output, such as conversational transcript.
- **Text-to-Text Interaction (`text_to_text.py`)**: Combines the text from the input doc and a user-defined 'system prompt' and feeds this to loaded LLM to generate the desired text output, such as conversational transcript.

Together, **Model Loading** and **Text-to-Text Interaction** can be combined, as demonstrated in `app.py`, to produce a podcast transcript. For example:
Together, **Model Loading** and **Text-to-Text Interaction** can be combined, as demonstrated in `app.py`, to produce a podcast transcript:
```json
{
"Speaker 1": "Welcome to the podcast on AI advancements.",
"Speaker 2": "Thank you! What are the latest trends?"
"Speaker 2": "Thank you! What are the latest trends?",
...
}
```

Expand Down

0 comments on commit b5bc53d

Please sign in to comment.