Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/projects/projects.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -344,4 +344,4 @@ Publishing sets token pricing (input/output, USD per selected token block) and m

**Q11. How does autoscaling work for deployments?**

Autoscaling is configured in the deployment Settings tab. Enable it to set min/max replicas, choose SLO-driven metrics (queue depth, TTFT, TPOT, end-to-end latency, embedding/classify latency), and optionally add schedule hints or predictive scaling. These controls let the deployment scale intelligently against performance and cost objectives.
Autoscaling is configured in the deployment Settings tab. Enable it to set min/max replicas, choose SLO-driven metrics (queue depth, TTFT, TPOT, end-to-end latency, embedding/classify latency), and optionally add schedule hints or predictive scaling. These controls let the deployment scale intelligently against performance and cost objectives.
158 changes: 0 additions & 158 deletions services/budadmin/src/flows/AddAgent/SelectModel.tsx

This file was deleted.

2 changes: 0 additions & 2 deletions services/budadmin/src/flows/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ import ProbeDetails from "./GuardRails/ProbeDetails";
import ViewGuardRailDetails from "./GuardRails/ViewGuardRailDetails";
import UseGuardrail from "./GuardRails/UseGuardrail";
import AddAgentSelectProject from "./AddAgent";
import AddAgentSelectModel from "./AddAgent/SelectModel";
import AddAgentConfiguration from "./AddAgent/AgentConfiguration";
import AddAgentDeploymentWarning from "./AddAgent/DeploymentWarning";
import AddAgentSuccess from "./AddAgent/AgentSuccess";
Expand Down Expand Up @@ -336,7 +335,6 @@ export const StepComponents = {
// AddAgent
"add-agent-select-type": AddAgentSelectType,
"add-agent-select-project": AddAgentSelectProject,
"add-agent-select-model": AddAgentSelectModel,
"add-agent-configuration": AddAgentConfiguration,
"add-agent-deployment-warning": AddAgentDeploymentWarning,
"add-agent-success": AddAgentSuccess,
Expand Down
61 changes: 6 additions & 55 deletions services/budadmin/src/hooks/drawerFlows.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4793,7 +4793,7 @@ const addGuardrail: DrawerFlowType = {
const addAgent: DrawerFlowType = {
title: "Add Agent",
description: "Create a new agent",
totalSteps: 6,
totalSteps: 5,
steps: [
{
navigation: () => ["Select Project", "Add Agent"],
Expand All @@ -4809,10 +4809,6 @@ const addAgent: DrawerFlowType = {
status: FormProgressStatus.notCompleted,
title: "Select Type",
},
{
status: FormProgressStatus.notCompleted,
title: "Select Model",
},
{
status: FormProgressStatus.notCompleted,
title: "Configuration",
Expand Down Expand Up @@ -4842,10 +4838,6 @@ const addAgent: DrawerFlowType = {
status: FormProgressStatus.inProgress,
title: "Select Type",
},
{
status: FormProgressStatus.notCompleted,
title: "Select Model",
},
{
status: FormProgressStatus.notCompleted,
title: "Configuration",
Expand All @@ -4862,10 +4854,10 @@ const addAgent: DrawerFlowType = {
confirmClose: true,
},
{
navigation: () => ["Select Model", "Add Agent"],
id: "add-agent-select-model",
navigation: () => ["Configuration", "Add Agent"],
id: "add-agent-configuration",
step: 3,
component: StepComponents["add-agent-select-model"],
component: StepComponents["add-agent-configuration"],
progress: [
{
status: FormProgressStatus.completed,
Expand All @@ -4877,10 +4869,6 @@ const addAgent: DrawerFlowType = {
},
{
status: FormProgressStatus.inProgress,
title: "Select Model",
},
{
status: FormProgressStatus.notCompleted,
title: "Configuration",
},
{
Expand All @@ -4894,39 +4882,10 @@ const addAgent: DrawerFlowType = {
],
confirmClose: true,
},
{
navigation: () => ["Configuration", "Add Agent"],
id: "add-agent-configuration",
step: 4,
component: StepComponents["add-agent-configuration"],
progress: [
{
status: FormProgressStatus.completed,
title: "Select Project",
},
{
status: FormProgressStatus.completed,
title: "Select Type",
},
{
status: FormProgressStatus.completed,
title: "Select Model",
},
{
status: FormProgressStatus.inProgress,
title: "Configuration",
},
{
status: FormProgressStatus.notCompleted,
title: "Review",
},
],
confirmClose: true,
},
{
navigation: () => ["Review", "Add Agent"],
id: "add-agent-deployment-warning",
step: 5,
step: 4,
component: StepComponents["add-agent-deployment-warning"],
progress: [
{
Expand All @@ -4937,10 +4896,6 @@ const addAgent: DrawerFlowType = {
status: FormProgressStatus.completed,
title: "Select Type",
},
{
status: FormProgressStatus.completed,
title: "Select Model",
},
{
status: FormProgressStatus.completed,
title: "Configuration",
Expand All @@ -4959,7 +4914,7 @@ const addAgent: DrawerFlowType = {
{
navigation: () => ["Success", "Add Agent"],
id: "add-agent-success",
step: 6,
step: 5,
component: StepComponents["add-agent-success"],
progress: [
{
Expand All @@ -4970,10 +4925,6 @@ const addAgent: DrawerFlowType = {
status: FormProgressStatus.completed,
title: "Select Type",
},
{
status: FormProgressStatus.completed,
title: "Select Model",
},
{
status: FormProgressStatus.completed,
title: "Configuration",
Expand Down
Loading