mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-21 00:17:44 +08:00
20 lines
307 B
JavaScript
20 lines
307 B
JavaScript
'use strict';
|
|
|
|
const XML_TOOL_SEGMENT_TAGS = [
|
|
'<tool_calls>', '<tool_calls\n', '<tool_calls ',
|
|
];
|
|
|
|
const XML_TOOL_OPENING_TAGS = [
|
|
'<tool_calls',
|
|
];
|
|
|
|
const XML_TOOL_CLOSING_TAGS = [
|
|
'</tool_calls>',
|
|
];
|
|
|
|
module.exports = {
|
|
XML_TOOL_SEGMENT_TAGS,
|
|
XML_TOOL_OPENING_TAGS,
|
|
XML_TOOL_CLOSING_TAGS,
|
|
};
|