import { SyllableSDK } from "syllable-sdk";
const syllableSDK = new SyllableSDK({
apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});
async function run() {
const result = await syllableSDK.sessionDebug.getSessionToolCallResultById({
sessionId: 832133,
toolCallId: "<id>",
});
console.log(result);
}
run();{
"tool_name": "<string>",
"tool_result": "<unknown>"
}import { SyllableSDK } from "syllable-sdk";
const syllableSDK = new SyllableSDK({
apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});
async function run() {
const result = await syllableSDK.sessionDebug.getSessionToolCallResultById({
sessionId: 832133,
toolCallId: "<id>",
});
console.log(result);
}
run();{
"tool_name": "<string>",
"tool_result": "<unknown>"
}