# 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)