Fix streaming issue for Chat Output vertex

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-03-03 18:23:55 -03:00
commit 42574da37f

View file

@ -609,6 +609,8 @@ class Vertex:
raise ValueError(
f"You are trying to stream to a {self.display_name}. Try using a Chat Output instead."
)
if self.display_name in ["Chat Output"]:
return
raise ValueError(
f"{self.display_name}: You are trying to stream to a non-streamable component."
)