Views
No views yet
1git clone https://github.com/yourusername/akaike-news-app.git
2cd akaike-news-app1python -m venv venv
2source venv/bin/activate # On Windows use venv\Scripts\activate1conda create -n akaike python=3.12
2conda activate akaikepip install -r requirements.txt.env file in the root folder with the following:OPENAI_API_KEY=your_openai_key
SERPER_API_KEY=your_serper_keyuvicorn api:app --reloadstreamlit run app.pyrequirements.txt and all files are committedGradio/Streamlit├── app.py # Streamlit UI
├── api.py # FastAPI backend
├── utils.py # Utility functions
├── requirements.txt
├── .env # API keys (not pushed)
└── README.md # You're hereapp.py, api.py, utils.py, requirements.txt