fix: close unclosed Bearer token quotes in curl examples (8 lines)

This commit is contained in:
yumoqing 2026-06-02 17:45:17 +08:00
parent 4dc0603d5f
commit e64e08da6f

View File

@ -840,7 +840,7 @@ GET /llmage/v1/tasks?taskid=task_xxx
```bash
curl 'https://token.opencomputing.cn/llmage/v1/tasks?taskid=task_xxx' \
-H 'Authorization: Bearer ***
-H 'Authorization: Bearer ***'
```
---
@ -881,11 +881,11 @@ GET /llmage/v1/models
```bash
# 获取全部模型
curl 'https://token.opencomputing.cn/llmage/v1/models' \
-H 'Authorization: Bearer ***
-H 'Authorization: Bearer ***'
# 按目录过滤(如只获取文生视频模型)
curl 'https://token.opencomputing.cn/llmage/v1/models?catelogid=t2v' \
-H 'Authorization: Bearer ***
-H 'Authorization: Bearer ***'
```
---
@ -944,15 +944,15 @@ GET /llmage/v1/models/catelog?catelogid=t2v&exclude_id=abc123
```bash
# 获取文生文模型列表
curl 'https://token.opencomputing.cn/llmage/v1/models/catelog?catelogid=t2t' \
-H 'Authorization: Bearer ***
-H 'Authorization: Bearer ***'
# 获取文生视频模型列表(排除某模型)
curl 'https://token.opencomputing.cn/llmage/v1/models/catelog?catelogid=t2v&exclude_id=abc123' \
-H 'Authorization: Bearer ***
-H 'Authorization: Bearer ***'
# 获取文生图模型列表
curl 'https://token.opencomputing.cn/llmage/v1/models/catelog?catelogid=t2i' \
-H 'Authorization: Bearer ***
-H 'Authorization: Bearer ***'
```
---
@ -1066,7 +1066,7 @@ curl -X POST 'https://token.opencomputing.cn/reallife_asset/api/rl_verify.dspy'
```bash
curl -X POST 'https://token.opencomputing.cn/reallife_asset/api/rl_query_groups.dspy' \
-H 'Authorization: Bearer ***
-H 'Authorization: Bearer ***'
```
### 响应示例
@ -1300,7 +1300,7 @@ curl -X POST 'https://token.opencomputing.cn/reallife_asset/api/rl_virtual_creat
```bash
curl -X POST 'https://token.opencomputing.cn/reallife_asset/api/rl_virtual_groups.dspy' \
-H 'Authorization: Bearer ***
-H 'Authorization: Bearer ***'
```
### 响应示例