Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/pages/quickstart/Prerequisites/python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ You can now call tools with your client. Here's an example of calling the `Math.
```python
response = client.tools.execute(
tool_name="Math.Sqrt",
input={"a": 625},
input={"a": "625"},
user_id="[email protected]",
)
print(response.output.value) # 25
print(response.output.value)
```

For a complete list of available tools, visit our [Toolkits page](/toolkits). You can explore tools for email, calendar, GitHub, and many other services.
Expand Down
4 changes: 2 additions & 2 deletions src/components/pages/quickstart/Prerequisites/typescript.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ You can now call tools with your client. Here's an example of calling the `Math.
async function main() {
const executeToolResponse = await client.tools.execute({
tool_name: "Math.Sqrt",
inputs: { a: 625 },
input: { a: "625" },
user_id: "[email protected]",
});

console.log(executeToolResponse.id);
console.log(executeToolResponse.output.value);
}

main();
Expand Down