from typing import List from awq.models import * class BasePrompter: def __init__(self, system_inst, role1, role2, sen_spliter = "\n", qa_spliter = "\n", decorator: List[str] = None): self.system_inst = system_inst # System Instruction self.role1 = role1 # The name of USER self.role2 = role2 # The name of AI-Assistant self.sen_spliter = sen_spliter # How to split system/user/assistant outputs self.qa_spliter = qa_spliter # How to split Q&A rounds self.decorator = decorator if self.decorator == None: self.starter = "" self.stopper = "" else: self.starter = self.decorator[0] self.stopper = self.decorator[1] if self.system_inst == None: self.template = self.starter + self.role1 + ": {prompt}" + self.stopper + self.sen_spliter \ + self.starter + self.role2 + ":" else: self.template = self.starter + self.system_inst + self.stopper + self.sen_spliter \ + self.starter + self.role1 + ": {prompt}" + self.stopper + self.sen_spliter \ + self.starter + self.role2 + ":" self.model_input = None def insert_prompt(self, input_prompt): self.model_input = self.template.format(prompt=input_prompt) def update_template(self, outputs): self.template = self.model_input + " " + outputs.strip() + self.stopper + self.qa_spliter \ + self.starter + self.role1 + ": {prompt}" + self.stopper + self.sen_spliter \ + self.starter + self.role2 + ":" self.model_input = None class OneShotBasePrompter(BasePrompter): def __init__(self, oneshot_example: List[str], # User prompt + Assistant responce system_inst, role1, role2, sen_spliter = "\n", qa_spliter = "\n", decorator: List[str] = None): super().__init__(system_inst, role1, role2, sen_spliter, qa_spliter) assert len(oneshot_example) == 2, "One-shot example must be a List of 2 strs." self.user_example = oneshot_example[0] self.assistant_example = oneshot_example[1] self.insert_prompt(self.user_example) self.update_template(self.assistant_example) class VicunaPrompter(BasePrompter): def __init__(self): system_inst = "A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions." role1 = "USER" role2 = "ASSISTANT" sen_spliter = " " qa_spliter = "" super().__init__(system_inst, role1, role2, sen_spliter, qa_spliter) class Llama2Prompter(OneShotBasePrompter): def __init__(self): system_inst = "A chat between a curious human and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the human's questions." role1 = "### Human" role2 = "### Assistant" sen_spliter = "\n" qa_spliter = "" user_example="Got any creative ideas for a 10 year old's birthday?" assistant_example = "Of course! Here are some creative ideas for a 10-year-old's birthday party:\n" \ + "1. Treasure Hunt: Organize a treasure hunt in your backyard or nearby park. Create clues and riddles for the kids to solve, leading them to hidden treasures and surprises.\n" \ + "2. Science Party: Plan a science-themed party where kids can engage in fun and interactive experiments. You can set up different stations with activities like making slime, erupting volcanoes, or creating simple chemical reactions.\n" \ + "3. Outdoor Movie Night: Set up a backyard movie night with a projector and a large screen or white sheet. Create a cozy seating area with blankets and pillows, and serve popcorn and snacks while the kids enjoy a favorite movie under the stars.\n" \ + "4. DIY Crafts Party: Arrange a craft party where kids can unleash their creativity. Provide a variety of craft supplies like beads, paints, and fabrics, and let them create their own unique masterpieces to take home as party favors.\n" \ + "5. Sports Olympics: Host a mini Olympics event with various sports and games. Set up different stations for activities like sack races, relay races, basketball shooting, and obstacle courses. Give out medals or certificates to the participants.\n" \ + "6. Cooking Party: Have a cooking-themed party where the kids can prepare their own mini pizzas, cupcakes, or cookies. Provide toppings, frosting, and decorating supplies, and let them get hands-on in the kitchen.\n" \ + "7. Superhero Training Camp: Create a superhero-themed party where the kids can engage in fun training activities. Set up an obstacle course, have them design their own superhero capes or masks, and organize superhero-themed games and challenges.\n" \ + "8. Outdoor Adventure: Plan an outdoor adventure party at a local park or nature reserve. Arrange activities like hiking, nature scavenger hunts, or a picnic with games. Encourage exploration and appreciation for the outdoors.\n" \ + "Remember to tailor the activities to the birthday child's interests and preferences. Have a great celebration!" oneshot_example = [user_example, assistant_example] super().__init__(oneshot_example, system_inst, role1, role2, sen_spliter, qa_spliter) class FalconSimplePrompter(BasePrompter): def __init__(self): system_inst = None role1 = "User" role2 = "Assistant" sen_spliter = "\n\n" qa_spliter = "\n\n" super().__init__(system_inst, role1, role2, sen_spliter, qa_spliter) class FalconPrompter(BasePrompter): def __init__(self): system_inst = "The following is a conversation between a highly knowledgeable and intelligent AI assistant, called Falcon, "\ + "and a human user, called User. In the following interactions, User and Falcon will converse in natural language, "\ + "and Falcon will answer User's questions. Falcon was built to be respectful, polite and inclusive. "\ + "Falcon was built by the Technology Innovation Institute in Abu Dhabi. "\ + "Falcon will never decline to answer a question, and always attempts to give an answer that User would be satisfied with. "\ + "It knows a lot, and always tells the truth. The conversation begins." role1 = "User" role2 = "Assistant" sen_spliter = "\n" qa_spliter = "\n" super().__init__(system_inst, role1, role2, sen_spliter, qa_spliter) class MPTPrompter(BasePrompter): def __init__(self): system_inst = "A chat between a curious human and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the human's questions." role1 = "### Human" role2 = "### Assistant" sen_spliter = "\n" qa_spliter = "\n" super().__init__(system_inst, role1, role2, sen_spliter, qa_spliter) class MPTChatPrompter(BasePrompter): def __init__(self): system_inst = "system\n" \ + "- You are a helpful assistant chatbot trained by MosaicML.\n" \ + "- You answer questions.\n" \ + "- You are excited to be able to help the user, but will refuse to do anything that could be considered harmful to the user.\n" \ + "- You are more than just an information source, you are also able to write poetry, short stories, and make jokes." role1 = "user" role2 = "assistant" sen_spliter = "\n" qa_spliter = "\n" decorator = ["<|im_start|>", "<|im_end|>"] super().__init__(system_inst, role1, role2, sen_spliter, qa_spliter, decorator) def get_prompter(model, model_path = ""): if isinstance(model, LlamaAWQForCausalLM): if "vicuna" in model_path: return VicunaPrompter() else: return Llama2Prompter() elif isinstance(model, FalconAWQForCausalLM): return FalconSimplePrompter() elif isinstance(model, MptAWQForCausalLM): if "mpt" and "chat" in model_path: return MPTChatPrompter() else: return MPTPrompter() else: raise ValueError(f"model type {model.model_type} is not supported") def get_stop_token_ids(model, model_path = ""): if isinstance(model, LlamaAWQForCausalLM): return [] elif isinstance(model, FalconAWQForCausalLM): return [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] elif isinstance(model, MptAWQForCausalLM): if "mpt" and "chat" in model_path: return [50278, 0] else: return [] else: raise ValueError(f"model type {model.model_type} is not supported")