File size: 364 Bytes
4594455 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # 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) |