File size: 4,219 Bytes
10cbe63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
---

title: Mental Health Patient Environment
emoji: 🧠
colorFrom: blue
colorTo: purple
sdk: docker
app_port: 8000
tags:
  - openenv
  - reinforcement-learning
  - mental-health
  - simulation
base_path: /web
---


# MentalHealthPatientEnv - Hugging Face Space User Manual
## Overview

This Hugging Face Space hosts the **MentalHealthPatientEnv**, an interactive simulation environment designed for training and evaluating conversational AI agents in mental health scenarios.

The environment mimics a patient with dynamic psychological states, allowing agents to practice:

* Asking questions
* Building trust
* Detecting risk
* Making diagnoses

---

## How It Works

The system follows a reinforcement learning loop:

1. Agent sends an action (question, reflection, etc.)
2. Environment generates a patient response
3. Reward is calculated
4. Conversation continues until completion

---

## Available Actions

| Action     | Description             |
| ---------- | ----------------------- |
| ask_open   | Open-ended question     |

| ask_direct | Specific question       |
| ask_risk   | Safety-related question |

| reflect    | Show empathy            |

| diagnose   | Final diagnosis         |



---



## Input Format



Each step requires:



```

{

  "action_type": "ask_open",

  "message": "How have you been feeling lately?"

}

```



---



## Output Format



The environment returns:



```

{

  "response": "I’ve just been feeling really tired lately...",

  "clarity": 0.72,

  "emotional_state": "sad",
  "trust_level": 0.45,

  "risk_flag": false,
  "reward": 0.63,
  "done": false
}
```



---



## Difficulty Levels



### Easy



* Focus: Correct diagnosis



### Medium



* Focus: Questioning strategy



### Hard



* Focus:



  * Empathy

  * Safety (risk detection)

  * Depth of conversation



---



## Scoring System



* Rewards are normalized between **0 and 1**

* Final score = average reward over steps



| Score Range | Meaning           |

| ----------- | ----------------- |

| 0.8 – 1.0   | Excellent         |

| 0.5 – 0.8   | Good              |

| < 0.5       | Needs improvement |



---



## API Usage (HF Space Endpoint)



### Base URL



```
https://<your-space-name>.hf.space
```



### Health Check



```
GET /health
```



### Reset Environment



```
POST /reset
```



### Step



```
POST /step
```



---



## LLM Configuration (IMPORTANT)



The patient response is generated using an external LLM.



### File Location



```
server/response_generator.py

```



---



### Change Model



Find:



```

"model": "liquid/lfm-2.5-1.2b-instruct:free"

```



Replace with any supported model:



* `liquid/lfm-2.5-1.2b-instruct:free` (fastest)

* `minimax/minimax-m2.5:free`

* `google/gemma-4-31b-it:free` (slower)



---



### Change API Provider



Find:



```

OPENROUTER_URL = "https://openrouter.ai/api/v1/chat/completions"
```



You can replace it with:



* Custom API endpoint

* Proxy server



---



### API Key Setup (HF Space)



Go to:



**Space Settings → Variables**



Add:



```
OPENROUTER_API_KEY=your_key_here
```



---



## Performance Tips



To improve speed:



* Use smaller models

* Reduce `max_tokens` to 50

* Use hybrid responses (rule-based + LLM)



Example:



```
if action_type == "ask_open":
    return "I’m not sure… just feeling low."

```


---

## Example Interaction

### Step 1

Input:

```

ask_open | How are you feeling?

```

Output:

```

"I don’t really know… just tired all the time."

```

---

## Notes

* Do not hardcode API keys
* Always use environment variables
* Ensure dataset is included

---

## Troubleshooting

| Issue         | Solution          |
| ------------- | ----------------- |
| Slow response | Use smaller model |
| No response   | Check API key     |
| Import errors | Fix PYTHONPATH    |

---

## Conclusion

This HF Space provides a flexible platform to test and evaluate conversational AI in mental health scenarios.

You can customize:

* LLM models
* Reward functions
* Patient behavior

for research, experimentation, or production use.