File size: 221 Bytes
a6a6f04
 
 
 
1
2
3
4
5
import gradio as gr, random, datetime
def answer(q):
    return f"({datetime.date.today()}) Gracias por tu pregunta. {random.choice(['¡Claro!', 'Por supuesto!'])}"
gr.ChatInterface(answer, title="IA de Cikode").launch()