Update openaoe.md

pull/605/head
fly2tomato 2024-01-17 19:26:27 +08:00 committed by GitHub
parent 69db8d4574
commit 003b3a5ed4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 8 deletions

View File

@ -34,13 +34,13 @@ docker pull openaoe:latest
2. or build a docker image 2. or build a docker image
```shell ```shell
git clone https://github.com/internlm/OpenAOE git clone https://github.com/internlm/OpenAOE
cd open-aoe cd OpenAOE
docker build . -f docker/Dockerfile -t openaoe:latest docker build . -f docker/Dockerfile -t openaoe:latest
``` ```
#### **Start** #### **Start**
```shell ```shell
docker run -p 10099:10099 -v /path/to/your/config-template.yaml:/app/config-template.yaml --name OpenAOE openaoe:latest docker run -p 10099:10099 -v /path/to/your/config-template.yaml:/app/config.yaml --name OpenAOE openaoe:latest
``` ```
### Run by source code ### Run by source code
@ -51,7 +51,7 @@ git clone https://github.com/internlm/OpenAOE
``` ```
2. [_optional_] build the frontend project when the frontend codes are changed 2. [_optional_] build the frontend project when the frontend codes are changed
```shell ```shell
cd open-aoe/openaoe/frontend cd OpenAOE/openaoe/frontend
npm install npm install
npm run build npm run build
``` ```
@ -59,13 +59,13 @@ npm run build
#### **Start** #### **Start**
```shell ```shell
cd open-aoe/openaoe cd OpenAOE
pip install -r backend/requirements.txt pip install -r openaoe/backend/requirements.txt
python -m main -f /path/to/your/config-template.yaml python -m openaoe.main -f /path/to/your/config-template.yaml
``` ```
> [!TIP] > [!TIP]
> `/path/to/your/config.yaml` is the configuration file loaded by OpenAOE at startup, > `/path/to/your/config-tempalte.yaml` is the configuration file loaded by OpenAOE at startup,
> which contains the relevant configuration information for the LLMs, > which contains the relevant configuration information for the LLMs,
> including: API URLs, AKSKs, Tokens, etc. > including: API URLs, AKSKs, Tokens, etc.
> A template configuration yaml file can be found in `openaoe/backend/config/config.yaml`. > A template configuration yaml file can be found in `openaoe/backend/config/config-template.yaml`.