File size: 6,229 Bytes
258e7ae 51e2030 258e7ae af77c2e 258e7ae 51e2030 258e7ae 51e2030 258e7ae 51e2030 258e7ae 51e2030 0d15186 258e7ae 51e2030 258e7ae 51e2030 258e7ae 51e2030 258e7ae 51e2030 258e7ae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
_target_: Tachi67.CoderFlowModule.CtrlExMem_CoderFlow.instantiate_from_default_config
name: "CtrlExMem_CoderFlow"
description: "MemorizedControllerExecutor flow for Coder flow"
input_interface:
- "plan"
- "logs"
- "code_library"
- "memory_files"
- "goal"
subflows_config:
Controller:
_target_: Tachi67.CoderFlowModule.Controller_CoderFlow.instantiate_from_default_config
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
Executor:
_target_: aiflows.base_flows.BranchingFlow.instantiate_from_default_config
subflows_config:
extend_library:
_target_: Tachi67.ExtendLibraryFlowModule.ExtendLibraryFlow.instantiate_from_default_config
memory_files: ???
subflows_config:
Planner:
_target_: Tachi67.PlanWriterFlowModule.PlanWriterFlow.instantiate_from_default_config
subflows_config:
Controller:
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
Executor:
subflows_config:
write_plan:
subflows_config:
PlanGenerator:
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
CtrlExMem:
_target_: Tachi67.ExtendLibraryFlowModule.CtrlExMem_ExtLib.instantiate_from_default_config
subflows_config:
Controller:
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
Executor:
subflows_config:
write_code:
subflows_config:
Controller:
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
Executor:
subflows_config:
write_code:
memory_files: ???
subflows_config:
CodeGenerator:
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
test:
memory_files: ???
re_plan:
subflows_config:
Controller:
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
Executor:
subflows_config:
write_plan:
subflows_config:
PlanGenerator:
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
ask_user:
_target_: Tachi67.ExtendLibraryFlowModule.ExtLibAskUserFlow.instantiate_from_default_config
re_plan:
_target_: Tachi67.ReplanningFlowModule.ReplanningFlow.instantiate_from_default_config
subflows_config:
Controller:
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
Executor:
subflows_config:
write_plan:
subflows_config:
PlanGenerator:
backend:
api_infos: ???
model_name:
openai: gpt-4
azure: azure/gpt-4
run_code:
_target_: Tachi67.RunCodeFlowModule.RunCodeFlow.instantiate_from_default_config
update_plan:
_target_: Tachi67.CoderFlowModule.UpdatePlanAtomicFlow.instantiate_from_default_config
MemoryReading:
_target_: Tachi67.MemoryReadingFlowModule.MemoryReadingAtomicFlow.instantiate_from_default_config
output_interface:
- "plan"
- "logs"
- "code_library"
topology:
- goal: "Select the next action and prepare the input for the executor."
input_interface:
_target_: aiflows.interfaces.KeyInterface
additional_transformations:
- _target_: aiflows.data_transformations.KeyMatchInput
flow: Controller
output_interface:
_target_: CtrlExMem_CoderFlow.detect_finish_or_continue
reset: false
- goal: "Execute the action specified by the Controller."
input_interface:
_target_: aiflows.interfaces.KeyInterface
keys_to_rename:
command: branch
command_args: branch_input_data
keys_to_select: ["branch", "branch_input_data"]
flow: Executor
output_interface:
_target_: aiflows.interfaces.KeyInterface
keys_to_rename:
branch_output_data.code_ran: code_ran
branch_output_data.interpreter_output: interpreter_output
branch_output_data.plan: plan
branch_output_data.status: status
branch_output_data.summary: summary
branch_output_data.result: result
keys_to_delete: ["branch_output_data"]
reset: false
- goal: "Write memory to memory files"
input_interface:
_target_: aiflows.interfaces.KeyInterface
additional_transformations:
- _target_: aiflows.data_transformations.KeyMatchInput
flow: MemoryWriting
reset: false
- goal: "Read memory from memory files (flow_state)"
input_interface:
_target_: aiflows.interfaces.KeyInterface
additional_transformations:
- _target_: aiflows.data_transformations.KeyMatchInput
flow: MemoryReading
reset: false |