List ChatKit thread items
beta.chatkit.threads.list_items(strthread_id, ThreadListItemsParams**kwargs) -> SyncConversationCursorPage[Data]
GET/chatkit/threads/{thread_id}/items
List items that belong to a ChatKit thread.
Parameters
thread_id: str
after: Optional[str]
List items created after this thread item ID. Defaults to null for the first page.
before: Optional[str]
List items created before this thread item ID. Defaults to null for the newest results.
limit: Optional[int]
Maximum number of thread items to return. Defaults to 20.
minimum0
maximum100
Returns
List ChatKit thread items
from openai import OpenAI
client = OpenAI()
page = client.beta.chatkit.threads.list_items(
thread_id="cthr_123",
)
page = page.data[0]
print(page)
{
"data": [
{
"id": "cthi_user_001",
"object": "chatkit.thread_item",
"type": "user_message",
"content": [
{
"type": "input_text",
"text": "I need help debugging an onboarding issue."
}
],
"attachments": []
},
{
"id": "cthi_assistant_002",
"object": "chatkit.thread_item",
"type": "assistant_message",
"content": [
{
"type": "output_text",
"text": "Let's start by confirming the workflow version you deployed."
}
]
}
],
"has_more": false,
"object": "list"
}
Returns Examples
{
"data": [
{
"id": "cthi_user_001",
"object": "chatkit.thread_item",
"type": "user_message",
"content": [
{
"type": "input_text",
"text": "I need help debugging an onboarding issue."
}
],
"attachments": []
},
{
"id": "cthi_assistant_002",
"object": "chatkit.thread_item",
"type": "assistant_message",
"content": [
{
"type": "output_text",
"text": "Let's start by confirming the workflow version you deployed."
}
]
}
],
"has_more": false,
"object": "list"
}