We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfcd298 commit 9c7a93fCopy full SHA for 9c7a93f
schema/draft/schema.ts
@@ -1824,7 +1824,7 @@ export interface ToolUseContent {
1824
/**
1825
* The arguments to pass to the tool, conforming to the tool's input schema.
1826
*/
1827
- input: object;
+ input: { [key: string]: unknown };
1828
1829
1830
* Optional metadata about the tool use. Clients SHOULD preserve this field when
@@ -1863,7 +1863,7 @@ export interface ToolResultContent {
1863
*
1864
* If the tool defined an outputSchema, this SHOULD conform to that schema.
1865
1866
- structuredContent?: object;
+ structuredContent?: { [key: string]: unknown };
1867
1868
1869
* Whether the tool use resulted in an error.
0 commit comments