|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import gradio as gr |
|
from transformers import AutoModelForCausalLM, AutoTokenizer |
|
|
|
|
|
|
|
MODEL_NAME = "prithivMLmods/Llama-Magpie-3.2-3B-Instruct" |
|
SYSTEM_MESSAGE = "you are an AI assistant, and your name is Llama-Magpie-3.2-3B-Instruct" |
|
|
|
|
|
|
|
def load_model_and_tokenizer(): |
|
""" |
|
Load the model and tokenizer from Hugging Face. |
|
""" |
|
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME) |
|
model = AutoModelForCausalLM.from_pretrained( |
|
MODEL_NAME, |
|
torch_dtype="auto", |
|
device_map="cpu" |
|
) |
|
return model, tokenizer |
|
|
|
|
|
model, tokenizer = load_model_and_tokenizer() |
|
|
|
|
|
|
|
def generate_response(prompt, chat_history, max_new_tokens, temperature): |
|
""" |
|
Generate a response from the model based on the user prompt and chat history. |
|
""" |
|
messages = [{"role": "system", "content": SYSTEM_MESSAGE}] + chat_history + [{"role": "user", "content": prompt}] |
|
text = tokenizer.apply_chat_template( |
|
messages, |
|
tokenize=False, |
|
add_generation_prompt=True |
|
) |
|
model_inputs = tokenizer([text], return_tensors="pt").to(model.device) |
|
|
|
generated_ids = model.generate( |
|
**model_inputs, |
|
max_new_tokens=max_new_tokens, |
|
do_sample=True, |
|
top_k=50, |
|
top_p=0.95, |
|
temperature=temperature, |
|
output_scores=True, |
|
return_dict_in_generate=True, |
|
return_legacy_cache=True |
|
) |
|
|
|
response = "" |
|
for token_id in generated_ids.sequences[0][len(model_inputs.input_ids[0]):]: |
|
response += tokenizer.decode([token_id], skip_special_tokens=True) |
|
yield chat_history + [{"role": "assistant", "content": response}] |
|
|
|
|
|
|
|
def clear_chat(): |
|
""" |
|
Clear the chat history. |
|
""" |
|
return [], "" |
|
|
|
|
|
|
|
def gradio_interface(): |
|
""" |
|
Create and launch the Gradio interface. |
|
""" |
|
with gr.Blocks() as demo: |
|
with gr.Row(): |
|
with gr.Column(scale=3): |
|
chatbot = gr.Chatbot(label="Chat with prithivMLmods/Llama-Magpie-3.2-3B-Instruct", type="messages") |
|
msg = gr.Textbox(label="User Input") |
|
with gr.Row(): |
|
submit = gr.Button("Submit") |
|
clear = gr.Button("Clear Chat") |
|
with gr.Column(scale=1): |
|
with gr.Group(): |
|
gr.Markdown("### Settings") |
|
max_new_tokens = gr.Slider(50, 1024, value=512, step=1, label="Max New Tokens") |
|
temperature = gr.Slider(0.1, 1.0, value=0.7, step=0.05, label="Temperature") |
|
|
|
def respond(message, chat_history, max_new_tokens, temperature): |
|
chat_history.append({"role": "user", "content": message}) |
|
response = "" |
|
for chunk in generate_response(message, chat_history, max_new_tokens, temperature): |
|
response = chunk[-1]["content"] |
|
yield chat_history, "" |
|
chat_history.append({"role": "assistant", "content": response}) |
|
yield chat_history, "" |
|
|
|
submit.click(respond, [msg, chatbot, max_new_tokens, temperature], [chatbot, msg]) |
|
msg.submit(respond, [msg, chatbot, max_new_tokens, temperature], [chatbot, msg]) |
|
clear.click(clear_chat, None, [chatbot, msg]) |
|
|
|
demo.launch() |
|
|
|
|
|
|
|
if __name__ == "__main__": |
|
gradio_interface() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|