omnius 1.0.327 → 1.0.329

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -51,6 +51,7 @@ pnpm docs:check
51
51
  | `POST` | `/api/embed` | Ollama-compatible embeddings alias |
52
52
  | `GET` | `/api/tags` | Ollama-compatible model tags |
53
53
  | `GET` | `/v1/chat/sessions` | Active chat sessions |
54
+ | `POST` | `/v1/chat/sessions/{id}/summarize` | Generate + cache an inference-based session title/summary |
54
55
  | `POST` | `/v1/chat/check-in` | Steering check-in for active chat |
55
56
 
56
57
  ## Agentic Runs
@@ -198,6 +199,8 @@ All generation is backed by the unified `~/.omnius` model store and shared venvs
198
199
  | `GET` | `/v1/media/models` | List available image/video/audio/music models |
199
200
  | `GET` | `/v1/media/store` | Unified store disk usage + reclaimable legacy caches |
200
201
  | `POST` | `/v1/media/migrate` | Dedup + migrate legacy per-group caches into the unified store |
202
+ | `POST` | `/v1/media/relocate` | Relocate the whole media store (weights/venvs/gallery) to a chosen folder |
203
+ | `GET` | `/v1/media/relocate/status` | Status + progress of the media-store relocation job |
201
204
  | `POST` | `/v1/media/image` | Generate an image |
202
205
  | `POST` | `/v1/media/video` | Generate a video |
203
206
  | `POST` | `/v1/media/audio` | Generate a sound effect |
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.327",
3
+ "version": "1.0.329",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.327",
9
+ "version": "1.0.329",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.327",
3
+ "version": "1.0.329",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",