[New] Beehiiv loader (#963)

This commit is contained in:
Sidharth Mohanty
2023-12-08 03:41:56 +05:30
committed by GitHub
parent 4a5ed1dd8d
commit 51ebf3439b
8 changed files with 153 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
---
title: "🐝 Beehiiv"
---
To add any Beehiiv data sources to your app, just add the base url as the source and set the data_type to `beehiiv`.
```python
from embedchain import Pipeline as App
app = App()
# source: just add the base url and set the data_type to 'beehiiv'
app.add('https://aibreakfast.beehiiv.com', data_type='beehiiv')
app.query("How much is OpenAI paying developers?")
# Answer: OpenAI is aggressively recruiting Google's top AI researchers with offers ranging between $5 to $10 million annually, primarily in stock options.
```