Update: README
Browse files
README.md
CHANGED
|
@@ -286,7 +286,7 @@ for new_text in answer:
|
|
| 286 |
print(new_text, flush=True, end='')
|
| 287 |
|
| 288 |
# Second round chat, pass history context of multi-turn conversation
|
| 289 |
-
msgs.append({"role": "assistant", "content": [
|
| 290 |
msgs.append({"role": "user", "content": ["What should I pay attention to when traveling here?"]})
|
| 291 |
|
| 292 |
answer = model.chat(
|
|
|
|
| 286 |
print(new_text, flush=True, end='')
|
| 287 |
|
| 288 |
# Second round chat, pass history context of multi-turn conversation
|
| 289 |
+
msgs.append({"role": "assistant", "content": [generated_text]})
|
| 290 |
msgs.append({"role": "user", "content": ["What should I pay attention to when traveling here?"]})
|
| 291 |
|
| 292 |
answer = model.chat(
|