File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 66from patchwork .common .tools .api_tool import APIRequestTool
77from patchwork .step import Step
88
9- from .typed import ManageEngineInputs , ManageEngineOutputs
9+ from .typed import ManageEngineAgentInputs , ManageEngineAgentOutputs
1010
1111
12- class ManageEngineStep (Step , input_class = ManageEngineInputs , output_class = ManageEngineOutputs ):
13- def __init__ (self , inputs : ManageEngineInputs ):
12+ class ManageEngineAgent (Step , input_class = ManageEngineAgentInputs , output_class = ManageEngineAgentOutputs ):
13+ def __init__ (self , inputs : ManageEngineAgentInputs ):
1414 super ().__init__ (inputs )
1515
1616 if not inputs .get ("me_access_token" ):
Original file line number Diff line number Diff line change 55from patchwork .common .utils .step_typing import StepTypeConfig
66
77
8- class ManageEngineInputs (TypedDict , total = False ):
8+ class ManageEngineAgentInputs (TypedDict , total = False ):
99 """
1010 Inputs for the ManageEngine agentic step
1111 """
@@ -43,7 +43,7 @@ class ManageEngineInputs(TypedDict, total=False):
4343 example_json : Optional [Dict ]
4444
4545
46- class ManageEngineOutputs (TypedDict , total = False ):
46+ class ManageEngineAgentOutputs (TypedDict , total = False ):
4747 """
4848 Outputs from the ManageEngine agentic step
4949 """
Original file line number Diff line number Diff line change 3333from patchwork .steps .GitHubAgent .GitHubAgent import GitHubAgent
3434from patchwork .steps .JoinList .JoinList import JoinList
3535from patchwork .steps .LLM .LLM import LLM
36- from patchwork .steps .ManageEngine . ManageEngineStep import ManageEngineStep
36+ from patchwork .steps .ManageEngineAgent . ManageEngineAgent import ManageEngineAgent
3737from patchwork .steps .ModifyCode .ModifyCode import ModifyCode
3838from patchwork .steps .ModifyCodeOnce .ModifyCodeOnce import ModifyCodeOnce
3939from patchwork .steps .PR .PR import PR
109109 "JoinListPB" ,
110110 "GetTypescriptTypeInfo" ,
111111 "BrowserUse" ,
112- "ManageEngineStep " ,
112+ "ManageEngineAgent " ,
113113]
You can’t perform that action at this time.
0 commit comments