Get chat history for a specific pipeline.
(pipeline_id: str, limit: int = 50)
| 48 | |
| 49 | @router.get("/history/{pipeline_id}") |
| 50 | async def get_chat_history(pipeline_id: str, limit: int = 50): |
| 51 | """Get chat history for a specific pipeline.""" |
| 52 | # TODO: Implement database query |
| 53 | return { |
| 54 | "pipeline_id": pipeline_id, |
| 55 | "messages": [], |
| 56 | "total": 0 |
| 57 | } |
| 58 | |
| 59 | @router.delete("/history/{pipeline_id}") |
| 60 | async def clear_chat_history(pipeline_id: str): |
nothing calls this directly
no outgoing calls
no test coverage detected