lifeops / app.py
hilarycc's picture
Update app.py
6c215a8 verified
raw
history blame contribute delete
345 Bytes
import gradio as gr
def planner(task):
return f"AI scheduled task: {task}"
demo = gr.Interface(
fn=planner,
inputs="text",
outputs="text",
title="Adaptive Personal Planning Environment",
description="RL-based AI assistant that learns user scheduling preferences."
)
demo.launch(server_name="0.0.0.0", server_port=7860)