Skip to content

Commit eb2fb24

Browse files
committed
fix for GCC (CI)
1 parent 74b1cf3 commit eb2fb24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/janus.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ namespace chatllm::janus::pro
9999
{
100100
if (piece.type == ContentPiece::Type::Text)
101101
{
102-
if (last_is_image && !piece.content._Starts_with("\n"))
102+
if (last_is_image && !piece.content.starts_with("\n"))
103103
tok->encode("\n", ids);
104104
tok->encode(piece.content, ids);
105105
last_is_image = false;

0 commit comments

Comments
 (0)