reset.mdx 267 B

1234567891011121314151617
  1. ---
  2. title: 🔄 reset
  3. ---
  4. `reset()` method allows you to wipe the data from your RAG application and start from scratch.
  5. ## Usage
  6. ```python
  7. from embedchain import App
  8. app = App()
  9. app.add("https://www.forbes.com/profile/elon-musk")
  10. # Reset the app
  11. app.reset()
  12. ```