690619:0928 239 #03

This commit is contained in:
2026-06-19 09:28:29 +07:00
parent 64831aba7f
commit d5964eb770
13 changed files with 862 additions and 206 deletions
@@ -0,0 +1,19 @@
# Data Model: AI Console Collapsible Cards
## Database Changes
No database schema changes are required for this feature. All states are stored locally on the client browser via `localStorage`.
## Client Storage Key Definitions
1. `ai_console_section_collapsed`: `string` ('true' | 'false')
- Stores the master collapsed state of the monitoring section.
2. `ai_console_cards_collapsed`: `string` (JSON stringified object)
- Stores the collapse state of individual cards:
```json
{
"ollama": boolean,
"qdrant": boolean,
"ocr": boolean,
"bullmq": boolean,
"vram": boolean
}
```