Skip to content

Commit

Permalink
Merge pull request #1458 from Jaseci-Labs/quickfix_mtllm
Browse files Browse the repository at this point in the history
{BUG) Fix for input information issue in MTLLM
  • Loading branch information
ypkang authored Nov 20, 2024
2 parents 8803824 + ffebc54 commit 0372ae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jac-mtllm/mtllm/aott.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def aott_raise(
inputs_information_repr.extend(input_info.to_list_dict())
elif is_custom:
media = [x for x in inputs_information if isinstance(x.value, PILImage.Image)]
inputs_information_repr = ""
inputs_information_repr = "\n".join([str(x) for x in inputs_information])
else:
inputs_information_repr = "\n".join([str(x) for x in inputs_information])

Expand Down

0 comments on commit 0372ae4

Please sign in to comment.