rajesh1501's picture
Upload folder using huggingface_hub
a85c9b8 verified
raw
history blame contribute delete
274 Bytes
---
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")
```