-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat_bot_with_functions.ts
190 lines (180 loc) · 4.54 KB
/
chat_bot_with_functions.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
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
import * as readline from 'node:readline';
import GigaChat from 'gigachat';
import * as dotenv from 'dotenv';
import { Message } from 'gigachat/interfaces';
import { Agent } from 'node:https';
dotenv.config();
const httpsAgent = new Agent({
rejectUnauthorized: false,
});
const client = new GigaChat({
timeout: 600,
model: 'GigaChat-Max',
httpsAgent: httpsAgent,
});
const messages: Message[] = [
{
role: 'system',
content: `Ты бот-консультант продуктового магазина.
Помни, что у тебя есть следующие функции:
get_products: Получает текущие позиции в магазине
get_product_info: Получает информацию о продукте (цена, количество)
Помни, что ты можешь вызывать функции последовательно
`,
},
];
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: true,
});
const PRODUCTS_DB = [
{
name: 'Молоко',
price: 100,
quantity: 10,
id: 0,
},
{
name: 'Хлеб',
price: 70,
quantity: 0,
id: 1,
},
{
name: 'Сыр',
price: 200,
quantity: 20,
id: 3,
},
{
name: 'Масло',
price: 170,
quantity: 20,
id: 4,
},
];
function get_products(): any {
console.log('Вызов функции: get_products');
return PRODUCTS_DB.map((product) => {
return { name: product.name, id: product.id };
});
}
function get_product_info(args: any) {
console.log('Вызов функции: get_products_info');
console.log(`С параметрами: ${JSON.stringify(args)}`);
return PRODUCTS_DB.filter((product) => args.ids.includes(product.id));
}
const functions = [
{
name: 'get_products',
description: 'Получает какие продукты есть в магазине',
parameters: {
type: 'object',
properties: {
arg: {
type: 'string',
},
},
},
return_parameters: {
type: 'object',
properties: {
name: {
type: 'string',
description: 'Название позиции',
},
id: {
type: 'string',
description: 'ID позиции',
},
},
},
},
{
name: 'get_product_info',
description: 'Получает информацию об определенном продукте в магазине',
parameters: {
type: 'object',
properties: {
ids: {
type: 'array',
items: {
type: 'number',
description: 'ID продуктов',
},
},
},
},
return_parameters: {
type: 'object',
properties: {
products: {
type: 'array',
items: {
type: 'object',
properties: {
name: {
type: 'string',
description: 'Название позиции',
},
id: {
type: 'string',
description: 'ID позиции',
},
quantity: {
type: 'string',
description: 'Количество',
},
price: {
type: 'string',
description: 'Цена',
},
},
},
},
},
},
},
];
async function main() {
process.stdout.write('Q: ');
for await (const question of rl) {
if (question.trim() == '') {
rl.close();
return;
}
messages.push({
role: 'user',
content: question,
});
let response = await client.chat({
functions: functions,
messages,
function_call: 'auto',
});
if (response.choices[0]?.message) messages.push(response.choices[0].message);
if (response.choices[0]?.message.function_call) {
let function_result: any = {};
switch (response.choices[0].message.function_call.name) {
case 'get_products':
function_result = get_products();
break;
case 'get_product_info':
function_result = get_product_info(response.choices[0].message.function_call.arguments);
break;
}
messages.push({
role: 'function',
content: JSON.stringify(function_result),
});
response = await client.chat({
functions,
messages,
});
}
process.stdout.write(`AI: ${response.choices[0]?.message.content}\n`);
process.stdout.write('Q: ');
}
}
main();