You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The protected endpoints continue to validate real RS256 access tokens from the configured issuer. For Cognito, set `AUTH_AUDIENCE` to the generated app client ID and obtain an access token whose `client_id` matches that value:
234
+
The protected endpoints continue to validate real RS256 access tokens from the configured issuer. For Cognito, set `AUTH_AUDIENCE` to the same generated app client ID used by the web application and obtain an access token whose `client_id` matches that value. After changing the app client ID, sign out and sign in again so the browser does not reuse a token from the previous client:
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,21 +52,26 @@ om pull ollama://qwen2.5:3b
52
52
om run qwen2.5:3b "Explain gateway interoperability."
53
53
```
54
54
55
-
Start a local API:
55
+
Start the local API. A default model is optional, so the dashboard can connect before anything is installed:
56
56
57
57
```bash
58
-
om serve tinyllama --port 11435
58
+
om serve --port 11435
59
59
curl http://127.0.0.1:11435/v1/models
60
60
```
61
61
62
62
The local server supports:
63
63
64
64
-`GET /health`
65
65
-`GET /v1/models`
66
+
-`GET /v1/model-catalog`
67
+
-`POST /v1/models/install`
68
+
-`GET /v1/model-installs/:jobId`
66
69
-`POST /v1/chat/completions`
67
70
-`GET /api/tags`
68
71
-`POST /api/generate`
69
72
73
+
The authenticated web dashboard uses the catalog and install-job endpoints for a one-click starter-model download with local progress reporting. Installation requests are restricted to configured browser origins.
74
+
70
75
## Gateway interoperability
71
76
72
77
Gateways normalize external model catalogs and artifact sources into a stable descriptor. Runtimes are separate from gateways, so one gateway can feed multiple local runtimes and one runtime can execute models from multiple gateways.
0 commit comments