Skip to content

Commit

Permalink
update readme (LazyAGI#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
wzh1994 authored Jun 18, 2024
1 parent d68bfeb commit 5a37b62
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.ENG.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,10 @@ print(m({'query': 'Please help me write an article about the application of arti
```bash
git clone [email protected]:LazyAGI/LazyLLM.git
cd LazyLLM
pip install -c requirements.txt
pip install -r requirements.txt
```

`pip install -c requirements.full.txt` is used when you want to finetune, deploy or build your rag application.
`pip install -r requirements.full.txt` is used when you want to finetune, deploy or build your rag application.

### from pip

Expand All @@ -182,7 +182,7 @@ pip install lazyllm

Install lazyllm and all dependencies, you can use:
```bash
pip install lazyllm-full
pip install lazyllm[full]
```

## Design concept
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ print(m({'query':'请帮我写一篇关于人工智能在医疗领域应用的
```bash
git clone [email protected]:LazyAGI/LazyLLM.git
cd LazyLLM
pip install -c requirements.txt
pip install -r requirements.txt
```

如果想进行微调、推理部署或搭建rag应用等,则需使用 `pip install -c requirements.full.txt`
如果想进行微调、推理部署或搭建rag应用等,则需使用 `pip install -r requirements.full.txt`

### pip安装

Expand All @@ -177,7 +177,7 @@ pip install lazyllm

安装lazyllm及所有的依赖,可以使用
```bash
pip install lazyllm-full
pip install lazyllm[full]
```

## 六、设计理念
Expand Down
6 changes: 3 additions & 3 deletions docs/source/best_practice/module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -212,17 +212,17 @@ LazyLLM内置模块
--------------------

TrainableModule
^^^^^^^^^^^^^^^^^^^^^
+++++++++++++++++++++

API文档参考 :py:class:`lazyllm.module.TrainableModule`

ServerModule
^^^^^^^^^^^^^^^^^^^^^
+++++++++++++++++++++

API文档参考 :py:class:`lazyllm.module.ServerModule`

ActionModule
^^^^^^^^^^^^^^^^^^^^^
+++++++++++++++++++++

API文档参考 :py:class:`lazyllm.module.ServerModule`

0 comments on commit 5a37b62

Please sign in to comment.