68 lines
2 KiB
Python
68 lines
2 KiB
Python
import os
|
|
from ctransformers import AutoModelForCausalLM, AutoConfig
|
|
|
|
|
|
def format_prompt(system_prompt, user_prompt):
|
|
"""format prompt based on: https://huggingface.co/spaces/mosaicml/mpt-30b-chat/blob/main/app.py"""
|
|
|
|
system_prompt = f"<|im_start|>system\n{system_prompt}<|im_end|>\n"
|
|
user_prompt = f"<|im_start|>user\n{user_prompt}<|im_end|>\n"
|
|
assistant_prompt = f"<|im_start|>assistant\n"
|
|
|
|
return f"{system_prompt}{user_prompt}{assistant_prompt}"
|
|
|
|
|
|
def format_output(user_prompt):
|
|
return f"[user]: {user_prompt}\n[assistant]:"
|
|
|
|
|
|
def generate(llm, system_prompt, user_prompt):
|
|
"""run model inference, will return a Generator if streaming is true"""
|
|
|
|
return llm(
|
|
format_prompt(
|
|
system_prompt,
|
|
user_prompt,
|
|
),
|
|
temperature=0.2,
|
|
top_k=0,
|
|
top_p=0.9,
|
|
repetition_penalty=1.0,
|
|
max_new_tokens=512, # adjust as needed
|
|
seed=42,
|
|
reset=True, # reset history (cache)
|
|
stream=True, # streaming per word/token
|
|
threads=os.cpu_count() / 2, # adjust for your CPU
|
|
stop=["<|im_end|>", "|<"],
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
config = AutoConfig.from_pretrained("mosaicml/mpt-30b-chat", context_length=8192)
|
|
llm = AutoModelForCausalLM.from_pretrained(
|
|
"models/mpt-30b-chat.ggmlv0.q4_1.bin",
|
|
model_type="mpt",
|
|
config=config,
|
|
)
|
|
|
|
system_prompt = "A conversation between a user and an LLM-based AI assistant. The assistant gives helpful and honest answers."
|
|
|
|
user_prompts = [
|
|
"What is 2 + 2?",
|
|
"What is 12 + 2?",
|
|
"What is 5 + 7?",
|
|
"What is 3 * 2?",
|
|
"What is 4 / 2?",
|
|
"Who was the first president of the US?",
|
|
"Can humans ever set foot on mars?",
|
|
]
|
|
|
|
for user_prompt in user_prompts:
|
|
generator = generate(llm, system_prompt, user_prompt)
|
|
print(format_output(user_prompt), end=" ", flush=True)
|
|
for word in generator:
|
|
print(word, end="", flush=True)
|
|
|
|
# print empty line
|
|
print("")
|
|
print(80 * "=")
|