File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -26,5 +26,6 @@ class BinaryAnswer(BaseModel):
2626binary_question_model = ChatOpenAI (model = "gpt-4o-mini" , temperature = 0 )
2727
2828BINARY_QUESTION_CHAIN = (
29- binary_question_prompt | binary_question_model .with_structured_output (BinaryAnswer )
29+ binary_question_prompt
30+ | binary_question_model .with_structured_output (BinaryAnswer )
3031)
Original file line number Diff line number Diff line change @@ -28,5 +28,6 @@ class EscalationCheck(BaseModel):
2828escalation_check_model = ChatOpenAI (model = "gpt-4o-mini" , temperature = 0 )
2929
3030ESCALATION_CHECK_CHAIN = (
31- escalation_prompt | escalation_check_model .with_structured_output (EscalationCheck )
31+ escalation_prompt
32+ | escalation_check_model .with_structured_output (EscalationCheck )
3233)
You can’t perform that action at this time.
0 commit comments