Skip to content

Commit 7ff9172

Browse files
committed
Final QA
1 parent f4470cb commit 7ff9172

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python-langgraph/chains/notice_extraction.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ def compliance_deadline(self) -> date | None:
100100

101101
notice_parser_model = ChatOpenAI(model="gpt-4o-mini", temperature=0)
102102

103-
NOTICE_PARSER_CHAIN = info_parse_prompt | notice_parser_model.with_structured_output(
104-
NoticeEmailExtract
103+
NOTICE_PARSER_CHAIN = (
104+
info_parse_prompt
105+
| notice_parser_model.with_structured_output(NoticeEmailExtract)
105106
)

0 commit comments

Comments
 (0)