File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -92,8 +92,10 @@ mkdir -p ./opencompass/data/gta
92
92
huggingface-cli download --repo-type dataset --resume-download Jize1/GTA --local-dir ./opencompass/data/gta --local-dir-use-symlinks False
93
93
```
94
94
### Prepare Your Model
95
- 1 . Download the model weights. Take Qwen1.5-7B-Chat as an example.
95
+ 1 . Download the model weights.
96
96
```
97
+ # huggingface-cli download --resume-download hugging/face/repo/name --local-dir your/local/path --local-dir-use-symlinks False
98
+
97
99
mkdir -p models/qwen1.5-7b-chat
98
100
huggingface-cli download --resume-download Qwen/Qwen1.5-7B-Chat --local-dir ./models/qwen1.5-7b-chat --local-dir-use-symlinks False
99
101
```
@@ -110,14 +112,14 @@ pip install lmdeploy
110
112
lmdeploy serve api_server models/qwen1.5-7b-chat --server-port 12580 --model-name qwen1.5-7b-chat
111
113
```
112
114
### Deploy Tools
113
- 1 . Install AgentLego
115
+ 1 . Install AgentLego.
114
116
```
115
117
conda create -n agentlego python=3.10
116
118
conda activate agentlego
117
119
cd agentlego
118
120
pip install -e .
119
121
```
120
- 2 . Deploy tools for GTA benchmark
122
+ 2 . Deploy tools for GTA benchmark.
121
123
```
122
124
agentlego-server start --port 16181 --extra ./benchmark.py `cat benchmark_toollist.txt` --host 0.0.0.0
123
125
```
You can’t perform that action at this time.
0 commit comments