You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/installation.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ The system comprises seven main components, here are their relationships and the
17
17
-**Widget**<!-- (<a href="/en/latest/modules/installations/index.html#widget-installation">local install</a>) --> is a JS browser client application from which the user interacts with the bot.
18
18
19
19
20
-
-**Admin** is a JS browser client application to manage the chatbots, datasets, retriever, models, RAG configs, etc...
20
+
-**Admin** is a JS browser client application to manage the chatbots, knowledge bases, retrievers, models, configs, etc...
21
21
22
22
23
23
-**Ray workers** are used to run distributed inference on the models.
@@ -26,7 +26,7 @@ The system comprises seven main components, here are their relationships and the
26
26
-**Channel layer** (Redis) is used to communicate through WebSockets between the back-end and the SDK, admin and widget.
27
27
28
28
29
-
-**Relational Database** (PostgreSQL) is used to store all the data related to the chatbots, datasets, retriever, models, RAG configs, etc...
29
+
-**Relational Database** (PostgreSQL) is used to store all the data related to the chatbots, knowledge bases, retrievers, models, configs, etc...
30
30
31
31
### Docker
32
32
@@ -101,8 +101,6 @@ To manage the chatbot and view the model configuration we provided, go to:
101
101
102
102
## Deeper into ChatFAQ
103
103
104
-
If you want to use your own dataset, you can check the [Dataset Configuration](./modules/configuration/index.html#knowledge-base) documentation.
105
-
106
-
If you want to learn how to configure your own RAG (LLM model, retriever model, prompt configuration, etc...) you can check the [RAG Configuration](./modules/configuration/index.html#rag-config) documentation.
104
+
If you want to use your own knowledge base, you can check the [Knowledge Base Configuration](./modules/configuration/index.html#knowledge-base) documentation.
107
105
108
106
If you want to learn how to use the SDK, so you can create your own chatbot behavior, you can check the [SDK](./modules/sdk/index.md) documentation.
Copy file name to clipboardExpand all lines: doc/source/modules/configuration/index.md
+38-3Lines changed: 38 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Here you can set up multiple AI components that can be used to compose AI pipeli
32
32
- You can create a simple chatbot using only a LLM.
33
33
- You can create any kind of agent using the ChatFAQ SDK, given that the backend supports tool use.
34
34
35
-
ChatFAQ provide in its fixtures a default configuration for each of these components except for the Knowledge Base and the RAG Config. You can apply the fixtures by simply running the following command from the `back` directory:
35
+
ChatFAQ provide in its fixtures a default configuration for each of these components. You can apply the fixtures by simply running the following command from the `back` directory:
36
36
37
37
```bash
38
38
make apply_fixtures
@@ -327,7 +327,7 @@ from chatfaq_sdk import ChatFAQSDK
0 commit comments