utazasi-robot / app.py
fandras's picture
Upload 3 files
bdc2e68 verified
raw
history blame contribute delete
343 Bytes
import gradio as gr
def predict(input_text):
return f"Ezt gondolom: {input_text}"
interface = gr.Interface(
fn=predict,
inputs="text",
outputs="text",
title="Utazási tanácsadó",
description="Adjon meg egy országot vagy kérdést, és segítek!"
)
if __name__ == "__main__":
interface.launch()