MCPcopy Create free account
hub / github.com/OpenBitSys/BitDistiller / __init__

Method __init__

inference/utils/prompt_templates.py:175–188  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

173
174class 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
191class MPTPrompter(BasePrompter):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected