Embedchain enables developers to deploy their LLM-powered apps in production using the Embedchain platform. 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.See the example below on how to use the deploy your app (for free):
Copy
Ask AI
from embedchain import App# Initialize appapp = App()# Add data sourceapp.add("https://www.forbes.com/profile/elon-musk")# Deploy your pipeline to Embedchain Platformapp.deploy()# ๐ Enter your Embedchain API key. You can find the API key at https://app.embedchain.ai/settings/keys/# ec-xxxxxx# ๐ ๏ธ Creating pipeline on the platform...# ๐๐๐ Pipeline created successfully! View your pipeline: https://app.embedchain.ai/pipelines/xxxxx# ๐ ๏ธ Adding data to your pipeline...# โ Data of type: web_page, value: https://www.forbes.com/profile/elon-musk added successfully.