Upgrade to SDK 0.5.0

This commit is contained in:
Justin Spahr-Summers
2024-11-16 15:25:02 +00:00
parent 2bf84a3ef3
commit 6c27f5a263
5 changed files with 24 additions and 12 deletions

View File

@@ -41,11 +41,12 @@ const ToolsTab = ({
if ("content" in toolResult) {
const structuredResult = toolResult as CallToolResult;
const isError = structuredResult.isError ?? false;
return (
<>
<h4 className="font-semibold mb-2">
Tool Result: {structuredResult.isError ? "Error" : "Success"}
Tool Result: {isError ? "Error" : "Success"}
</h4>
{structuredResult.content.map((item, index) => (
<div key={index} className="mb-2">