stupid error fix for the logo

This commit is contained in:
2026-03-15 14:56:47 -07:00
parent 7fccb926db
commit 757f26669a

View File

@@ -1,8 +1,6 @@
# JarvisChat v1.4.0 # JarvisChat v1.4.0
![screenshot](docs/images/screenshot.png) Lightweight Ollama coding companion with FTS5 memory system.
**A lightweight Ollama coding companion that runs on Python 3.13**
## New in v1.4.0 ## New in v1.4.0
- **FTS5 Memory System**: Say "remember that..." to store facts, they're automatically retrieved by relevance - **FTS5 Memory System**: Say "remember that..." to store facts, they're automatically retrieved by relevance
@@ -11,6 +9,7 @@
- **Refactored structure**: Separated frontend from backend for maintainability - **Refactored structure**: Separated frontend from backend for maintainability
## File Structure ## File Structure
``` ```
/opt/jarvischat/ /opt/jarvischat/
├── app.py # FastAPI backend (~600 lines) ├── app.py # FastAPI backend (~600 lines)
@@ -22,6 +21,7 @@
``` ```
## Installation ## Installation
```bash ```bash
# Backup existing # Backup existing
cd /opt/jarvischat cd /opt/jarvischat
@@ -34,6 +34,9 @@ mkdir -p templates static
cp /path/to/new/app.py . cp /path/to/new/app.py .
cp /path/to/new/templates/index.html templates/ cp /path/to/new/templates/index.html templates/
# Extract logo from old app.py if you want (or just let it fail gracefully)
# The frontend handles missing logo with onerror="this.style.display='none'"
# Restart service # Restart service
sudo systemctl restart jarvischat sudo systemctl restart jarvischat
``` ```
@@ -64,11 +67,13 @@ Memories are automatically searched and injected based on your message content.
- `PUT /api/settings` - Update settings - `PUT /api/settings` - Update settings
## Dependencies ## Dependencies
```bash ```bash
pip install fastapi uvicorn httpx psutil jinja2 python-multipart --break-system-packages pip install fastapi uvicorn httpx psutil jinja2 python-multipart --break-system-packages
``` ```
## Testing Memory ## Testing Memory
```bash ```bash
# Add a memory via API # Add a memory via API
curl -X POST http://jarvis:8080/api/memories \ curl -X POST http://jarvis:8080/api/memories \