1234567891011121314151617 |
- ---
- title: '📰 PDF file'
- ---
- To add any pdf file, use the data_type as `pdf_file`. Eg:
- ```python
- from embedchain import Pipeline as App
- app = App()
- app.add('https://arxiv.org/pdf/1706.03762.pdf', data_type='pdf_file')
- app.query("What is the paper 'attention is all you need' about?")
- # Answer: The paper "Attention Is All You Need" proposes a new network architecture called the Transformer, which is based solely on attention mechanisms. It suggests moving away from complex recurrent or convolutional neural networks and instead using attention mechanisms to connect the encoder and decoder in sequence transduction models.
- ```
- Note that we do not support password protected pdfs.
|