diff options
Diffstat (limited to 'src/construct/attention.rs')
-rw-r--r-- | src/construct/attention.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/construct/attention.rs b/src/construct/attention.rs index 1aa25c0..eb93810 100644 --- a/src/construct/attention.rs +++ b/src/construct/attention.rs @@ -193,7 +193,7 @@ fn inside(tokenizer: &mut Tokenizer, code: Code, marker: MarkerKind) -> State { _ => { tokenizer.exit(Token::AttentionSequence); tokenizer.register_resolver("attention".to_string(), Box::new(resolve_attention)); - State::Ok(if matches!(code, Code::None) { 0 } else { 1 }) + State::Ok(0) } } } |