Clear chat history for a specific pipeline.
(pipeline_id: str)
| 58 | |
| 59 | @router.delete("/history/{pipeline_id}") |
| 60 | async def clear_chat_history(pipeline_id: str): |
| 61 | """Clear chat history for a specific pipeline.""" |
| 62 | # TODO: Implement database deletion |
| 63 | return {"message": "Chat history cleared successfully"} |
| 64 | |
| 65 | @router.post("/feedback") |
| 66 | async def submit_feedback( |
nothing calls this directly
no outgoing calls
no test coverage detected