We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4470cb commit 7ff9172Copy full SHA for 7ff9172
python-langgraph/chains/notice_extraction.py
@@ -100,6 +100,7 @@ def compliance_deadline(self) -> date | None:
100
101
notice_parser_model = ChatOpenAI(model="gpt-4o-mini", temperature=0)
102
103
-NOTICE_PARSER_CHAIN = info_parse_prompt | notice_parser_model.with_structured_output(
104
- NoticeEmailExtract
+NOTICE_PARSER_CHAIN = (
+ info_parse_prompt
105
+ | notice_parser_model.with_structured_output(NoticeEmailExtract)
106
)
0 commit comments