@@ -25,14 +25,14 @@ export class GetBlockOptionsClientTool extends BaseClientTool {
2525
2626 static readonly metadata : BaseClientToolMetadata = {
2727 displayNames : {
28- [ ClientToolCallState . generating ] : { text : 'Getting block options ' , icon : Loader2 } ,
29- [ ClientToolCallState . pending ] : { text : 'Getting block options ' , icon : Loader2 } ,
30- [ ClientToolCallState . executing ] : { text : 'Getting block options ' , icon : Loader2 } ,
31- [ ClientToolCallState . success ] : { text : 'Retrieved block options ' , icon : ListFilter } ,
32- [ ClientToolCallState . error ] : { text : 'Failed to get block options ' , icon : XCircle } ,
33- [ ClientToolCallState . aborted ] : { text : 'Aborted getting block options ' , icon : XCircle } ,
28+ [ ClientToolCallState . generating ] : { text : 'Getting block operations ' , icon : Loader2 } ,
29+ [ ClientToolCallState . pending ] : { text : 'Getting block operations ' , icon : Loader2 } ,
30+ [ ClientToolCallState . executing ] : { text : 'Getting block operations ' , icon : Loader2 } ,
31+ [ ClientToolCallState . success ] : { text : 'Retrieved block operations ' , icon : ListFilter } ,
32+ [ ClientToolCallState . error ] : { text : 'Failed to get block operations ' , icon : XCircle } ,
33+ [ ClientToolCallState . aborted ] : { text : 'Aborted getting block operations ' , icon : XCircle } ,
3434 [ ClientToolCallState . rejected ] : {
35- text : 'Skipped getting block options ' ,
35+ text : 'Skipped getting block operations ' ,
3636 icon : MinusCircle ,
3737 } ,
3838 } ,
@@ -49,17 +49,17 @@ export class GetBlockOptionsClientTool extends BaseClientTool {
4949
5050 switch ( state ) {
5151 case ClientToolCallState . success :
52- return `Retrieved ${ blockName } options `
52+ return `Retrieved ${ blockName } operations `
5353 case ClientToolCallState . executing :
5454 case ClientToolCallState . generating :
5555 case ClientToolCallState . pending :
56- return `Retrieving ${ blockName } options `
56+ return `Retrieving ${ blockName } operations `
5757 case ClientToolCallState . error :
58- return `Failed to retrieve ${ blockName } options `
58+ return `Failed to retrieve ${ blockName } operations `
5959 case ClientToolCallState . aborted :
60- return `Aborted retrieving ${ blockName } options `
60+ return `Aborted retrieving ${ blockName } operations `
6161 case ClientToolCallState . rejected :
62- return `Skipped retrieving ${ blockName } options `
62+ return `Skipped retrieving ${ blockName } operations `
6363 }
6464 }
6565 return undefined
0 commit comments