Spaces:
Sleeping
Sleeping
import gradio as gr | |
def greet(name): | |
return f"Olá, {name}! Bem-vindo ao Monitor Diário." | |
# Interface Gradio | |
demo = gr.Interface( | |
fn=greet, | |
inputs="text", | |
outputs="text", | |
title="Monitor Diário", | |
description="Digite seu nome e receba uma saudação personalizada." | |
) | |
demo.launch() | |