File size: 957 Bytes
0e3d4c3
7d17050
 
 
a8b3714
7d17050
 
 
 
 
 
 
 
 
 
 
 
 
2fb6f31
7d17050
 
 
 
 
 
 
 
5f9fbcf
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
# UPDATED FROM : 3.8.2 to 4.0.0
from transformers import pipeline
import gradio as gr

pipe = pipeline('text-generation', model='daspartho/prompt-extend')

def extend_prompt(prompt):
    return pipe(prompt+',', num_return_sequences=1)[0]["generated_text"]

examples = [
            ['elon musk as thor'],
            ["giant dragon flying in the sky"],
            ['psychedelic liquids space'],
            ["a coconut laying on the beach"],
            ["peaceful village landscape"],
            ]

iface = gr.Interface(
    description = "Enter a main idea for a prompt, and the model will attempt to add suitable style cues.",
    article = "<p style='text-align: center'><a href='https://github.com/daspartho/prompt-extend' target='_blank'>Github</a></p>",
    fn=extend_prompt, 
    inputs=gr.Text(label="Type the prompt here"), 
    outputs=gr.TextArea(label='Extended prompt'),
    examples=examples,
    title="Prompt Extend"
    )

iface.launch()