File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ git checkout -b descriptive-name-for-your-changes
33
33
4 . ** Setup the development environment** : If you are working on the code, make sure to install the necessary dependencies for development
34
34
35
35
``` sh
36
- pip install -e " libs/kotaemon[dev]
36
+ pip install -e " libs/kotaemon[dev]"
37
37
```
38
38
39
39
5 . ** Make your changes** : Ensure your code follows the project's coding style and passes all test cases.
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ documents and developers who want to build their own RAG pipeline.
101
101
docker run \
102
102
-e GRADIO_SERVER_NAME=0.0.0.0 \
103
103
-e GRADIO_SERVER_PORT=7860 \
104
+ -v ./ktem_app_data:/app/ktem_app_data \
104
105
-p 7860:7860 -it --rm \
105
106
ghcr.io/cinnamon/kotaemon:main-lite
106
107
```
@@ -111,6 +112,7 @@ documents and developers who want to build their own RAG pipeline.
111
112
docker run \
112
113
-e GRADIO_SERVER_NAME=0.0.0.0 \
113
114
-e GRADIO_SERVER_PORT=7860 \
115
+ -v ./ktem_app_data:/app/ktem_app_data \
114
116
-p 7860:7860 -it --rm \
115
117
ghcr.io/cinnamon/kotaemon:main-full
116
118
` ` `
@@ -122,6 +124,7 @@ documents and developers who want to build their own RAG pipeline.
122
124
docker run \
123
125
-e GRADIO_SERVER_NAME=0.0.0.0 \
124
126
-e GRADIO_SERVER_PORT=7860 \
127
+ -v ./ktem_app_data:/app/ktem_app_data \
125
128
-p 7860:7860 -it --rm \
126
129
--platform linux/arm64 \
127
130
ghcr.io/cinnamon/kotaemon:main-lite
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ Download the `kotaemon-app.zip` file from the [latest release](https://github.co
28
28
- Linux: ` run_linux.sh ` . Please run the script using ` bash run_linux.sh ` in your terminal.
29
29
2 . After the installation, the installer will ask to launch the ktem's UI, answer to continue.
30
30
3 . If launched, the application will be open automatically in your browser.
31
+ 4 . Default login information is: ` username: admin / password: admin ` . You should change this credential right after the first login on the UI.
31
32
32
33
## Launch
33
34
Original file line number Diff line number Diff line change 5
5
- The tool uses Large Language Model (LLMs) to perform various tasks in a QA pipeline.
6
6
So, you need to provide the application with access to the LLMs you want
7
7
to use.
8
- - You only need to provide at least one. However, tt is recommended that you include all the LLMs
8
+ - You only need to provide at least one. However, it is recommended that you include all the LLMs
9
9
that you have access to, you will be able to switch between them while using the
10
10
application.
11
11
You can’t perform that action at this time.
0 commit comments