MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / clear_chat_history

Function clear_chat_history

backend/app/api/chat.py:60–63  ·  view source on GitHub ↗

Clear chat history for a specific pipeline.

(pipeline_id: str)

Source from the content-addressed store, hash-verified

58
59@router.delete("/history/{pipeline_id}")
60async 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")
66async def submit_feedback(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected