File size: 1,376 Bytes
22f0b42
 
ce45eb0
 
 
22f0b42
ce45eb0
22f0b42
ce45eb0
 
22f0b42
 
ce45eb0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
title: Matrix Context Console
emoji: 🟢
colorFrom: green
colorTo: gray
sdk: docker
app_port: 7860
pinned: false
license: apache-2.0
short_description: Inspectable, typed memory for AI agents  live control plane
---

# Matrix Context — Console (live demo)

A live, self-contained control plane / admin UI for **Matrix Context**, the
inspectable, typed memory layer for AI agents. One container serves both the
operator console (Overview · Inspector · Ingest · Memory · Experts · Routing ·
Benchmarks · MoC Contract · Settings) **and** the live **MoC Contract v1** API
under `/v1`. A small demo memory set is seeded on startup.

- Code & docs: https://github.com/agent-matrix/matrix-context
- The UI is wired to the same-origin `/v1` API; the Ingest wizard runs in
  Compatible Mode (client-side chunking → `POST /v1/remember`).

## How this Space is built

This directory (`hf/`) holds the Hugging Face packaging — the `Dockerfile`,
this card, and `deploy.py`. The deploy step assembles the build context
(`pyproject.toml` + `src/` + `frontend/`) so the image installs the backend and
serves the `frontend/` UI. The `frontend/` app is the single source of truth; it
is not duplicated here.

Reproduce locally:

```bash
docker build -f hf/Dockerfile -t matrix-context-console .
docker run -p 7860:7860 matrix-context-console   # http://127.0.0.1:7860
```