File size: 520 Bytes
12ffa67 cd46991 12ffa67 cd46991 12ffa67 cd46991 34c3077 cd46991 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from transformers import pipeline
import gradio as gr
pipe = pipeline("text-generation", model="unsloth/Llama-3.2-1B-Instruct")
def generate_text(prompt):
response = pipe(prompt, max_length=512, num_return_sequences=3)
return response[0]['generated_text']
iface = gr.Interface(fn=generate_text, inputs="text", outputs="text",
title="Text Generation with LLaMA-3.2",
description="Enter a prompt to generate text using the LLaMA-3.2 model.")
iface.launch(share=True)
|