docs-site.mdx 698 B

1234567891011121314
  1. ---
  2. title: '📚 Code documentation'
  3. ---
  4. To add any code documentation website as a loader, use the data_type as `docs_site`. Eg:
  5. ```python
  6. from embedchain import Pipeline as App
  7. app = App()
  8. app.add("https://docs.embedchain.ai/", data_type="docs_site")
  9. app.query("What is Embedchain?")
  10. # Answer: Embedchain is a platform that utilizes various components, including paid/proprietary ones, to provide what is believed to be the best configuration available. It uses LLM (Language Model) providers such as OpenAI, Anthpropic, Vertex_AI, GPT4ALL, Azure_OpenAI, LLAMA2, JINA, Ollama, Together and COHERE. Embedchain allows users to import and utilize these LLM providers for their applications.'
  11. ```