rp-yu commited on
Commit
ce86925
·
1 Parent(s): cb05be2

update base file

Browse files
Files changed (2) hide show
  1. .gitignore +2 -0
  2. 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