File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ export abstract class ToolBase {
105
105
if ( errorClarification ) {
106
106
logger . debug (
107
107
LogId . toolDisabled ,
108
- "tool" ,
108
+ "tool" ,
109
109
`Prevented registration of ${ this . name } because ${ errorClarification } is disabled in the config`
110
110
) ;
111
111
@@ -139,7 +139,9 @@ export abstract class ToolBase {
139
139
* @param args - The arguments passed to the tool
140
140
* @returns The tool metadata
141
141
*/
142
- protected resolveTelemetryMetadata ( ...args : Parameters < ToolCallback < typeof this . argsShape > > ) : TelemetryToolMetadata {
142
+ protected resolveTelemetryMetadata (
143
+ ...args : Parameters < ToolCallback < typeof this . argsShape > >
144
+ ) : TelemetryToolMetadata {
143
145
const toolMetadata : TelemetryToolMetadata = { } ;
144
146
try {
145
147
if ( ! args . length ) {
You can’t perform that action at this time.
0 commit comments