@@ -210,13 +210,13 @@ const ListGatewayConfigsUI = ({
210210 } ,
211211 {
212212 key : "edit" ,
213- label : "Edit AI Gateway Config" ,
213+ label : "Edit Agent Gateway Config" ,
214214 color : colors . warning ,
215215 icon : figures . pointer ,
216216 } ,
217217 {
218218 key : "delete" ,
219- label : "Delete AI Gateway Config" ,
219+ label : "Delete Agent Gateway Config" ,
220220 color : colors . error ,
221221 icon : figures . cross ,
222222 } ,
@@ -320,7 +320,7 @@ const ListGatewayConfigsUI = ({
320320 case "delete" :
321321 await client . gatewayConfigs . delete ( config . id ) ;
322322 setOperationResult (
323- `AI gateway config "${ config . name } " deleted successfully` ,
323+ `Agent gateway config "${ config . name } " deleted successfully` ,
324324 ) ;
325325 break ;
326326 }
@@ -500,11 +500,11 @@ const ListGatewayConfigsUI = ({
500500 if ( showDeleteConfirm && selectedConfig ) {
501501 return (
502502 < ConfirmationPrompt
503- title = "Delete AI Gateway Config"
503+ title = "Delete Agent Gateway Config"
504504 message = { `Are you sure you want to delete "${ selectedConfig . name } "?` }
505- details = "This action cannot be undone. Any devboxes using this AI gateway config will no longer have access to it."
505+ details = "This action cannot be undone. Any devboxes using this Agent gateway config will no longer have access to it."
506506 breadcrumbItems = { [
507- { label : "AI Gateway Configs" } ,
507+ { label : "Agent Gateway Configs" } ,
508508 { label : selectedConfig . name || selectedConfig . id } ,
509509 { label : "Delete" , active : true } ,
510510 ] }
@@ -530,7 +530,7 @@ const ListGatewayConfigsUI = ({
530530 < >
531531 < Breadcrumb
532532 items = { [
533- { label : "AI Gateway Configs" } ,
533+ { label : "Agent Gateway Configs" } ,
534534 {
535535 label : selectedConfig ?. name || selectedConfig ?. id || "Config" ,
536536 } ,
@@ -553,13 +553,13 @@ const ListGatewayConfigsUI = ({
553553 operations . find ( ( o ) => o . key === executingOperation ) ?. label ||
554554 "Operation" ;
555555 const messages : Record < string , string > = {
556- delete : "Deleting AI gateway config..." ,
556+ delete : "Deleting Agent gateway config..." ,
557557 } ;
558558 return (
559559 < >
560560 < Breadcrumb
561561 items = { [
562- { label : "AI Gateway Configs" } ,
562+ { label : "Agent Gateway Configs" } ,
563563 { label : selectedConfig . name || selectedConfig . id } ,
564564 { label : operationLabel , active : true } ,
565565 ] }
@@ -608,8 +608,10 @@ const ListGatewayConfigsUI = ({
608608 if ( loading && configs . length === 0 ) {
609609 return (
610610 < >
611- < Breadcrumb items = { [ { label : "AI Gateway Configs" , active : true } ] } />
612- < SpinnerComponent message = "Loading AI gateway configs..." />
611+ < Breadcrumb
612+ items = { [ { label : "Agent Gateway Configs" , active : true } ] }
613+ />
614+ < SpinnerComponent message = "Loading Agent gateway configs..." />
613615 </ >
614616 ) ;
615617 }
@@ -618,9 +620,11 @@ const ListGatewayConfigsUI = ({
618620 if ( error ) {
619621 return (
620622 < >
621- < Breadcrumb items = { [ { label : "AI Gateway Configs" , active : true } ] } />
623+ < Breadcrumb
624+ items = { [ { label : "Agent Gateway Configs" , active : true } ] }
625+ />
622626 < ErrorMessage
623- message = "Failed to list AI gateway configs"
627+ message = "Failed to list Agent gateway configs"
624628 error = { error }
625629 />
626630 </ >
@@ -630,7 +634,7 @@ const ListGatewayConfigsUI = ({
630634 // Main list view
631635 return (
632636 < >
633- < Breadcrumb items = { [ { label : "AI Gateway Configs" , active : true } ] } />
637+ < Breadcrumb items = { [ { label : "Agent Gateway Configs" , active : true } ] } />
634638
635639 { /* Search bar */ }
636640 < SearchBar
@@ -640,7 +644,7 @@ const ListGatewayConfigsUI = ({
640644 resultCount = { totalCount }
641645 onSearchChange = { search . setSearchQuery }
642646 onSearchSubmit = { search . submitSearch }
643- placeholder = "Search AI gateway configs..."
647+ placeholder = "Search Agent gateway configs..."
644648 />
645649
646650 { /* Table - hide when popup is shown */ }
@@ -653,7 +657,7 @@ const ListGatewayConfigsUI = ({
653657 columns = { columns }
654658 emptyState = {
655659 < Text color = { colors . textDim } >
656- { figures . info } No AI gateway configs found. Press [c] to create
660+ { figures . info } No Agent gateway configs found. Press [c] to create
657661 one.
658662 </ Text >
659663 }
0 commit comments