Spaces:
No application file
No application file
File size: 274 Bytes
a85c9b8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
---
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")
``` |