update base file
Browse files- .gitignore +2 -0
- conversation.py +1 -1
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
__pycache__
|
2 |
+
logs
|
conversation.py
CHANGED
@@ -47,7 +47,7 @@ class Conversation:
|
|
47 |
Conversation.ASSISTANT,
|
48 |
]
|
49 |
)
|
50 |
-
mandatory_system_message = ""
|
51 |
system_message: str = "You are a helpful assistant."
|
52 |
messages: List[Dict[str, Any]] = field(default_factory=lambda: [])
|
53 |
max_image_limit: int = 2
|
|
|
47 |
Conversation.ASSISTANT,
|
48 |
]
|
49 |
)
|
50 |
+
mandatory_system_message = "You are Dimple. The first Discrete Diffusion Multimodal Large Language Model."
|
51 |
system_message: str = "You are a helpful assistant."
|
52 |
messages: List[Dict[str, Any]] = field(default_factory=lambda: [])
|
53 |
max_image_limit: int = 2
|