Test / app.py
Adityadn's picture
Update app.py
af4cf72 verified
raw
history blame
418 Bytes
print("Wait..")
import gradio as gr
def analyze_text(text):
# Lakukan analisis atau pemrosesan teks di sini
if text != "":
result = f"Anda memasukkan teks: {text}"
else:
result = "MASUKKIN TEKS GOBLOK"
return result
iface = gr.Interface(
fn=analyze_text,
inputs=gr.Textbox(), # Menggunakan input textbox
outputs="text" # Menetapkan output ke tipe teks
)
iface.launch()