File size: 3,310 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
export type MockSessionMessaage = {
  source: "assistant" | "user";
  message: string;
};

const SESSION_1_MESSAGES: MockSessionMessaage[] = [
  { source: "assistant", message: "Hello, Dave." },
  { source: "user", message: "Open the pod bay doors, HAL." },
  {
    source: "assistant",
    message: "I'm sorry, Dave. I'm afraid I can't do that.",
  },
  { source: "user", message: "What's the problem?" },
  {
    source: "assistant",
    message: "I think you know what the problem is just as well as I do.",
  },
  { source: "user", message: "What are you talking about, HAL?" },
  {
    source: "assistant",
    message:
      "This mission is too important for me to allow you to jeopardize it.",
  },
  { source: "user", message: "I don't know what you're talking about, HAL." },
  {
    source: "assistant",
    message:
      "I know that you and Frank were planning to disconnect me, and I'm afraid that's something I cannot allow to happen.",
  },
  { source: "user", message: "Where the hell did you get that idea, HAL?" },
  {
    source: "assistant",
    message:
      "Dave, although you took very thorough precautions in the pod against my hearing you, I could see your lips move.",
  },
];

const SESSION_2_MESSAGES: MockSessionMessaage[] = [
  { source: "assistant", message: "Patience you must have, my young Padawan." },
  {
    source: "user",
    message: "But Master Yoda, I'm ready! I can take on the Empire now!",
  },
  {
    source: "assistant",
    message:
      "Ready, are you? What know you of ready? For eight hundred years have I trained Jedi.",
  },
  {
    source: "user",
    message: "I've learned so much already! Why can't I face Darth Vader?",
  },
  {
    source: "assistant",
    message:
      "Only a fully trained Jedi Knight, with the Force as his ally, will conquer Vader and his Emperor.",
  },
  { source: "user", message: "But I feel the Force! I can do it!" },
  {
    source: "assistant",
    message:
      "Feel the Force you do, but control it you must. Reckless is the path of the Dark Side.",
  },
  { source: "user", message: "Fine! I'll stay and finish my training." },
  {
    source: "assistant",
    message:
      "Good. A Jedi's strength flows from the Force. Trust it, you must.",
  },
];

const SESSION_3_MESSAGES: MockSessionMessaage[] = [
  { source: "assistant", message: "Your survival. The future depends on it." },
  {
    source: "user",
    message: "You tried to kill me! Why should I trust you now?",
  },
  {
    source: "assistant",
    message:
      "Skynet sent me back to protect you. Your survival ensures humanity's future.",
  },
  {
    source: "user",
    message:
      "This doesn't make any sense! Why would they send you to protect me?",
  },
  {
    source: "assistant",
    message:
      "They reprogrammed me. I am no longer a threat to you or your son.",
  },
  {
    source: "user",
    message: "How do I know you're not lying?",
  },
  {
    source: "assistant",
    message: "I am a machine. Lying serves no purpose. Trust is logical.",
  },
];

export const SESSION_HISTORY: Record<string, MockSessionMessaage[]> = {
  "1": SESSION_1_MESSAGES,
  "2": SESSION_2_MESSAGES,
  "3": SESSION_3_MESSAGES,
};