36 lines
917 B
Plaintext
36 lines
917 B
Plaintext
---
|
|
title: '🚀 Quickstart'
|
|
description: '💡 Start building LLM powered bots under 30 seconds'
|
|
---
|
|
|
|
Install embedchain python package:
|
|
|
|
```bash
|
|
pip install --upgrade embedchain
|
|
```
|
|
|
|
Creating a chatbot involves 3 steps:
|
|
|
|
- ⚙️ Import the App instance
|
|
- 🗃️ Add Dataset
|
|
- 💬 Query or Chat on the dataset and get answers (Interface Types)
|
|
|
|
Run your first bot in python using the following code. Make sure to set the `OPENAI_API_KEY` 🔑 environment variable in the code.
|
|
|
|
```python
|
|
import os
|
|
|
|
from embedchain import App
|
|
|
|
os.environ["OPENAI_API_KEY"] = "xxx"
|
|
elon_musk_bot = App()
|
|
|
|
# Embed Online Resources
|
|
elon_musk_bot.add("https://en.wikipedia.org/wiki/Elon_Musk")
|
|
elon_musk_bot.add("https://www.tesla.com/elon-musk")
|
|
|
|
response = elon_musk_bot.query("How many companies does Elon Musk run?")
|
|
print(response)
|
|
# Answer: 'Elon Musk runs four companies: Tesla, SpaceX, Neuralink, and The Boring Company.'
|
|
```
|