feat: Add private ai example (#1101)

This commit is contained in:
Taranjeet Singh
2024-01-02 05:48:25 -08:00
committed by GitHub
parent dd9b72dc62
commit 2f6ba642c7
4 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
# Private AI
In this example, we will create a private AI using embedchain.
Private AI is useful when you want to chat with your data and you dont want to spend money and your data should stay on your machine.
## How to install
First create a virtual environment and install the requirements by running
```bash
pip install -r requirements.txt
```
## How to use
* Now open privateai.py file and change the line `app.add` to point to your directory or data source.
* If you want to add any other data type, you can browse the supported data types [here](https://docs.embedchain.ai/components/data-sources/overview)
* Now simply run the file by
```bash
python privateai.py
```
* Now you can enter and ask any questions from your data.