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
When using locally deployed models, modify the configuration file `LangCoop/vlmdrive/vlm/hypes_yaml/api_vlm_drive_speed_curvature_qwen2.5-3b-awq.yaml`:
170
+
171
+
```yaml
172
+
api_model_name: Qwen/Qwen2.5-VL-3B-Instruct-AWQ
173
+
api_base_url: http://localhost:8000/v1
174
+
api_key: dummy_key
175
+
```
176
+
177
+
#### step5: Test Service
178
+
You can test if the service is running properly using the following command:
179
+
```bash
180
+
curl http://localhost:8000/v1/chat/completions \
181
+
-H "Content-Type: application/json" \
182
+
-d '{
183
+
"model": "Qwen/Qwen2.5-VL-3B-Instruct-AWQ",
184
+
"messages": [
185
+
{"role": "user", "content": "Hello, how are you?"}
0 commit comments