https://github.com/dynstat/mini-ai-chat-app
https://github.com/dynstat/mini-ai-chat-app
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dynstat/mini-ai-chat-app
- Owner: dynstat
- Created: 2025-03-31T13:18:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-14T18:56:40.000Z (11 months ago)
- Last Synced: 2025-07-14T23:33:59.097Z (11 months ago)
- Language: CSS
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mini AI Chat App
A simple desktop GUI chat application powered by Google Gemini via LangChain.
Send messages and receive AI-generated responses in a user-friendly interface.
## Screenshot

## Features
- Chat with Gemini AI (Google Generative Language)
- Markdown-formatted responses
- Easy-to-use GUI (PyWebView)
- Keeps chat history
## Setup
1. **Clone (or fork) the repository**
```
git clone https://github.com/dynstat/mini-AI-chat-app.git
cd mini-AI-chat-app
```
2. **Install dependencies**
```
1. Activate the venv using: uv venv
2. run: uv sync
```
Or use your preferred Python environment manager.
3. **Configure API keys**
- Create a `.env` file in the project root.
- Add your Gemini API key:
```
GEMINI_API_KEY=your-google-gemini-api-key
```
## Usage
Run the GUI app:
```
uv run gui-app.py
```
## File Structure
- `gui-app.py` — Main GUI application
- `chat_ai.py` — AI response logic
- `index.html` — Frontend (HTML UI)
- `.env` — Environment variables (API keys)
## Requirements
- Python 3.12+
- See `requirements.txt` or `uv.lock` for dependencies