19 lines
330 B
Plaintext
19 lines
330 B
Plaintext
---
|
|
title: 🗑 delete
|
|
---
|
|
|
|
`delete_session_chat_history()` method allows you to delete all previous messages in a chat history.
|
|
|
|
## Usage
|
|
|
|
```python
|
|
from embedchain import App
|
|
|
|
app = App()
|
|
|
|
app.add("https://www.forbes.com/profile/elon-musk")
|
|
|
|
app.chat("What is the net worth of Elon Musk?")
|
|
|
|
app.delete_session_chat_history()
|
|
``` |