Skip to content

Commit 3eb2a42

Browse files
committed
a
1 parent 176fae4 commit 3eb2a42

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

langgraph.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"graphs": {
66
"basic_workflow_agent": "template_langgraph.agents.basic_workflow_agent.agent:graph",
77
"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"
99
},
1010
"env": ".env"
1111
}

template_langgraph/agents/issue_formatter_agent/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ class Issue(BaseModel):
4040

4141

4242
class AgentInput(BaseModel):
43-
report: str = Field(..., description="The report to be formatted")
43+
issue: str = Field(..., description="The issue to be formatted")
4444

4545

4646
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")
4848

4949

5050
class AgentState(TypedDict):

0 commit comments

Comments
 (0)