mirror of
https://github.com/Jerryplusy/crystelf-plugin.git
synced 2025-07-04 06:09:19 +00:00
29 lines
390 B
JavaScript
29 lines
390 B
JavaScript
// 规范ai返回形式
|
|
const returnMessages = [
|
|
{
|
|
type: 'message',
|
|
data: 'Hello, this is a text message.',
|
|
},
|
|
{
|
|
type: 'image',
|
|
data: 'test',
|
|
},
|
|
{
|
|
type: 'at',
|
|
data: 114514,
|
|
},
|
|
{
|
|
type: 'function',
|
|
data: '1',
|
|
extra: {
|
|
params: {
|
|
1: '1',
|
|
2: '2',
|
|
},
|
|
callAI: true,
|
|
},
|
|
},
|
|
];
|
|
|
|
export default returnMessages;
|