Get Started
- โก Quickstart
- ๐ Introduction
- โ FAQs
- ๐ป Full stack
- ๐ Integrations
Components
- ๐งฉ Introduction
- ๐๏ธ Data sources
- ๐๏ธ Vector databases
- ๐ค Large language models (LLMs)
- ๐งฉ Embedding models
- ๐ฌ Evaluation
Community
Product
๐ Excel file
Excel file
To add any xlsx/xls file, use the data_type as excel_file
. excel_file
allows remote urls and conventional file paths. Eg:
Copy
from embedchain import App
app = App()
app.add('https://example.com/content/intro.xlsx', data_type="excel_file")
# Or add file using the local file path on your system
# app.add('content/intro.xls', data_type="excel_file")
app.query("Give brief information about data.")
Was this page helpful?
On this page
Assistant
Responses are generated using AI and may contain mistakes.