Skip to main content
POST
/
agents
/
assists
/
deep-analysis
Deep Analysis
curl --request POST \
  --url https://api.example.com/agents/assists/deep-analysis \
  --header 'Content-Type: application/json' \
  --data '
{
  "task_id": "<string>",
  "user_question": "<string>"
}
'
{
  "analysis": "<string>",
  "concerns": [
    "<string>"
  ],
  "recommendations": [
    "<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 deep-analysis assist.

Attributes: task_id: Task that anchors the analysis. user_question: Free-form question the assist should answer.

task_id
string
required
user_question
string
required

Response

Successful Response

Response body for the deep-analysis assist.

Attributes: analysis: Detailed analysis answering user_question. concerns: Risks or open issues surfaced during analysis. recommendations: Recommended follow-ups for the caller.

analysis
string
required
concerns
string[]
required
recommendations
string[]
required