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 72c4dc5 commit f2a5ae9Copy full SHA for f2a5ae9
src/guidellm/utils/mixins.py
@@ -60,7 +60,7 @@ def extract_from_obj(cls, obj: Any) -> dict[str, Any]:
60
{
61
key: val
62
if isinstance(val, (str, int, float, bool, list, dict))
63
- else str(val)
+ else repr(val)
64
for key, val in obj.__dict__.items()
65
if not key.startswith("_")
66
}
0 commit comments