This repository was archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathfunction_calling.js
140 lines (121 loc) · 3.66 KB
/
function_calling.js
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
import MistralClient from '@mistralai/mistralai';
const apiKey = process.env.MISTRAL_API_KEY;
// Assuming we have the following data
const data = {
transactionId: ['T1001', 'T1002', 'T1003', 'T1004', 'T1005'],
customerId: ['C001', 'C002', 'C003', 'C002', 'C001'],
paymentAmount: [125.5, 89.99, 120.0, 54.3, 210.2],
paymentDate: [
'2021-10-05',
'2021-10-06',
'2021-10-07',
'2021-10-05',
'2021-10-08',
],
paymentStatus: ['Paid', 'Unpaid', 'Paid', 'Paid', 'Pending'],
};
/**
* This function retrieves the payment status of a transaction id.
* @param {object} data - The data object.
* @param {string} transactionId - The transaction id.
* @return {string} - The payment status.
*/
function retrievePaymentStatus({data, transactionId}) {
const transactionIndex = data.transactionId.indexOf(transactionId);
if (transactionIndex != -1) {
return JSON.stringify({status: data.paymentStatus[transactionIndex]});
} else {
return JSON.stringify({status: 'error - transaction id not found.'});
}
}
/**
* This function retrieves the payment date of a transaction id.
* @param {object} data - The data object.
* @param {string} transactionId - The transaction id.
* @return {string} - The payment date.
*
*/
function retrievePaymentDate({data, transactionId}) {
const transactionIndex = data.transactionId.indexOf(transactionId);
if (transactionIndex != -1) {
return JSON.stringify({status: data.payment_date[transactionIndex]});
} else {
return JSON.stringify({status: 'error - transaction id not found.'});
}
}
const namesToFunctions = {
retrievePaymentStatus: (transactionId) =>
retrievePaymentStatus({data, ...transactionId}),
retrievePaymentDate: (transactionId) =>
retrievePaymentDate({data, ...transactionId}),
};
const tools = [
{
type: 'function',
function: {
name: 'retrievePaymentStatus',
description: 'Get payment status of a transaction id',
parameters: {
type: 'object',
required: ['transactionId'],
properties: {
transactionId: {type: 'string', description: 'The transaction id.'},
},
},
},
},
{
type: 'function',
function: {
name: 'retrievePaymentDate',
description: 'Get payment date of a transaction id',
parameters: {
type: 'object',
required: ['transactionId'],
properties: {
transactionId: {type: 'string', description: 'The transaction id.'},
},
},
},
},
];
const model = 'mistral-small-latest';
const client = new MistralClient(apiKey);
const messages = [
{role: 'user', content: 'What\'s the status of my transaction?'},
];
let response = await client.chat({
model: model,
messages: messages,
tools: tools,
});
console.log(response.choices[0].message.content);
messages.push({
role: 'assistant',
content: response.choices[0].message.content,
});
messages.push({role: 'user', content: 'My transaction ID is T1001.'});
response = await client.chat({
model: model,
messages: messages,
tools: tools,
});
const toolCall = response.choices[0].message.tool_calls[0];
const functionName = toolCall.function.name;
const functionParams = JSON.parse(toolCall.function.arguments);
console.log(`calling functionName: ${functionName}`);
console.log(`functionParams: ${toolCall.function.arguments}`);
const functionResult = namesToFunctions[functionName](functionParams);
messages.push(response.choices[0].message);
messages.push({
role: 'tool',
name: functionName,
content: functionResult,
tool_call_id: toolCall.id,
});
response = await client.chat({
model: model,
messages: messages,
tools: tools,
});
console.log(response.choices[0].message.content);