Spaces:
Running
Running
Merge pull request #3 from edubotics-ai/XThomasBU-patch-1
Browse files
README.md
CHANGED
@@ -1,7 +1,37 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
```bash
|
4 |
pip install edubotics-core
|
5 |
```
|
6 |
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Edubotics-Core Setup
|
2 |
+
|
3 |
+
This repository is an example of how to build an application that incorporates the `edubotics-core` package. We suggest you fork this repository and
|
4 |
+
then adapt it your application domain.
|
5 |
+
|
6 |
+
## Installation
|
7 |
+
|
8 |
+
To install `edubotics-core`, run the following command:
|
9 |
|
10 |
```bash
|
11 |
pip install edubotics-core
|
12 |
```
|
13 |
|
14 |
+
## Documentation
|
15 |
+
|
16 |
+
For detailed instructions on the initial setup (setting up .env file, required Keys, etc), please refer to our [documentation](http://docs.edubotics.ai).
|
17 |
+
|
18 |
+
## Templates
|
19 |
+
|
20 |
+
To get started, check out the templates located in the `apps/` directory.
|
21 |
+
|
22 |
+
## Config Files
|
23 |
+
|
24 |
+
- **config.yml**: This file controls various chatbot settings such as the default vector store and architecture type.
|
25 |
+
- **project_config.yml**: Use this file to customize settings specific to your project.
|
26 |
+
|
27 |
+
## Create Your Vectorstore
|
28 |
+
|
29 |
+
Once you have set up your config files, you can create your vector store by running:
|
30 |
+
|
31 |
+
```bash
|
32 |
+
vectorstore_creator --config_file path_to_your_config.yml --project_config_file path_to_your_project_config.yml
|
33 |
+
```
|
34 |
+
|
35 |
+
## Start Your App
|
36 |
+
|
37 |
+
After creating your vector store, you can start up your app and get going!
|