Files
t6_mem0/docs/api-reference/pipeline/reset.mdx
2023-12-15 17:02:50 +05:30

17 lines
279 B
Plaintext

---
title: 🔄 reset
---
`reset()` method allows you to wipe the data from your RAG application and start from scratch.
## Usage
```python
from embedchain import Pipeline as App
app = App()
app.add("https://www.forbes.com/profile/elon-musk")
# Reset the app
app.reset()
```