sitemap.mdx 252 B

12345678910111213
  1. ---
  2. title: '🗺️ Sitemap'
  3. ---
  4. Add all web pages from an xml-sitemap. Filters non-text files. Use the data_type as `sitemap`. Eg:
  5. ```python
  6. from embedchain import App
  7. app = App()
  8. app.add('https://example.com/sitemap.xml', data_type='sitemap')
  9. ```