delete.mdx 314 B

12345678910111213141516171819
  1. ---
  2. title: 🗑 delete
  3. ---
  4. `delete_chat_history()` method allows you to delete all previous messages in a chat history.
  5. ## Usage
  6. ```python
  7. from embedchain import App
  8. app = App()
  9. app.add("https://www.forbes.com/profile/elon-musk")
  10. app.chat("What is the net worth of Elon Musk?")
  11. app.delete_chat_history()
  12. ```