Spaces:
Sleeping
Sleeping
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() | |