Files
t6_mem0/docs/data-sources/qna.mdx
2023-10-13 15:38:15 -07:00

13 lines
274 B
Plaintext

---
title: '❓💬 Queston and answer pair'
---
QnA pair is a local data type. To supply your own QnA pair, use the data_type as `qna_pair` and enter a tuple. Eg:
```python
from embedchain import App
app = App()
app.add(("Question", "Answer"), data_type="qna_pair")
```