mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-05 01:02:59 +08:00
7a6601394d
* doc * feat: Pause Recovery (#6494) * feat: Pause Recovery * agent pause * agent pause * fix:agent pause * fix:agent pause * perf: pause agent call * fix: test --------- Co-authored-by: archer <545436317@qq.com> * fix: image read and json error (Agent) (#6502) * fix: 1.image read 2.JSON parsing error * dataset cite and pause * perf: plancall second parse * add test --------- Co-authored-by: archer <545436317@qq.com> * master message * remove invalid code * fix: pause agent (#6595) * fix: ask and step result * delete console * udpate pnpm version * prettier --------- Co-authored-by: YeYuheng <57035043+YYH211@users.noreply.github.com>
467 lines
14 KiB
TypeScript
467 lines
14 KiB
TypeScript
import type {
|
||
AIChatItemValueItemType,
|
||
ChatItemType,
|
||
ChatItemValueItemType,
|
||
RuntimeUserPromptType,
|
||
SystemChatItemValueItemType,
|
||
ToolModuleResponseItemType,
|
||
UserChatItemFileItemType,
|
||
UserChatItemType,
|
||
UserChatItemValueItemType
|
||
} from './type';
|
||
import { ChatFileTypeEnum, ChatRoleEnum } from '../../core/chat/constants';
|
||
import type {
|
||
ChatCompletionContentPart,
|
||
ChatCompletionFunctionMessageParam,
|
||
ChatCompletionMessageFunctionCall,
|
||
ChatCompletionMessageParam,
|
||
ChatCompletionMessageToolCall,
|
||
ChatCompletionToolMessageParam
|
||
} from '../../core/ai/type';
|
||
import { ChatCompletionRequestMessageRoleEnum } from '../../core/ai/constants';
|
||
import { getPlanCallResponseText } from './utils';
|
||
|
||
export const GPT2Chat = {
|
||
[ChatCompletionRequestMessageRoleEnum.System]: ChatRoleEnum.System,
|
||
[ChatCompletionRequestMessageRoleEnum.Developer]: ChatRoleEnum.System,
|
||
[ChatCompletionRequestMessageRoleEnum.User]: ChatRoleEnum.Human,
|
||
[ChatCompletionRequestMessageRoleEnum.Assistant]: ChatRoleEnum.AI,
|
||
[ChatCompletionRequestMessageRoleEnum.Function]: ChatRoleEnum.AI,
|
||
[ChatCompletionRequestMessageRoleEnum.Tool]: ChatRoleEnum.AI
|
||
};
|
||
|
||
export function adaptRole_Message2Chat(role: `${ChatCompletionRequestMessageRoleEnum}`) {
|
||
return GPT2Chat[role];
|
||
}
|
||
|
||
export const simpleUserContentPart = (content: ChatCompletionContentPart[]) => {
|
||
if (content.length === 1 && content[0].type === 'text') {
|
||
return content[0].text;
|
||
}
|
||
return content;
|
||
};
|
||
|
||
export const chats2GPTMessages = ({
|
||
messages,
|
||
reserveId,
|
||
reserveTool = false
|
||
}: {
|
||
messages: ChatItemType[];
|
||
reserveId: boolean;
|
||
reserveTool?: boolean;
|
||
}): ChatCompletionMessageParam[] => {
|
||
let results: ChatCompletionMessageParam[] = [];
|
||
|
||
messages.forEach((item, index) => {
|
||
const dataId = reserveId ? item.dataId : undefined;
|
||
if (item.obj === ChatRoleEnum.System) {
|
||
const content = item.value?.[0]?.text?.content;
|
||
if (content) {
|
||
results.push({
|
||
dataId,
|
||
role: ChatCompletionRequestMessageRoleEnum.System,
|
||
content
|
||
});
|
||
}
|
||
} else if (item.obj === ChatRoleEnum.Human) {
|
||
const value = item.value
|
||
// 有 planId 的过滤掉,会被 planTool 一起处理
|
||
.filter((item) => !item.planId)
|
||
.map((item) => {
|
||
if (item.text) {
|
||
return {
|
||
type: 'text',
|
||
text: item.text?.content || ''
|
||
};
|
||
}
|
||
if (item.file) {
|
||
if (item.file?.type === ChatFileTypeEnum.image) {
|
||
return {
|
||
type: 'image_url',
|
||
key: item.file.key,
|
||
image_url: {
|
||
url: item.file.url
|
||
}
|
||
};
|
||
} else if (item.file?.type === ChatFileTypeEnum.file) {
|
||
return {
|
||
type: 'file_url',
|
||
name: item.file?.name || '',
|
||
url: item.file.url,
|
||
key: item.file.key
|
||
};
|
||
}
|
||
}
|
||
})
|
||
.filter(Boolean) as ChatCompletionContentPart[];
|
||
|
||
if (value.length) {
|
||
results.push({
|
||
dataId,
|
||
hideInUI: item.hideInUI,
|
||
role: ChatCompletionRequestMessageRoleEnum.User,
|
||
content: simpleUserContentPart(value)
|
||
});
|
||
}
|
||
} else {
|
||
const aiResults: ChatCompletionMessageParam[] = [];
|
||
|
||
item.value.forEach((value, i) => {
|
||
/* Plan agent 产生的上下文都需要合并到一个 toolCall 里。
|
||
Plan agent 产生的上下文都会携带 planId
|
||
value.plan 代表的是 plan 的具体内容,根据这个值去转化成 toolcall
|
||
*/
|
||
if (value.planId && !value.plan) return;
|
||
|
||
const hasTools = Array.isArray(value.tools) && value.tools.length > 0;
|
||
|
||
if (reserveTool && (hasTools || value.tool)) {
|
||
const tools = hasTools ? value.tools! : [value.tool!];
|
||
const tool_calls: ChatCompletionMessageToolCall[] = [];
|
||
const toolResponse: ChatCompletionToolMessageParam[] = [];
|
||
tools.forEach((tool) => {
|
||
tool_calls.push({
|
||
id: tool.id,
|
||
type: 'function',
|
||
function: {
|
||
name: tool.functionName,
|
||
arguments: tool.params
|
||
}
|
||
});
|
||
toolResponse.push({
|
||
tool_call_id: tool.id,
|
||
role: ChatCompletionRequestMessageRoleEnum.Tool,
|
||
content: tool.response || ''
|
||
});
|
||
});
|
||
aiResults.push({
|
||
dataId,
|
||
role: ChatCompletionRequestMessageRoleEnum.Assistant,
|
||
tool_calls
|
||
});
|
||
aiResults.push(...toolResponse);
|
||
} else if (typeof value.text?.content === 'string') {
|
||
if (!value.text.content && item.value.length > 1) {
|
||
return;
|
||
}
|
||
// Concat text
|
||
const lastResult = aiResults[aiResults.length - 1];
|
||
if (
|
||
lastResult?.role === ChatCompletionRequestMessageRoleEnum.Assistant &&
|
||
typeof lastResult?.content === 'string'
|
||
) {
|
||
lastResult.content += value.text.content;
|
||
} else {
|
||
aiResults.push({
|
||
dataId,
|
||
role: ChatCompletionRequestMessageRoleEnum.Assistant,
|
||
content: value.text.content
|
||
});
|
||
}
|
||
} else if (value.plan) {
|
||
// 查找该 Plan 产生的上下文,组成一个 toolcall
|
||
// 需要跨所有历史消息收集同 planId 的 values(ask 信息可能在之前的 AI 消息中)
|
||
const planId = value.plan.planId;
|
||
const allPlanValues = messages
|
||
.filter((msg) => msg.obj === ChatRoleEnum.AI)
|
||
.flatMap((msg) =>
|
||
(msg.value as AIChatItemValueItemType[]).filter((v) => v.planId === planId)
|
||
);
|
||
const planResponseText = getPlanCallResponseText({
|
||
plan: value.plan,
|
||
assistantResponses: allPlanValues
|
||
});
|
||
aiResults.push({
|
||
dataId,
|
||
role: ChatCompletionRequestMessageRoleEnum.Assistant,
|
||
tool_calls: [
|
||
{
|
||
id: planId,
|
||
type: 'function',
|
||
function: {
|
||
name: 'plan_agent',
|
||
arguments: JSON.stringify({
|
||
task: value.plan.task,
|
||
description: value.plan.description,
|
||
background: value.plan.background
|
||
})
|
||
}
|
||
}
|
||
]
|
||
});
|
||
aiResults.push({
|
||
dataId,
|
||
role: ChatCompletionRequestMessageRoleEnum.Tool,
|
||
tool_call_id: planId,
|
||
content: planResponseText
|
||
});
|
||
} else if (value.interactive) {
|
||
// 目前只有 plan 里会有交互,所以这里暂时不需要处理
|
||
}
|
||
});
|
||
|
||
// Auto add empty assistant message
|
||
results = results.concat(aiResults);
|
||
}
|
||
});
|
||
|
||
return results;
|
||
};
|
||
|
||
export const GPTMessages2Chats = ({
|
||
messages,
|
||
reserveTool = true,
|
||
reserveReason = true,
|
||
getToolInfo
|
||
}: {
|
||
messages: ChatCompletionMessageParam[];
|
||
reserveTool?: boolean;
|
||
reserveReason?: boolean;
|
||
getToolInfo?: (name: string) => { name: string; avatar: string };
|
||
}): ChatItemType[] => {
|
||
const chatMessages = messages
|
||
.map((item) => {
|
||
const obj = GPT2Chat[item.role];
|
||
|
||
if (
|
||
obj === ChatRoleEnum.System &&
|
||
item.role === ChatCompletionRequestMessageRoleEnum.System
|
||
) {
|
||
const value: SystemChatItemValueItemType[] = [];
|
||
|
||
if (Array.isArray(item.content)) {
|
||
item.content.forEach((item) => [
|
||
value.push({
|
||
text: {
|
||
content: item.text
|
||
}
|
||
})
|
||
]);
|
||
} else {
|
||
value.push({
|
||
text: {
|
||
content: item.content
|
||
}
|
||
});
|
||
}
|
||
return {
|
||
dataId: item.dataId,
|
||
obj,
|
||
hideInUI: item.hideInUI,
|
||
value
|
||
};
|
||
} else if (
|
||
obj === ChatRoleEnum.Human &&
|
||
item.role === ChatCompletionRequestMessageRoleEnum.User
|
||
) {
|
||
const value: UserChatItemValueItemType[] = [];
|
||
|
||
if (typeof item.content === 'string') {
|
||
value.push({
|
||
text: {
|
||
content: item.content
|
||
}
|
||
});
|
||
} else if (Array.isArray(item.content)) {
|
||
item.content.forEach((item) => {
|
||
if (item.type === 'text') {
|
||
value.push({
|
||
text: {
|
||
content: item.text
|
||
}
|
||
});
|
||
} else if (item.type === 'image_url') {
|
||
value.push({
|
||
file: {
|
||
type: ChatFileTypeEnum.image,
|
||
name: '',
|
||
url: item.image_url.url,
|
||
key: item.key
|
||
}
|
||
});
|
||
} else if (item.type === 'file_url') {
|
||
value.push({
|
||
file: {
|
||
type: ChatFileTypeEnum.file,
|
||
name: item.name,
|
||
url: item.url,
|
||
key: item.key
|
||
}
|
||
});
|
||
}
|
||
});
|
||
}
|
||
return {
|
||
dataId: item.dataId,
|
||
obj,
|
||
hideInUI: item.hideInUI,
|
||
value
|
||
};
|
||
} else if (
|
||
obj === ChatRoleEnum.AI &&
|
||
item.role === ChatCompletionRequestMessageRoleEnum.Assistant
|
||
) {
|
||
const value: AIChatItemValueItemType[] = [];
|
||
|
||
if (typeof item.reasoning_content === 'string' && item.reasoning_content && reserveReason) {
|
||
value.push({
|
||
reasoning: {
|
||
content: item.reasoning_content
|
||
}
|
||
});
|
||
}
|
||
if (typeof item.content === 'string' && item.content) {
|
||
const lastValue = value[value.length - 1];
|
||
if (lastValue && lastValue.text) {
|
||
lastValue.text.content += item.content;
|
||
} else {
|
||
value.push({
|
||
text: {
|
||
content: item.content
|
||
}
|
||
});
|
||
}
|
||
}
|
||
if (item.tool_calls && reserveTool) {
|
||
// save tool calls
|
||
const toolCalls = item.tool_calls as ChatCompletionMessageToolCall[];
|
||
|
||
const tools = toolCalls.flatMap<ToolModuleResponseItemType>((tool) => {
|
||
// Skil plan tool
|
||
if (tool.function.name === 'plan_agent') {
|
||
return [];
|
||
}
|
||
let toolResponse =
|
||
messages.find(
|
||
(msg) =>
|
||
msg.role === ChatCompletionRequestMessageRoleEnum.Tool &&
|
||
msg.tool_call_id === tool.id
|
||
)?.content || '';
|
||
toolResponse =
|
||
typeof toolResponse === 'string' ? toolResponse : JSON.stringify(toolResponse);
|
||
|
||
const toolInfo = getToolInfo?.(tool.function.name);
|
||
|
||
return [
|
||
{
|
||
id: tool.id,
|
||
toolName: toolInfo?.name || '',
|
||
toolAvatar: toolInfo?.avatar || '',
|
||
functionName: tool.function.name,
|
||
params: tool.function.arguments,
|
||
response: toolResponse as string
|
||
}
|
||
];
|
||
});
|
||
value.push({
|
||
tools
|
||
});
|
||
}
|
||
if (item.function_call && reserveTool) {
|
||
const functionCall = item.function_call as ChatCompletionMessageFunctionCall;
|
||
const functionResponse = messages.find(
|
||
(msg) =>
|
||
msg.role === ChatCompletionRequestMessageRoleEnum.Function &&
|
||
msg.name === item.function_call?.name
|
||
) as ChatCompletionFunctionMessageParam;
|
||
|
||
if (functionResponse) {
|
||
value.push({
|
||
tool: {
|
||
id: functionCall.id || '',
|
||
toolName: functionCall.toolName || '',
|
||
toolAvatar: functionCall.toolAvatar || '',
|
||
functionName: functionCall.name,
|
||
params: functionCall.arguments,
|
||
response: functionResponse.content || ''
|
||
}
|
||
});
|
||
}
|
||
}
|
||
if (item.interactive) {
|
||
value.push({
|
||
interactive: item.interactive
|
||
});
|
||
}
|
||
|
||
return {
|
||
dataId: item.dataId,
|
||
obj,
|
||
hideInUI: item.hideInUI,
|
||
value
|
||
};
|
||
}
|
||
|
||
return {
|
||
dataId: item.dataId,
|
||
obj,
|
||
hideInUI: item.hideInUI,
|
||
value: []
|
||
};
|
||
})
|
||
.filter((item) => item.value.length > 0);
|
||
|
||
// Merge data with the same dataId(Sequential obj merging)
|
||
const result = chatMessages.reduce((result: ChatItemType[], currentItem) => {
|
||
const lastItem = result[result.length - 1];
|
||
|
||
if (lastItem && lastItem.dataId === currentItem.dataId && lastItem.obj === currentItem.obj) {
|
||
// @ts-ignore
|
||
lastItem.value = lastItem.value.concat(currentItem.value);
|
||
} else {
|
||
result.push(currentItem);
|
||
}
|
||
|
||
return result;
|
||
}, []);
|
||
|
||
return result;
|
||
};
|
||
|
||
export const chatValue2RuntimePrompt = (value: ChatItemValueItemType[]): RuntimeUserPromptType => {
|
||
const prompt: RuntimeUserPromptType = {
|
||
files: [],
|
||
text: ''
|
||
};
|
||
value.forEach((item) => {
|
||
if ('file' in item && item.file) {
|
||
prompt.files.push(item.file);
|
||
} else if (item.text) {
|
||
prompt.text += item.text.content;
|
||
}
|
||
});
|
||
return prompt;
|
||
};
|
||
|
||
export const runtimePrompt2ChatsValue = (prompt: {
|
||
files?: UserChatItemFileItemType[];
|
||
text?: string;
|
||
}): UserChatItemType['value'] => {
|
||
const value: UserChatItemType['value'] = [];
|
||
if (prompt.files) {
|
||
prompt.files.forEach((file) => {
|
||
value.push({
|
||
file
|
||
});
|
||
});
|
||
}
|
||
if (prompt.text) {
|
||
value.push({
|
||
text: {
|
||
content: prompt.text
|
||
}
|
||
});
|
||
}
|
||
return value;
|
||
};
|
||
|
||
export const getSystemPrompt_ChatItemType = (prompt?: string): ChatItemType[] => {
|
||
if (!prompt) return [];
|
||
return [
|
||
{
|
||
obj: ChatRoleEnum.System,
|
||
value: [{ text: { content: prompt } }]
|
||
}
|
||
];
|
||
};
|