mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-12 04:07:42 +08:00
22 lines
591 B
JavaScript
22 lines
591 B
JavaScript
'use strict';
|
|
|
|
const XML_TOOL_SEGMENT_TAGS = [
|
|
'<tool_calls>', '<tool_calls\n', '<tool_calls ', '<tool_call>', '<tool_call\n', '<tool_call ',
|
|
'<invoke ', '<invoke>', '<function_call', '<function_calls', '<tool_use>',
|
|
];
|
|
|
|
const XML_TOOL_OPENING_TAGS = [
|
|
'<tool_calls', '<tool_call', '<invoke', '<function_call', '<function_calls', '<tool_use',
|
|
];
|
|
|
|
const XML_TOOL_CLOSING_TAGS = [
|
|
'</tool_calls>', '</tool_call>', '</invoke>', '</function_call>', '</function_calls>', '</tool_use>',
|
|
];
|
|
|
|
module.exports = {
|
|
XML_TOOL_SEGMENT_TAGS,
|
|
XML_TOOL_OPENING_TAGS,
|
|
XML_TOOL_CLOSING_TAGS,
|
|
};
|
|
|