Skip to content

Commit

Permalink
fix: Fix error message in SummaryAssistant class
Browse files Browse the repository at this point in the history
  • Loading branch information
StanGirard committed Apr 19, 2024
1 parent 0761738 commit 0310e8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/modules/assistant/ito/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def check_input(self):
if len(self.files) > 1:
raise ValueError("Only one file can be uploaded")
if not self.input.inputs.files:
raise ValueError("No files were given in the input")
raise ValueError("No files key were given in the input")
if len(self.input.inputs.files) > 1:
raise ValueError("Only one file can be uploaded")
if not self.input.inputs.files[0].key == "doc_to_summarize":
Expand Down

0 comments on commit 0310e8e

Please sign in to comment.