File size: 449 Bytes
2fadb29
a4b8965
 
b545f08
 
2fadb29
933f185
 
 
 
2fadb29
933f185
2fadb29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr
from transformers import pipeline

# pipeline = pipeline("text-generation")
pipeline = pipeline("text-generation", model="TheBloke/WizardLM-Uncensored-SuperCOT-StoryTelling-30B-SuperHOT-8K-GPTQ", trust_remote_code=True)

def text_generate(input_text):
    result = pipeline(input_text)
    result = result[0]["generated_text"]
    return result

demo = gr.Interface(fn=text_generate, inputs="text", outputs="text")
demo.launch()