from vlmrun.client import VLMRun from vlmrun.client.types import FeedbackResponse client = VLMRun(api_key="<VLMRUN_API_KEY>") feedback_list = client.feedback.get("<request_id>")
{ "request_id": "<string>", "items": [ { "id": "<string>", "created_at": "2023-11-07T05:31:56Z", "response": {}, "notes": "<string>" } ] }
Get all feedbacks for a specific request by its ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
x >= 1
x >= 0
Successful Response
Response model for feedback operations.