Update llava/conversation.py
Browse files- llava/conversation.py +3 -1
llava/conversation.py
CHANGED
@@ -405,7 +405,9 @@ conv_llava_v1_mmtag = Conversation(
|
|
405 |
)
|
406 |
|
407 |
conv_mistral_instruct = Conversation(
|
408 |
-
system=""
|
|
|
|
|
409 |
roles=("USER", "ASSISTANT"),
|
410 |
version="llama_v2",
|
411 |
messages=(),
|
|
|
405 |
)
|
406 |
|
407 |
conv_mistral_instruct = Conversation(
|
408 |
+
system="You are a helpful language and vision assistant. "
|
409 |
+
"You are able to understand the visual content that the user provides, "
|
410 |
+
"and assist the user with a variety of tasks using natural language.",
|
411 |
roles=("USER", "ASSISTANT"),
|
412 |
version="llama_v2",
|
413 |
messages=(),
|