File size: 436 Bytes
461f009
 
83d4757
 
 
 
461f009
83d4757
 
 
 
 
461f009
83d4757
461f009
83d4757
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr

def hello(name):
    if not name:
        return "Bir isim gir!"
    return f"Merhaba {name}! Bu Space hiçbir model kullanmıyor."

with gr.Blocks() as demo:
    gr.Markdown("# 🔥 Sıfır Model Space\nTamamen bağımsız çalışır.")
    name = gr.Textbox(label="İsim gir")
    btn = gr.Button("Gönder")
    output = gr.Textbox(label="Cevap")

    btn.click(hello, inputs=name, outputs=output)

demo.launch()