-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock_data.py
32 lines (32 loc) · 1.21 KB
/
mock_data.py
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
mock_conversations = [
{
"sender": {"industry": "Lumber", "role": "worker"},
"receiver": {"industry": "Fishing", "role": "manager"},
"conversation_history": [
"How will the new policy affect our industry?",
"We might see changes in seasonal employment patterns.",
"Should we adjust our hiring practices?",
"Yes, we should plan for more flexible schedules.",
],
},
{
"sender": {"industry": "Tech", "role": "manager"},
"receiver": {"industry": "Banking", "role": "analyst"},
"conversation_history": [
"What's your analysis of the policy impact?",
"It could increase startup activity.",
"How should we prepare?",
"Let's focus on supporting new ventures.",
],
},
{
"sender": {"industry": "Insurance", "role": "director"},
"receiver": {"industry": "Transportation", "role": "manager"},
"conversation_history": [
"Will this affect our risk models?",
"We might need to adjust for changing patterns.",
"When should we implement changes?",
"Let's start planning next quarter.",
],
},
]