File size: 535 Bytes
2fadb29
a4b8965
 
b545f08
ab3189d
 
2fadb29
933f185
 
 
 
2fadb29
933f185
2fadb29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
pipeline = pipeline("text-generation", model="isarth/distill_gpt2_story_generator")

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()