omnius 1.0.614 → 1.0.616
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.
- package/dist/index.js +4 -1
- package/docs/DISCOVERY.json +76 -0
- package/docs/DISCOVERY.md +1 -0
- package/docs/reference/rest-api.md +1 -0
- package/docs/rest/INDEX.md +2 -2
- package/docs/rest/endpoints/voice-vision.md +2 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -808836,6 +808836,7 @@ function getOpenApiSpec() {
|
|
|
808836
808836
|
}
|
|
808837
808837
|
},
|
|
808838
808838
|
"/v1/vision/describe": { post: { summary: "Vision describe (deferred to PT-07)", tags: ["Vision"], responses: { 501: { description: "Not yet daemon-resident" } } } },
|
|
808839
|
+
"/v1/ocr/advanced": { post: { summary: "Advanced OCR — multi-PSM tesseract pipeline with optional vision refinement — body {imagePath, visionModel?, prompt?}", tags: ["Vision"], responses: { 200: { description: "OCR text + context block" }, 400: { description: "Missing imagePath" }, 501: { description: "OCR tool unavailable" } } } },
|
|
808839
808840
|
"/v1/vision/embed": { post: { summary: "Create a vision embedding for uploaded or referenced media", tags: ["Vision"], responses: { 200: { description: "Vision embedding result" }, 400: { description: "Invalid media input" } } } },
|
|
808840
808841
|
"/v1/audio/embed": { post: { summary: "Create an audio embedding for uploaded or referenced audio", tags: ["Voice"], responses: { 200: { description: "Audio embedding result" }, 400: { description: "Invalid audio input" } } } },
|
|
808841
808842
|
"/v1/chat/attachments": { post: { summary: "Upload an attachment for a stateful chat", tags: ["Chat"], responses: { 200: { description: "Stored attachment metadata" }, 400: { description: "Invalid attachment" } } } },
|
|
@@ -812231,7 +812232,9 @@ function handleHelp(req3, res) {
|
|
|
812231
812232
|
voice_and_vision: {
|
|
812232
812233
|
"POST /v1/voice/tts": "Text-to-speech synthesis",
|
|
812233
812234
|
"POST /v1/voice/asr": "Automatic speech recognition",
|
|
812234
|
-
"POST /v1/vision/describe": "Describe an image (vision pipeline)"
|
|
812235
|
+
"POST /v1/vision/describe": "Describe an image (vision pipeline)",
|
|
812236
|
+
"POST /v1/ocr/advanced": "Advanced OCR (multi-PSM tesseract + optional vision)",
|
|
812237
|
+
"POST /v1/media/av/analyze": "Grounded AV/audio comprehension of a media file"
|
|
812235
812238
|
}
|
|
812236
812239
|
},
|
|
812237
812240
|
mcp_integration: {
|
package/docs/DISCOVERY.json
CHANGED
|
@@ -9897,6 +9897,82 @@
|
|
|
9897
9897
|
"packages/cli/src/api/openapi.ts"
|
|
9898
9898
|
]
|
|
9899
9899
|
},
|
|
9900
|
+
{
|
|
9901
|
+
"id": "api.v1-ocr-advanced",
|
|
9902
|
+
"kind": "api",
|
|
9903
|
+
"title": "/v1/ocr/advanced",
|
|
9904
|
+
"summary": "Advanced OCR — multi-PSM tesseract pipeline with optional vision refinement — body {imagePath, visionModel?, prompt?}",
|
|
9905
|
+
"aliases": [
|
|
9906
|
+
"/v1/ocr/advanced"
|
|
9907
|
+
],
|
|
9908
|
+
"keywords": [
|
|
9909
|
+
"rest",
|
|
9910
|
+
"openapi",
|
|
9911
|
+
"POST",
|
|
9912
|
+
"Vision",
|
|
9913
|
+
"v1",
|
|
9914
|
+
"ocr",
|
|
9915
|
+
"advanced"
|
|
9916
|
+
],
|
|
9917
|
+
"maturity": "stable",
|
|
9918
|
+
"layer": "interface",
|
|
9919
|
+
"audiences": [
|
|
9920
|
+
"integrator",
|
|
9921
|
+
"service-agent",
|
|
9922
|
+
"coding-agent"
|
|
9923
|
+
],
|
|
9924
|
+
"interfaces": [
|
|
9925
|
+
{
|
|
9926
|
+
"type": "rest",
|
|
9927
|
+
"target": "POST /v1/ocr/advanced"
|
|
9928
|
+
},
|
|
9929
|
+
{
|
|
9930
|
+
"type": "openapi",
|
|
9931
|
+
"target": "/openapi.json"
|
|
9932
|
+
}
|
|
9933
|
+
],
|
|
9934
|
+
"references": [
|
|
9935
|
+
{
|
|
9936
|
+
"type": "source",
|
|
9937
|
+
"target": "packages/cli/src/api/openapi.ts",
|
|
9938
|
+
"relation": "openapi-source"
|
|
9939
|
+
},
|
|
9940
|
+
{
|
|
9941
|
+
"type": "documentation",
|
|
9942
|
+
"target": "docs/reference/rest-api.md",
|
|
9943
|
+
"relation": "endpoint-inventory"
|
|
9944
|
+
}
|
|
9945
|
+
],
|
|
9946
|
+
"methods": [
|
|
9947
|
+
"POST"
|
|
9948
|
+
],
|
|
9949
|
+
"tags": [
|
|
9950
|
+
"Vision"
|
|
9951
|
+
],
|
|
9952
|
+
"operations": {
|
|
9953
|
+
"post": {
|
|
9954
|
+
"summary": "Advanced OCR — multi-PSM tesseract pipeline with optional vision refinement — body {imagePath, visionModel?, prompt?}",
|
|
9955
|
+
"tags": [
|
|
9956
|
+
"Vision"
|
|
9957
|
+
],
|
|
9958
|
+
"responses": {
|
|
9959
|
+
"200": {
|
|
9960
|
+
"description": "OCR text + context block"
|
|
9961
|
+
},
|
|
9962
|
+
"400": {
|
|
9963
|
+
"description": "Missing imagePath"
|
|
9964
|
+
},
|
|
9965
|
+
"501": {
|
|
9966
|
+
"description": "OCR tool unavailable"
|
|
9967
|
+
}
|
|
9968
|
+
}
|
|
9969
|
+
}
|
|
9970
|
+
},
|
|
9971
|
+
"source_of_truth": [
|
|
9972
|
+
"GET /openapi.json",
|
|
9973
|
+
"packages/cli/src/api/openapi.ts"
|
|
9974
|
+
]
|
|
9975
|
+
},
|
|
9900
9976
|
{
|
|
9901
9977
|
"id": "api.v1-ollama-pool-cleanup",
|
|
9902
9978
|
"kind": "api",
|
package/docs/DISCOVERY.md
CHANGED
|
@@ -162,6 +162,7 @@ Daemon equivalents are `GET /v1/discovery/bootstrap`, `GET /v1/discovery?q=<inte
|
|
|
162
162
|
| `api.v1-memory-write` | /v1/memory/write | Write a memory entry (PT-04) |
|
|
163
163
|
| `api.v1-models` | /v1/models | List aggregated models |
|
|
164
164
|
| `api.v1-nexus-status` | /v1/nexus/status | Nexus peer state |
|
|
165
|
+
| `api.v1-ocr-advanced` | /v1/ocr/advanced | Advanced OCR — multi-PSM tesseract pipeline with optional vision refinement — body {imagePath, visionModel?, prompt?} |
|
|
165
166
|
| `api.v1-ollama-pool-cleanup` | /v1/ollama/pool/cleanup | Clean up stale Ollama pool processes |
|
|
166
167
|
| `api.v1-ollama-pool-processes` | /v1/ollama/pool/processes | Scan local Ollama pool processes |
|
|
167
168
|
| `api.v1-profiles` | /v1/profiles | List tool profiles; Create tool profile |
|
|
@@ -306,6 +306,7 @@ the store, `OMNIUS_DISABLE_CONTEXT_WINDOW_DUMPS=1` to disable it, and
|
|
|
306
306
|
| `POST` | `/v1/vision/describe` | Vision describe placeholder |
|
|
307
307
|
| `POST` | `/v1/vision/embed` | Create a vision embedding from media |
|
|
308
308
|
| `POST` | `/v1/audio/embed` | Create an audio embedding from audio input |
|
|
309
|
+
| `POST` | `/v1/ocr/advanced` | Advanced OCR — multi-PSM tesseract pipeline with optional vision refinement |
|
|
309
310
|
|
|
310
311
|
`POST /v1/voice/tts` and `/v1/audio/speech` automatically warm the daemon.
|
|
311
312
|
An explicit model must render exactly or the request fails; Omnius does not
|
package/docs/rest/INDEX.md
CHANGED
|
@@ -112,8 +112,8 @@ Scopes:
|
|
|
112
112
|
| Sessions and context | `/v1/sessions`, `/v1/sessions/{id}`, `/v1/context`, `/v1/context/window-dumps`, `/v1/context/window-dumps/{id}`, `/v1/context/save`, `/v1/context/restore`, `/v1/context/compact` |
|
|
113
113
|
| Nexus | `/v1/nexus/status`, `/v1/sponsors` |
|
|
114
114
|
| Ollama pool | `/v1/ollama/pool/processes`, `/v1/ollama/pool/cleanup` |
|
|
115
|
-
| Voice and audio | `/v1/voice/state`, `/v1/voice/models`, `/v1/voice/tts`, `/v1/audio/speech`, `/v1/asr/engines`, `/v1/asr/selection`, `/v1/asr/activate`, `/v1/asr/transcriptions`, `/v1/asr/test`, `/v1/audio/transcriptions`, `/v1/voicechat/ws` |
|
|
116
|
-
| Vision/audio embeddings | `/v1/vision/describe`, `/v1/vision/embed`, `/v1/audio/embed` |
|
|
115
|
+
| Voice and audio | `/v1/voice/state`, `/v1/voice/models`, `/v1/voice/tts`, `/v1/audio/speech`, `/v1/asr/engines`, `/v1/asr/selection`, `/v1/asr/activate`, `/v1/asr/transcriptions`, `/v1/asr/test`, `/v1/audio/transcriptions`, `/v1/voicechat/ws`, `/v1/media/av/analyze` |
|
|
116
|
+
| Vision/audio embeddings | `/v1/vision/describe`, `/v1/vision/embed`, `/v1/audio/embed`, `/v1/ocr/advanced` |
|
|
117
117
|
| Projects | `/v1/projects`, `/v1/projects/current`, `/v1/projects/switch`, `/v1/projects/register`, `/v1/projects/rename`, `/v1/projects/scan`, `/v1/projects/preferences` |
|
|
118
118
|
| Code graph | `/v1/codegraph/snapshot`, `/v1/codegraph/events` |
|
|
119
119
|
| Scheduled jobs | `/v1/scheduled`, `/v1/scheduled/all`, `/v1/scheduled/status`, `/v1/scheduled/kill`, `/v1/scheduled/fixup`, `/v1/scheduled/reconcile` |
|
|
@@ -29,6 +29,8 @@
|
|
|
29
29
|
| `POST` | `/v1/voice/speak` | Synthesize and broadcast to voicechat clients |
|
|
30
30
|
| `WS` | `/v1/voicechat/ws` | Full-duplex voicechat WebSocket |
|
|
31
31
|
| `POST` | `/v1/vision/describe` | Vision describe placeholder/deferred endpoint |
|
|
32
|
+
| `POST` | `/v1/ocr/advanced` | Advanced OCR — multi-PSM tesseract pipeline with optional vision refinement |
|
|
33
|
+
| `POST` | `/v1/media/av/analyze` | Grounded AV/audio comprehension of a media file into entities/events |
|
|
32
34
|
|
|
33
35
|
## TTS
|
|
34
36
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.616",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.616",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED