Submit feedback for a specific message.
(
pipeline_id: str,
message_id: str,
feedback: str,
rating: Optional[int] = None
)
| 64 | |
| 65 | @router.post("/feedback") |
| 66 | async def submit_feedback( |
| 67 | pipeline_id: str, |
| 68 | message_id: str, |
| 69 | feedback: str, |
| 70 | rating: Optional[int] = None |
| 71 | ): |
| 72 | """Submit feedback for a specific message.""" |
| 73 | # TODO: Store feedback in database |
| 74 | return {"message": "Feedback submitted successfully"} |
nothing calls this directly
no outgoing calls
no test coverage detected