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

def greet(name):
    return f"Merhaba {name}!"

# Basit bir Gradio uygulaması
demo = gr.Interface(
    fn=greet,
    inputs="text",
    outputs="text",
    title="Basit Test Uygulaması",
    description="Bu çalışıyorsa, sorun ana uygulamanın kodundadır."
)

demo.launch()