File size: 1,122 Bytes
1871f0d
 
 
 
41edc15
1871f0d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import gradio as gr
from transformers import AutoModelForCausalLM, AutoTokenizer

# Load LLaMA 3.2 model and tokenizer
model_name = "meta-llama/LLaMA-3.2"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)

# Define the inference function
def generate_text(prompt, max_length=100, temperature=0.7):
    inputs = tokenizer(prompt, return_tensors="pt")
    output = model.generate(inputs['input_ids'], max_length=max_length, temperature=temperature)
    return tokenizer.decode(output[0], skip_special_tokens=True)

# Create the Gradio interface
iface = gr.Interface(
    fn=generate_text,
    inputs=[
        gr.inputs.Textbox(label="Enter your prompt", placeholder="Start typing..."),
        gr.inputs.Slider(minimum=50, maximum=200, default=100, label="Max Length"),
        gr.inputs.Slider(minimum=0.1, maximum=1.0, default=0.7, label="Temperature"),
    ],
    outputs="text",
    title="LLaMA 3.2 Text Generator",
    description="Enter a prompt to generate text using the LLaMA 3.2 model.",
    theme="compact",
)

# Launch the Gradio app
iface.launch()