Berlin_roomates / app.py
subba5076's picture
Upload 3 files
4594455 verified
raw
history blame contribute delete
364 Bytes
# app.py
import streamlit as st
from agent_core import run_agent
st.title("🎉 Berlin Roommate Party Planner AI")
user_input = st.text_input("Ask something:")
if st.button("Run"):
if user_input.strip():
with st.spinner("Thinking..."):
result = run_agent(user_input)
st.write("### Output")
st.write(result)