New articles summary feed with AI. An application that fetches, summarizes, and displays scientific articles from Arxiv related to a chosen subject.
-
Clone the repository.
-
Set your OpenAI API key:
For Mac/Linux:
export OPENAI_API_KEY='your_api_key'
For Windows (Command Prompt):
set OPENAI_API_KEY=your_api_key
For Windows (PowerShell):
$env:OPENAI_API_KEY='your_api_key'
-
Run the application:
streamlit run app.py
Navigate to the provided local URL in your browser.
- Search for articles using specific keywords.
- Display articles in both expanded and card views.
- Automatic summarization of articles using OpenAI's GPT model.
- (Optional) Periodic fetching of articles.
Note: Ensure that the main application file is named app.py
when using the above command.