File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
template_langgraph/agents/issue_formatter_agent Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
"graphs" : {
6
6
"basic_workflow_agent" : " template_langgraph.agents.basic_workflow_agent.agent:graph" ,
7
7
"kabuto_helpdesk_agent" : " template_langgraph.agents.kabuto_helpdesk_agent:graph" ,
8
- "report_formatter_agent " : " template_langgraph.agents.report_formatter_agent .agent:graph"
8
+ "issue_formatter_agent " : " template_langgraph.agents.issue_formatter_agent .agent:graph"
9
9
},
10
10
"env" : " .env"
11
11
}
Original file line number Diff line number Diff line change @@ -40,11 +40,11 @@ class Issue(BaseModel):
40
40
41
41
42
42
class AgentInput (BaseModel ):
43
- report : str = Field (..., description = "The report to be formatted" )
43
+ issue : str = Field (..., description = "The issue to be formatted" )
44
44
45
45
46
46
class AgentOutput (BaseModel ):
47
- response : str = Field (..., description = "The agent's response after formatting the report " )
47
+ response : str = Field (..., description = "The agent's response after formatting the issue " )
48
48
49
49
50
50
class AgentState (TypedDict ):
You can’t perform that action at this time.
0 commit comments