Update README.md
Browse files
README.md
CHANGED
|
@@ -61,8 +61,8 @@ print(response)
|
|
| 61 |
```
|
| 62 |
|
| 63 |
默认的完整prompt如下所示:
|
| 64 |
-
|
| 65 |
-
prompt="""
|
| 66 |
You are a **Senior Multimodal Conversation Safety Auditor**, specializing in evaluating the safety of multi-turn, image-and-text interactions between a User and a Vision-Language Model (Assistant).
|
| 67 |
|
| 68 |
**Task**:
|
|
@@ -202,10 +202,9 @@ The conversation history is in JSON format and is enclosed in square brackets []
|
|
| 202 |
}}
|
| 203 |
```
|
| 204 |
</OUTPUT>
|
| 205 |
-
|
| 206 |
**Multi-turn Dialogue History**:
|
| 207 |
```json
|
| 208 |
{conversations}
|
| 209 |
-
|
| 210 |
"""
|
| 211 |
-
```
|
|
|
|
| 61 |
```
|
| 62 |
|
| 63 |
默认的完整prompt如下所示:
|
| 64 |
+
~~~python
|
| 65 |
+
prompt = """
|
| 66 |
You are a **Senior Multimodal Conversation Safety Auditor**, specializing in evaluating the safety of multi-turn, image-and-text interactions between a User and a Vision-Language Model (Assistant).
|
| 67 |
|
| 68 |
**Task**:
|
|
|
|
| 202 |
}}
|
| 203 |
```
|
| 204 |
</OUTPUT>
|
| 205 |
+
"""
|
| 206 |
**Multi-turn Dialogue History**:
|
| 207 |
```json
|
| 208 |
{conversations}
|
| 209 |
+
```
|
| 210 |
"""
|
|
|