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