File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1526,7 +1526,7 @@ export interface ToolUseContent {
15261526 /**
15271527 * The arguments to pass to the tool, conforming to the tool's input schema.
15281528 */
1529- input : object ;
1529+ input : { [ key : string ] : unknown } ;
15301530
15311531 /**
15321532 * Optional metadata about the tool use. Clients SHOULD preserve this field when
@@ -1565,7 +1565,7 @@ export interface ToolResultContent {
15651565 *
15661566 * If the tool defined an outputSchema, this SHOULD conform to that schema.
15671567 */
1568- structuredContent ?: object ;
1568+ structuredContent ?: { [ key : string ] : unknown } ;
15691569
15701570 /**
15711571 * Whether the tool use resulted in an error.
@@ -1902,7 +1902,6 @@ export interface ElicitRequest extends JSONRPCRequest {
19021902 params : ElicitRequestParams ;
19031903}
19041904
1905- /**
19061905/**
19071906 * Restricted schema definitions that only allow primitive types
19081907 * without nested objects or arrays.
You can’t perform that action at this time.
0 commit comments