We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3286505 commit cfdb16dCopy full SHA for cfdb16d
src/agentlab/llm/llm_utils.py
@@ -332,7 +332,7 @@ def __str__(self) -> str:
332
if isinstance(self["content"], str):
333
return self["content"]
334
if not all(elem["type"] == "text" for elem in self["content"]):
335
- logging.warning(
+ logging.info(
336
"The content of the message has images, which are not displayed in the string representation."
337
)
338
return "\n".join([elem["text"] for elem in self["content"] if elem["type"] == "text"])
0 commit comments