beehiiv.mdx 542 B

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