Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2ad805a
feat: Add relevant functions related to agent invocation, including p…
francismiko Aug 27, 2025
6be842c
Refactor agent call logic and utilities
francismiko Aug 29, 2025
7a2ecfe
refactor: clean up the processing logic of the interactive mode and r…
francismiko Aug 29, 2025
808ff79
feat: add relevant constants for proxy configuration and update the p…
francismiko Aug 29, 2025
e1aa39a
refactor: remove unused configuration variables from workflow properties
francismiko Aug 29, 2025
c365ca5
refactor: remove unused configuration variables from dispatchRunAgent…
francismiko Aug 29, 2025
72d9c7e
fix: build error
francismiko Aug 29, 2025
ac7e471
refactor: update FlowNodeTypeEnum values and consolidate utility func…
francismiko Sep 1, 2025
d438686
refactor: simplify conditional checks in tool call and reasoning hand…
francismiko Sep 1, 2025
5d43750
feat: add default agent prompt for improved response handling
francismiko Sep 1, 2025
490ebca
refactor: rename directory with agent->tool, agentCall->agnet
francismiko Sep 1, 2025
d43fc29
refactor: rename dispatchRunAgents to dispatchRunAgent for consistency
francismiko Sep 1, 2025
21eef3d
refactor: rename toolCall to tools for consistency in FlowNodeTypeEnum
francismiko Sep 1, 2025
8aaaee7
refactor: rename agents to toolCall for consistency in nodeTypes mapping
francismiko Sep 1, 2025
65d0576
refactor: remove unused runtimeEdges parameter from dispatchRunAgent
francismiko Sep 1, 2025
e5c596d
refactor: update runAgentCall and dispatchRunAgent to use structured …
francismiko Sep 1, 2025
5f44bb7
refactor: streamline requestProps and handleToolResponse in runAgentC…
francismiko Sep 1, 2025
fd559a9
refactor: restructure RunAgentCallProps and update requestProps to re…
francismiko Sep 1, 2025
ec76804
refactor: enhance interactiveEntryToolParams handling in runAgentCall…
francismiko Sep 1, 2025
c18d366
refactor: flatten RunAgentCallProps structure and update dispatchRunA…
francismiko Sep 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/global/core/workflow/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,11 @@ export enum NodeInputKeyEnum {
aiChatResponseFormat = 'aiChatResponseFormat',
aiChatJsonSchema = 'aiChatJsonSchema',

// agent
subAgentConfig = 'subConfig',
planAgentConfig = 'planConfig',
modelAgentConfig = 'modelConfig',

// dataset
datasetSelectList = 'datasets',
datasetSimilarity = 'similarity',
Expand Down
3 changes: 2 additions & 1 deletion packages/global/core/workflow/node/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ export enum FlowNodeTypeEnum {
pluginInput = 'pluginInput',
pluginOutput = 'pluginOutput',
queryExtension = 'cfr',
agent = 'tools',
agent = 'agent',
toolCall = 'tools',
stopTool = 'stopTool',
toolParams = 'toolParams',
lafModule = 'lafModule',
Expand Down
Loading
Loading