We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b1cf3 commit eb2fb24Copy full SHA for eb2fb24
models/janus.cpp
@@ -99,7 +99,7 @@ namespace chatllm::janus::pro
99
{
100
if (piece.type == ContentPiece::Type::Text)
101
102
- if (last_is_image && !piece.content._Starts_with("\n"))
+ if (last_is_image && !piece.content.starts_with("\n"))
103
tok->encode("\n", ids);
104
tok->encode(piece.content, ids);
105
last_is_image = false;
0 commit comments