Skip to main content
POST
/
agents
/
assists
/
summarize-thread
Summarize Thread
curl --request POST \
  --url https://api.example.com/agents/assists/summarize-thread \
  --header 'Content-Type: application/json' \
  --data '
{
  "task_id": "<string>"
}
'
{
  "summary": "<string>",
  "decisions": [
    "<string>"
  ],
  "open_questions": [
    "<string>"
  ],
  "action_items": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.pragmatiks.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Request body for the summarize-thread assist.

The server pulls the comment thread for task_id — callers do not (and cannot) inline the messages themselves.

Attributes: task_id: Task whose comment thread should be summarized.

task_id
string
required

Response

Successful Response

Response body for the summarize-thread assist.

Attributes: summary: Plain-language summary of the conversation. decisions: Decisions that were reached in the thread. open_questions: Outstanding questions that still need answers. action_items: Concrete follow-ups extracted from the thread.

summary
string
required
decisions
string[]
required
open_questions
string[]
required
action_items
string[]
required