File size: 1,459 Bytes
3823cec
94ae908
f473faa
94ae908
 
 
8e91491
94ae908
480e376
b9a60ef
94ae908
 
3823cec
cec2c05
1cf2349
cec2c05
b39ade4
9da33d2
cec2c05
 
 
b39ade4
9da33d2
cec2c05
 
b39ade4
709ee65
9da33d2
 
709ee65
9da33d2
 
 
 
eb42e7a
 
9da33d2
 
ea694cd
9da33d2
 
a1370dc
f473faa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
title: Talk To Your Docs
emoji: 🌍
colorFrom: purple
colorTo: blue
sdk: gradio
sdk_version: 4.5.0
app_file: app.py
pinned: true
license: mit
---

<!-- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference -->

# Talk To Your Docs

## For users
You can use this app via Hugging Face where it is already deployed:<br/>
https://huggingface.co/spaces/arslan-ahmed/talk-to-your-docs


## For developers
Source code:<br/>
https://huggingface.co/spaces/arslan-ahmed/talk-to-your-docs/tree/main

## Create your personal bot (let people talk to your docs)
You can develop and deploy your own personal chatbot (similar to https://huggingface.co/spaces/arslan-ahmed/talk-to-arslan), with the following two commands:

docker pull arslan2k12/arslanbot (https://hub.docker.com/r/arslan2k12/arslanbot)<br/>
docker run --rm -d -p 7860:7860 --env-file ./.env arslan2k12/arslanbot


Contents of `.env` file:
```
TTYD_MODE=personalBot_John
#replace John with your name - use only alphabets, no special characters

GDRIVE_FOLDER_URL=https://drive.google.com/drive/folders/1ce1n1kleS1FOotdcu5joXeSRu_xnHjDt
# replace with your Google Drive folder URL that has all your knowledge base files (.pdf, .docs, .txt) - make sure this folder is publicly accessible (everyone with the link)

OPENAI_API_KEY=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
# your OpenAI API Key taken from https://platform.openai.com/account/api-keys
```