excel-file.mdx 464 B

123456789101112131415161718
  1. ---
  2. title: '📄 Excel file'
  3. ---
  4. ### Excel file
  5. To add any xlsx/xls file, use the data_type as `excel_file`. `excel_file` allows remote urls and conventional file paths. Eg:
  6. ```python
  7. from embedchain import App
  8. app = App()
  9. app.add('https://example.com/content/intro.xlsx', data_type="excel_file")
  10. # Or add file using the local file path on your system
  11. # app.add('content/intro.xls', data_type="excel_file")
  12. app.query("Give brief information about data.")
  13. ```