Model Serving (SS-15)
The inference broker, embeddings, RAG and guardrails with token budgets.
Bedrock · SageMaker · Agents
Model serving, RAG, guardrails, an MLOps feature store and a federated MCP tool gateway.
What it is
The intelligence plane: a model-serving broker with budgets, guardrails, embeddings, knowledge bases and canary promotion; an MLOps plane with a feature store, drift detection, skew checks and serve-guards; and a federated MCP gateway that catalogs tools across nodes so agents call governed, discoverable tools.
Auth is one model across every service here — an SS-01 bearer token plus X-Tenant-Id on every /api/v1 route. Public base https://api.nexocloud.io/api/v1.
Services & endpoints
Every path below is a real route from services/<svc>/openapi.json. Each service lists a representative slice of its full contract.
Model serving & RAG — a model broker, embeddings, knowledge bases, guardrails, token budgets and canary promotion.
/api/v1/broker/{name}/inferRun inference through the model broker./api/v1/embeddingsGenerate embeddings./api/v1/kb/{name}/retrieveRetrieve from a knowledge base (RAG)./api/v1/guardrailsApply input/output guardrails./api/v1/models/{name}/{version}/canary/advanceAdvance a model canary rollout.MLOps — feature sets, online features, point-in-time lookups, skew checks, drift and serve-guards.
/api/v1/feature-setsDefine a feature set./api/v1/features/{name}/point-in-timePoint-in-time feature lookup for training/serving parity./api/v1/features/{name}/skew-checkCheck training/serving skew./api/v1/driftReport a drift observation./api/v1/models/{name}/{version}/serve-guardCheck whether a model version is safe to serve.Federated MCP gateway — register nodes, sync a federated tool catalog and resolve tool schemas for agents.
/api/v1/nodesRegister an MCP node./api/v1/catalogGet the full federated tool catalog snapshot./api/v1/catalog/refreshRe-sync tools across all federated nodes./api/v1/tools/{name}Get a tool's schema and owning node.Worked example
Retrieve context from a knowledge base, run inference through the broker under a token budget, and enforce guardrails on the way out — with agents reaching governed tools through the MCP catalog.
/api/v1/kb/{name}/retrievePull the top-k passages from a tenant knowledge base.
/api/v1/broker/{name}/inferThe broker routes to a model under a token budget.
/api/v1/guardrailsScreen the output before it reaches the user.
/api/v1/catalogAgents find governed tools through the federated MCP catalog.
Architecture placement
AI/ML & Agents does not reimplement the platform — it composes it. These are the services it leans on and the seams between them.
The inference broker, embeddings, RAG and guardrails with token budgets.
Feature store, skew/drift checks and serve-guards for safe promotion.
Federated tool catalog so agents call discoverable, governed tools.
Model credentials are custodied; every inference is traced and budgeted.