diff --git a/libs/vertexai/tests/integration_tests/test_maas.py b/libs/vertexai/tests/integration_tests/test_maas.py index 1f0288c1..b5419f8f 100644 --- a/libs/vertexai/tests/integration_tests/test_maas.py +++ b/libs/vertexai/tests/integration_tests/test_maas.py @@ -63,7 +63,6 @@ async def test_astream(model_name: str) -> None: llm = get_vertex_maas_model(model_name=model_name, location="us-central1") output = llm.astream("What is the meaning of life?") async for chunk in output: - print(f"Debug: Received chunk: {chunk}") assert isinstance(chunk, AIMessageChunk)