Update sidebar introduction with new professional bio and tool description
Browse files- src/app.py +23 -0
src/app.py
CHANGED
@@ -56,6 +56,29 @@ if not st.session_state.setup_complete:
|
|
56 |
|
57 |
# Sidebar with setup form
|
58 |
with st.sidebar:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
st.markdown("### 🎯 Simulation Setup")
|
60 |
|
61 |
with st.form("simulation_setup"):
|
|
|
56 |
|
57 |
# Sidebar with setup form
|
58 |
with st.sidebar:
|
59 |
+
st.markdown("""
|
60 |
+
### Welcome! 👋
|
61 |
+
|
62 |
+
Hi, I'm Jocelyn Skillman, LMHC — a clinical therapist, relational design ethicist, and creator of experimental tools that explore how AI can support (not replace) human care.
|
63 |
+
|
64 |
+
Each tool in this collection is thoughtfully designed to:
|
65 |
+
|
66 |
+
- Extend therapeutic support between sessions
|
67 |
+
- Model emotional safety and relational depth
|
68 |
+
- Help clients and clinicians rehearse courage, regulation, and repair
|
69 |
+
- Stay grounded in trauma-informed, developmentally sensitive frameworks
|
70 |
+
|
71 |
+
I use Claude (by Anthropic) as the primary language model for these tools, chosen for its relational tone, contextual nuance, and responsiveness to emotionally complex prompts.
|
72 |
+
|
73 |
+
As a practicing therapist, I imagine these resources being especially helpful to clinicians like myself — companions in the work of tending to others with insight, warmth, and care.
|
74 |
+
|
75 |
+
#### Connect With Me
|
76 |
+
🌐 [jocelynskillman.com](http://www.jocelynskillman.com)
|
77 |
+
📬 [Substack: Relational Code](https://jocelynskillmanlmhc.substack.com/)
|
78 |
+
|
79 |
+
---
|
80 |
+
""")
|
81 |
+
|
82 |
st.markdown("### 🎯 Simulation Setup")
|
83 |
|
84 |
with st.form("simulation_setup"):
|