embedchain_ai.mdx 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. title: 'Embedchain.ai'
  3. description: 'Deploy your RAG application to embedchain.ai platform'
  4. ---
  5. ## Deploy on Embedchain Platform
  6. Embedchain enables developers to deploy their LLM-powered apps in production using the [Embedchain platform](https://app.embedchain.ai). The platform offers free access to context on your data through its REST API. Once the pipeline is deployed, you can update your data sources anytime after deployment.
  7. See the example below on how to use the deploy your app (for free):
  8. ```python
  9. from embedchain import App
  10. # Initialize app
  11. app = App()
  12. # Add data source
  13. app.add("https://www.forbes.com/profile/elon-musk")
  14. # Deploy your pipeline to Embedchain Platform
  15. app.deploy()
  16. # 🔑 Enter your Embedchain API key. You can find the API key at https://app.embedchain.ai/settings/keys/
  17. # ec-xxxxxx
  18. # 🛠️ Creating pipeline on the platform...
  19. # 🎉🎉🎉 Pipeline created successfully! View your pipeline: https://app.embedchain.ai/pipelines/xxxxx
  20. # 🛠️ Adding data to your pipeline...
  21. # ✅ Data of type: web_page, value: https://www.forbes.com/profile/elon-musk added successfully.
  22. ```
  23. ## Seeking help?
  24. If you run into issues with deployment, please feel free to reach out to us via any of the following methods:
  25. <Snippet file="get-help.mdx" />