Spaces:
Sleeping
Sleeping
| # src/ui/components/interaction_form.py | |
| import streamlit as st | |
| from typing import Optional, Dict | |
| class InteractionForm: | |
| """Component for interaction input form""" | |
| def show(self) -> Optional[Dict]: | |
| """Display interaction form""" | |
| with st.form("interaction_form"): | |
| # Form fields here | |
| pass | |