feat: adapt workflow for ppt & minimap (#7464)

This commit is contained in:
darkskygit
2024-07-10 10:13:17 +00:00
parent 22187f964a
commit 0739e10683
10 changed files with 227 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
import { NodeExecutorType } from './executor';
import type { WorkflowGraphs } from './types';
import type { WorkflowGraphs, WorkflowNodeState } from './types';
import { WorkflowNodeType } from './types';
export const WorkflowGraphList: WorkflowGraphs = [
@@ -21,6 +21,65 @@ export const WorkflowGraphList: WorkflowGraphs = [
nodeType: WorkflowNodeType.Basic,
type: NodeExecutorType.ChatText,
promptName: 'workflow:presentation:step2',
edges: ['step3'],
},
{
id: 'step3',
name: 'Step 3: format presentation if needed',
nodeType: WorkflowNodeType.Decision,
condition: (nodeIds: string[], params: WorkflowNodeState) => {
const lines = params.content?.split('\n') || [];
return nodeIds[
Number(
!lines.some(line => {
try {
if (line.trim()) {
JSON.parse(line);
}
return false;
} catch {
return true;
}
})
)
];
},
edges: ['step4', 'step5'],
},
{
id: 'step4',
name: 'Step 4: format presentation',
nodeType: WorkflowNodeType.Basic,
type: NodeExecutorType.ChatText,
promptName: 'workflow:presentation:step4',
edges: ['step5'],
},
{
id: 'step5',
name: 'Step 5: finish',
nodeType: WorkflowNodeType.Nope,
edges: [],
},
],
},
{
name: 'brainstorm',
graph: [
{
id: 'start',
name: 'Start: check language',
nodeType: WorkflowNodeType.Basic,
type: NodeExecutorType.ChatText,
promptName: 'workflow:brainstorm:step1',
paramKey: 'language',
edges: ['step2'],
},
{
id: 'step2',
name: 'Step 2: generate brainstorm mind map',
nodeType: WorkflowNodeType.Basic,
type: NodeExecutorType.ChatText,
promptName: 'workflow:brainstorm:step2',
edges: [],
},
],