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
Resolved conflicts in AutomlExperiments component:
- Accepted main's refactoring that moved create button to parent component
- Fixed routing in AutomlExperimentsPage to use automlConfigurePathname
- Aligned with AutoRAG implementation pattern
The create button is now in AutomlExperimentsPage with label
"Create AutoML optimization run" and proper routing to configure page.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: packages/automl/bff/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,8 @@ This service exposes the following endpoints:
17
17
- GET `/api/v1/pipeline-runs` – query merged pipeline runs from all auto-discovered AutoML pipelines
18
18
- GET `/api/v1/pipeline-runs/:runId` – get a single pipeline run with full task details
19
19
- POST `/api/v1/pipeline-runs` – create a new AutoML pipeline run
20
+
- GET `/api/v1/model-registries` – list Model Registry instances (Kubernetes CRs) with `id` and `server_url` for routing
21
+
- POST `/api/v1/model-registries/:registryId/models` – register a model binary in a specific Model Registry instance
20
22
21
23
## Development
22
24
@@ -104,8 +106,12 @@ GET /api/v1/secrets (filter secrets by type, e.g., ?namespace=defau
104
106
GET /api/v1/pipeline-runs (query merged runs from all auto-discovered AutoML pipelines)
105
107
GET /api/v1/pipeline-runs/:runId
106
108
POST /api/v1/pipeline-runs (create a new AutoML pipeline run)
109
+
GET /api/v1/model-registries (list Model Registry instances: id, server_url, readiness)
110
+
POST /api/v1/model-registries/:registryId/models (register model in a specific registry)
107
111
```
108
112
113
+
For Model Registry integration details (configuration, authentication, S3), see [docs/model-registry-integration.md](docs/model-registry-integration.md).
114
+
109
115
For detailed information about the secrets endpoint, see [docs/secrets-endpoint.md](docs/secrets-endpoint.md).
0 commit comments