https://github.com/avoss84/reflex-ai-app
Reflex A.I. Chat App
https://github.com/avoss84/reflex-ai-app
Last synced: 5 months ago
JSON representation
Reflex A.I. Chat App
- Host: GitHub
- URL: https://github.com/avoss84/reflex-ai-app
- Owner: AVoss84
- Created: 2025-05-25T09:40:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-25T18:40:18.000Z (about 1 year ago)
- Last Synced: 2025-08-31T08:51:38.337Z (11 months ago)
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chat assistant Web App
A simple chat assistant web application built with [Reflex](https://reflex.dev/). It uses Gemini 2.5 Flash under the hood to answer user questions. For deployment, [see blog](https://reflex.dev/blog/2024-10-8-self-hosting-reflex-with-docker/).
## Features
- Chat interface with question and answer display
- Clear chat history functionality
- Responsive UI with custom styling
## Project Structure
```
├── assets
├── Dockerfile
├── Makefile
├── pyproject.toml
├── README.md
├── rxconfig.py
└── web_app
├── backend.py
├── state.py
├── style.py
└── web_app.py
```
## Package installation and application develoment
Create virtual environment:
```bash
uv venv --python 3.12
uv sync
source .venv/bin/activate
```
Start app locally:
```bash
make ui
```
Run formating:
```bash
make format
```