28 lines
No EOL
872 B
Markdown
28 lines
No EOL
872 B
Markdown
## 📝 Chat with Substack Newsletter
|
|
Streamlit app that allows you to chat with a Substack newsletter using OpenAI's API and the Embedchain library. This app leverages GPT-4 to provide accurate answers to questions based on the content of the specified Substack newsletter.
|
|
|
|
## Features
|
|
- Input a Substack blog URL
|
|
- Ask questions about the content of the Substack newsletter
|
|
- Get accurate answers using OpenAI's API and Embedchain
|
|
|
|
### How to get Started?
|
|
|
|
1. Clone the GitHub repository
|
|
|
|
```bash
|
|
git clone https://github.com/Shubhamsaboo/awesome-llm-apps.git
|
|
```
|
|
2. Install the required dependencies:
|
|
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
3. Get your OpenAI API Key
|
|
|
|
- Sign up for an [OpenAI account](https://platform.openai.com/) (or the LLM provider of your choice) and obtain your API key.
|
|
|
|
4. Run the Streamlit App
|
|
```bash
|
|
streamlit run chat_substack.py
|
|
``` |