omnius 1.0.613 → 1.0.615
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 +1061 -1010
- 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 +14 -14
- package/package.json +1 -1
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.615",
|
|
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.615",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
|
@@ -2170,9 +2170,9 @@
|
|
|
2170
2170
|
}
|
|
2171
2171
|
},
|
|
2172
2172
|
"node_modules/@types/node": {
|
|
2173
|
-
"version": "26.
|
|
2174
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-26.
|
|
2175
|
-
"integrity": "sha512-
|
|
2173
|
+
"version": "26.2.0",
|
|
2174
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-26.2.0.tgz",
|
|
2175
|
+
"integrity": "sha512-5IviulTZeRNp2vAJ514cc/HUlY5nZ9fCbq9DMyC52BrhFZACo3nI0R7qBxhQmo/d27NFe96ur/b7Wwxklda+kg==",
|
|
2176
2176
|
"license": "MIT",
|
|
2177
2177
|
"dependencies": {
|
|
2178
2178
|
"undici-types": "~8.3.0"
|
|
@@ -2602,9 +2602,9 @@
|
|
|
2602
2602
|
}
|
|
2603
2603
|
},
|
|
2604
2604
|
"node_modules/bare-url": {
|
|
2605
|
-
"version": "2.
|
|
2606
|
-
"resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.
|
|
2607
|
-
"integrity": "sha512-
|
|
2605
|
+
"version": "2.5.1",
|
|
2606
|
+
"resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.5.1.tgz",
|
|
2607
|
+
"integrity": "sha512-cD5ciQuKlx+eumTCfqbfiL+fhQm+dHbVNB/cX4+d+I/nx4JsVop9VoFEPAs5RJ6I84QR6bZIBjpd2kjDOYeWcg==",
|
|
2608
2608
|
"license": "Apache-2.0",
|
|
2609
2609
|
"optional": true,
|
|
2610
2610
|
"dependencies": {
|
|
@@ -4091,9 +4091,9 @@
|
|
|
4091
4091
|
}
|
|
4092
4092
|
},
|
|
4093
4093
|
"node_modules/hono": {
|
|
4094
|
-
"version": "4.13.
|
|
4095
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.13.
|
|
4096
|
-
"integrity": "sha512-
|
|
4094
|
+
"version": "4.13.1",
|
|
4095
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.13.1.tgz",
|
|
4096
|
+
"integrity": "sha512-kdJoFVv2xmayw6cY09H7AbMJMt8Jn5jdlEdXsP7AGBdF2DIptVlKlOLKXP41yPip4/a3yQPv9gVcJYI8YY04dw==",
|
|
4097
4097
|
"license": "MIT",
|
|
4098
4098
|
"engines": {
|
|
4099
4099
|
"node": ">=16.9.0"
|
|
@@ -7682,9 +7682,9 @@
|
|
|
7682
7682
|
"license": "ISC"
|
|
7683
7683
|
},
|
|
7684
7684
|
"node_modules/ws": {
|
|
7685
|
-
"version": "8.21.
|
|
7686
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.
|
|
7687
|
-
"integrity": "sha512-
|
|
7685
|
+
"version": "8.21.3",
|
|
7686
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.3.tgz",
|
|
7687
|
+
"integrity": "sha512-201TZ/kPWxoPr/OKWjquZR1SWKXcvxdH+e1xrx89b3YbmzLMFCLfnaG1HFIgWzJOEWZ7MvpK++odZufgYR50Rw==",
|
|
7688
7688
|
"license": "MIT",
|
|
7689
7689
|
"engines": {
|
|
7690
7690
|
"node": ">=10.0.0"
|
package/package.json
CHANGED