You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
660 B
12 lines
660 B
class BotStrings(): |
|
def __init__(self): |
|
self.first_instructions = """ |
|
Hi! I'm a chatbot from UNMAS (United Nations Mine Action Service). Use me to report a suspicious object that you think might me a landmine or an explosive remnant of war. |
|
""".strip() |
|
|
|
self.chatbot_system_prompt = 'You are an assistant chatting with a user.' #TODO Add instructions for how to answer and what not to answer. |
|
self.checker_bot_system_prompt='A user is chatting with an assistant. You are checking the messages.' |
|
self.general_bot_system_prompt='You are a bot used for finding information.' |
|
|
|
|
|
botstrings = BotStrings() |