Spaces:
Sleeping
Sleeping
File size: 340 Bytes
1ba4533 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# 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
|