File size: 774 Bytes
f7aaf13
 
 
 
 
f85ee74
f7aaf13
f85ee74
 
 
 
 
f7aaf13
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr

dictionary = {
     'A palyful man': "- A young man in his mid-20s to early 30s, Has a playful and energetic demeanor, with a big smile always on his face, Has a lean and athletic build, Has messy, yet stylish hair that is always styled in a way that makes it look like he just got out of bed, Has a playful twinkle in his eye, and a hint of mischief in his expression, Wears casual, comfortable clothing that is both stylish and practical,Often seen with a bag or backpack, as if he's always ready for an adventure"
    }

def chatgpt(text):
    try:
        output = dictionary[text]
    except:
        output = "Please try in: https://chat.openai.com"
    return output

iface = gr.Interface(fn=chatgpt, inputs="text", outputs="text")
iface.launch()