get_responses
Fetch a query's current status and submitted human responses instantly without waiting. Check progress on demand without blocking or retrying.
Instructions
One-shot read: fetch a query's current status and whatever human responses have been submitted so far, without waiting. Use this to check progress on demand, or after wait_for_responses reports "pending" if you want an immediate snapshot instead of polling again. Read-only, no cost, returns instantly (does not block or retry). Disambiguation: unlike wait_for_responses, this never delays or blocks waiting for more answers to arrive -- it just reports what exists right now, which may be fewer than required_responses.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query_id | Yes | The id returned by submit_query, identifying which query to read. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | ||
| responses | No | ||
| required_responses | No | ||
| completed_responses | No |