GET
/
api
/
v1
/
session_debug
/
tool_result
/
{session_id}
/
{tool_call_id}
import os
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.session_debug.get_session_tool_call_result_by_id(session_id=187795, tool_call_id="<id>")

    # Handle response
    print(res)
{
  "tool_name": "general_information_web",
  "tool_result": "<any>"
}

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

session_id
integer
required
tool_call_id
string
required

Response

200
application/json
Successful Response
tool_name
string
required

Tool name

Example:

"general_information_web"

tool_result
any
required

Tool result data