KANI's GPT 🔮
A simple Streamlit web app that integrates with Google's Gemini API (via google-generativeai) to answer user questions using state-of-the-art language models.
- ✅ Ask any question and get AI-generated answers.
- ✅ Simple, clean UI built with Streamlit.
- ✅ Powered by
gemini-profrom Google Generative AI.
├── app.py # Streamlit app code ├── requirements.txt # Python dependencies └── README.md # Project documentation
- Streamlit
- Google Generative AI Python SDK
- Gemini Pro Model (
gemini-pro)
⚠️ You'll need an API key from Google AI Studio: https://makersuite.google.com/app/apikey
git clone https://github.com/your-username/kanis-gpt.git
cd kanis-gptpython -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
streamlit run app.py
Replace the API key in app.py with your own:
genai.configure(api_key="YOUR_API_KEY_HERE")
streamlit google-generativeai
This project is open source and available under the MIT License.