File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ export const AnthropicChatCompleteStreamChunkTransform: (
485
485
chunk = chunk . replace ( / ^ e v e n t : c o n t e n t _ b l o c k _ s t a r t [ \r \n ] * / , '' ) ;
486
486
chunk = chunk . replace ( / ^ e v e n t : m e s s a g e _ d e l t a [ \r \n ] * / , '' ) ;
487
487
chunk = chunk . replace ( / ^ e v e n t : m e s s a g e _ s t a r t [ \r \n ] * / , '' ) ;
488
- chunk = chunk . replace ( / ^ e v e n t : e r r o r / , '' ) ;
488
+ chunk = chunk . replace ( / ^ e v e n t : e r r o r [ \r \n ] * / , '' ) ;
489
489
chunk = chunk . replace ( / ^ d a t a : / , '' ) ;
490
490
chunk = chunk . trim ( ) ;
491
491
Original file line number Diff line number Diff line change @@ -988,7 +988,7 @@ export const VertexAnthropicChatCompleteStreamChunkTransform: (
988
988
chunk = chunk . replace ( / ^ e v e n t : c o n t e n t _ b l o c k _ s t a r t [ \r \n ] * / , '' ) ;
989
989
chunk = chunk . replace ( / ^ e v e n t : m e s s a g e _ d e l t a [ \r \n ] * / , '' ) ;
990
990
chunk = chunk . replace ( / ^ e v e n t : m e s s a g e _ s t a r t [ \r \n ] * / , '' ) ;
991
- chunk = chunk . replace ( / ^ e v e n t : e r r o r / , '' ) ;
991
+ chunk = chunk . replace ( / ^ e v e n t : e r r o r [ \r \n ] * / , '' ) ;
992
992
chunk = chunk . replace ( / ^ d a t a : / , '' ) ;
993
993
chunk = chunk . trim ( ) ;
994
994
You can’t perform that action at this time.
0 commit comments