| 173 | |
| 174 | class FalconPrompter(BasePrompter): |
| 175 | def __init__(self): |
| 176 | system_inst = ( |
| 177 | "The following is a conversation between a highly knowledgeable and intelligent AI assistant, called Falcon, " |
| 178 | + "and a human user, called User. In the following interactions, User and Falcon will converse in natural language, " |
| 179 | + "and Falcon will answer User's questions. Falcon was built to be respectful, polite and inclusive. " |
| 180 | + "Falcon was built by the Technology Innovation Institute in Abu Dhabi. " |
| 181 | + "Falcon will never decline to answer a question, and always attempts to give an answer that User would be satisfied with. " |
| 182 | + "It knows a lot, and always tells the truth. The conversation begins." |
| 183 | ) |
| 184 | role1 = "User" |
| 185 | role2 = "Assistant" |
| 186 | sen_spliter = "\n" |
| 187 | qa_spliter = "\n" |
| 188 | super().__init__(system_inst, role1, role2, sen_spliter, qa_spliter) |
| 189 | |
| 190 | |
| 191 | class MPTPrompter(BasePrompter): |