forked from microsoft/semantic-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChatThread.ts
149 lines (147 loc) · 4.65 KB
/
ChatThread.ts
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
// Copyright (c) Microsoft. All rights reserved.
export interface IChatMessage {
content: string;
author: string;
timestamp: string;
mine: boolean;
}
export const ChatThread: IChatMessage[] = [
{
content: 'Hi, do you know much about cars?',
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:15 PM',
mine: true,
},
{
content: 'Yeah, I love cars! What do you want to know?',
author: 'John Doe',
timestamp: 'Yesterday, 10:20 PM',
mine: false,
},
{
content: "I'm thinking of buying a new car, any recommendations?",
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:25 PM',
mine: true,
},
{
content:
"If you're looking for a sports car, I'd recommend the Porsche 911. If you want something more practical, the Honda Civic is a great option.",
author: 'John Doe',
timestamp: 'Yesterday, 10:30 PM',
mine: false,
},
{
content: "I'm leaning towards something more eco-friendly, any suggestions?",
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:35 PM',
mine: true,
},
{
content:
"The Toyota Prius is a great hybrid option. The Nissan Leaf is an all-electric car that's also a good choice.",
author: 'John Doe',
timestamp: 'Yesterday, 10:40 PM',
mine: false,
},
{
content:
"Thanks for the suggestions, I'll take an action item for myself to go to the Nissan dealer this weekend.",
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:45 PM',
mine: true,
},
{
content: 'No problem, let me know if you have any other questions.',
author: 'John Doe',
timestamp: 'Yesterday, 10:50 PM',
mine: false,
},
{
content: 'Actually, I do have one more question. How do you feel about electric cars?',
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:55 PM',
mine: true,
},
{
content:
"I think they're the future of transportation. They're more environmentally friendly and can be cheaper to operate in the long run.",
author: 'John Doe',
timestamp: 'Yesterday, 11:00 PM',
mine: false,
},
{
content: 'I agree, I am thinking about going for an electric car. Thanks for your help',
author: 'Cecil Folk',
timestamp: 'Yesterday, 11:05 PM',
mine: true,
},
{
content: "You're welcome, happy car shopping!",
author: 'John Doe',
timestamp: 'Yesterday, 11:10 PM',
mine: false,
},
{
content: 'Hey John, have you ever seen a penguin in the wild?',
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:15 PM',
mine: true,
},
{
content: "No, I haven't. Have you?",
author: 'John Doe',
timestamp: 'Yesterday, 10:20 PM',
mine: false,
},
{
content: "Yeah, I saw some while I was on a trip to Antarctica. They're amazing swimmers.",
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:25 PM',
mine: true,
},
{
content:
"Wow, that must have been an incredible experience. That reminds me, I need to book that Antarctica trip for next summer. I've only seen them at the zoo.",
author: 'John Doe',
timestamp: 'Yesterday, 10:30 PM',
mine: false,
},
{
content: 'It was definitely a trip of a lifetime. Speaking of birds, have you ever heard a lyrebird?',
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:35 PM',
mine: true,
},
{
content: "No, I haven't. What's special about them?",
author: 'John Doe',
timestamp: 'Yesterday, 10:40 PM',
mine: false,
},
{
content:
"They're known for their incredible mimicry abilities. They can imitate all kinds of sounds, including other birds and even machinery.",
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:45 PM',
mine: true,
},
{
content: "That's amazing! Let's plan on meeting up next weekend to go bird watching.",
author: 'John Doe',
timestamp: 'Yesterday, 10:50 PM',
mine: false,
},
{
content: "I highly recommend looking up some videos of them online. They're truly one of a kind.",
author: 'Cecil Folk',
timestamp: 'Yesterday, 10:55 PM',
mine: true,
},
{
content: "Thanks for the recommendation. I'll definitely check them out.",
author: 'John Doe',
timestamp: 'Yesterday, 11:00 PM',
mine: false,
},
];