vault backup: 2026-04-24 14:27:02

This commit is contained in:
Vadym Samoilenko 2026-04-24 14:27:03 +01:00
parent 0f48753199
commit dbd903eaca
3 changed files with 12 additions and 3 deletions

View file

@ -4,7 +4,7 @@
"syncFolder": "Hoarder",
"attachmentsFolder": "Hoarder/attachments",
"syncIntervalMinutes": 60,
"lastSyncTimestamp": 1777030439684,
"lastSyncTimestamp": 1777034039468,
"updateExistingFiles": false,
"excludeArchived": true,
"onlyFavorites": false,

View file

@ -9,8 +9,8 @@ url: https://ai-sandbox.oliver.solutions/notebookllama/
server: optical-web-1 at /opt/sandbox-notebookllamalm-nextjs
tags: [oliver, ai, notebooklm, llamaindex, rag, multi-user, nextjs15, elevenlabs]
created: 2026-04-14
last_commit: 2026-03-31
commits: 169
last_commit: 2026-04-24
commits: 170
---
## Overview
@ -72,6 +72,7 @@ docker compose logs frontend --tail=50
## Timeline / Git History
| Date | Change |
|------|--------|
| 2026-04-24 | Fix model IDs, hangs, deploy script, Docker healthchecks |
| 2026-03-31 | Update LLM models to latest versions |
| 2026-03-16 | Fix Studio tiles losing state after chat navigation |
| 2026-03-16 | Replace indigo → brand amber #FFC407 across app |
@ -81,6 +82,10 @@ docker compose logs frontend --tail=50
| 2026-03-15 | Pin python-pptx to 0.6.23 |
## Sessions
### 2026-04-24 Investigated project structure, identified model dependencies,
**Asked:** Investigated project structure, identified model dependencies, and fixed hanging issues with timeouts.
**Done:** Added asyncio timeouts to pipeline_manager.py and chat.py WebSocket handlers, plus timeout protection for background tasks.
### 2026-04-14 Project catalogued
**Done:** Added to Obsidian second brain with full details.
@ -88,6 +93,7 @@ docker compose logs frontend --tail=50
## Change Log
| Date | Requested | Changed | Files |
|------|-----------|---------|-------|
| 2026-04-24 | Model investigation & hangs fix | asyncio.wait_for timeouts (120s/130s), error handling in WS | pipeline_manager.py, chat.py, background_tasks.py |
| 2026-03-16 | Brand color update | Indigo → amber #FFC407 | global styles |
| 2026-03-15 | PPTX from template | New from-template workflow | notebooks.py, frontend |

View file

@ -140,3 +140,6 @@ tags: [daily]
- 12:22 | `cc-dashboard`
- **Asked:** Check that all Claude, Obsidian, and cc-dashboard integrations and hooks are configured correctly for this machine.
- **Done:** Verified integrations and confirmed Claude Code is ready; status bar will display dashboard metrics after restart.
- 14:25 (33min) | `sandbox-notebookllamalm-nextjs`
- **Asked:** Investigated project structure, identified model dependencies, and fixed hanging issues with timeouts.
- **Done:** Added asyncio timeouts to pipeline_manager.py and chat.py WebSocket handlers, plus timeout protection for background tasks.