File size: 524 Bytes
f720cbd
 
 
f100609
b17dcb2
 
 
 
461c00c
 
3e96643
b17dcb2
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="somosnlp/Phi-2-LenguajeClaro", trust_remote_code=True)

import gradio as gr

def eval_text (text):
    new_prompt = f"""###System: Lee el siguiente texto y hazlo más claro: ###Texto: {text}  ###Texto aclarado: """
    result = pipe(new_prompt, max_length=200)
    return (result[0]['generated_text'])

demo = gr.Interface(fn=eval_text, inputs="text", outputs="text", title="Lenguaje Claro") 

demo.launch()