Skip to content

Commit cfdb16d

Browse files
committed
switching warning to info
1 parent 3286505 commit cfdb16d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agentlab/llm/llm_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def __str__(self) -> str:
332332
if isinstance(self["content"], str):
333333
return self["content"]
334334
if not all(elem["type"] == "text" for elem in self["content"]):
335-
logging.warning(
335+
logging.info(
336336
"The content of the message has images, which are not displayed in the string representation."
337337
)
338338
return "\n".join([elem["text"] for elem in self["content"] if elem["type"] == "text"])

0 commit comments

Comments
 (0)