xml.mdx 280 B

1234567891011121314151617
  1. ---
  2. title: '🧾 XML file'
  3. ---
  4. ### XML file
  5. To add any xml file, use the data_type as `xml`. Eg:
  6. ```python
  7. from embedchain import App
  8. app = App()
  9. app.add('content/data.xml')
  10. ```
  11. Note: Only the text content of the xml file will be added to the app. The tags will be ignored.