Skip to content

Commit

Permalink
Update council/llm/llm_function/llm_pipeline.py
Browse files Browse the repository at this point in the history
Co-authored-by: Arnaud Flament <[email protected]>
  • Loading branch information
Winston-503 and aflament authored Jan 15, 2025
1 parent e3a3403 commit b1c792c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion council/llm/llm_function/llm_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def records(self) -> List[LLMProcessorRecord]:
return self._records

@property
def records_with_exceptions(self) -> List[LLMProcessorRecord]:
def records_with_exceptions(self) -> Sequence[LLMProcessorRecord]:
"""List of records processed by this instance that resulted in an exception."""
return [record for record in self.records if record.exception is not None]

Expand Down

0 comments on commit b1c792c

Please sign in to comment.