Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python
from meibel import MeibelClient client = MeibelClient(api_key="your-api-key") result = client.sessions.get("session_id_value") print(result)
{ "agent_id": "<string>", "agent_name": "<string>", "version": "<string>", "status": "<string>", "messages": [ { "role": "<string>", "message": "<string>", "signal_id": "<string>", "timestamp": "2023-11-07T05:31:56Z" } ], "tool_activity": [ { "tool_id": "<string>", "tool_call": { "tool_name": "<string>", "arguments": {}, "sequence": "<string>", "timestamp": "<string>" }, "tool_result": { "tool_name": "<string>", "sequence": "<string>", "timestamp": "<string>", "result": null } } ], "token_usage": [ {} ], "file_parsing": [ { "file_id": "<string>", "filename": "<string>", "parse_start": { "attempt": 123, "timestamp": "<string>" }, "parse_complete": { "status": "<string>", "bbox_count": 123, "page_count": 123, "content_type": "<string>", "timestamp": "<string>", "error": null } } ], "result": [ { "name": "<string>", "file_type": "<string>", "content": null } ] }
Successful Response
AgentExecutionDetailsResponse
Show child attributes
Was this page helpful?