remove extra prints

This commit is contained in:
Dillon DuPont
2025-09-18 11:27:50 -04:00
parent ed42c17fa8
commit 821bd03e48
+1 -1
View File
@@ -164,7 +164,7 @@ class InternVLConfig(ComposedGroundedConfig):
response = await litellm.acompletion(**api_kwargs)
output_text = (response.choices[0].message.content or "").strip() # type: ignore
print(f"InternVL output: {output_text}")
# print(f"InternVL output: {output_text}")
# Try to parse a point first; if absent, parse bbox and take center
point = _extract_first_point(output_text)