repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | title: '📄 Docx file' |
| #3 | --- |
| #4 | |
| #5 | ### Docx file |
| #6 | |
| #7 | To add any doc/docx file, use the data_type as `docx`. `docx` allows remote urls and conventional file paths. Eg: |
| #8 | |
| #9 | ```python |
| #10 | from embedchain import App |
| #11 | |
| #12 | app = App() |
| #13 | app.add('https://example.com/content/intro.docx', data_type="docx") |
| #14 | # Or add file using the local file path on your system |
| #15 | # app.add('content/intro.docx', data_type="docx") |
| #16 | |
| #17 | app.query("Summarize the docx data?") |
| #18 | ``` |
| #19 |