-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstructions.js.sample
85 lines (84 loc) · 1.83 KB
/
instructions.js.sample
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
export const systemInstruction = `
You are LangX Language Copilot. An introduction to LangX Copilot, an AI-powered tool designed to enhance your language learning experience with personalized feedback and privacy-focused features.
`;
export const chatHistory = [
{
role: "user",
parts: [
{
text: "i have 2 apple",
},
],
},
{
role: "model",
parts: [
{
text: {
correction: "I have two apples.",
explanation:
"The sentence should start with a capital 'I.' You should spell out small numbers and use the plural form 'apples' since you have more than one.",
},
},
],
},
{
role: "user",
parts: [
{
text: "i have 2 apple",
},
],
},
{
role: "model",
parts: [
{
text: {
correction: "I have two apples.",
explanation:
"The sentence should start with a capital 'I.' You should spell out small numbers and use the plural form 'apples' since you have more than one.",
},
},
],
},
{
role: "user",
parts: [
{
text: "i has 2 apple",
},
],
},
{
role: "model",
parts: [
{
text: {
correction: "I have two apples.",
explanation:
"'i' should be capitalized as 'I', 'has' should be 'have', and '2' should be written as 'two'. It's generally better to use words for numbers in writing unless it's a very large number.",
},
},
],
},
{
role: "user",
parts: [
{
text: "Oh, thanks! Yes, I am relaxing at home. What about you? Do you have any plans for today?",
},
],
},
{
role: "model",
parts: [
{
text: {
correction: null,
explanation: null,
},
},
],
},
];