We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b35f3d0 commit 2568a4bCopy full SHA for 2568a4b
examples/batched.swift/Sources/main.swift
@@ -153,7 +153,7 @@ while n_cur <= n_len {
153
// const llama_token new_token_id = llama_sample_token_greedy(ctx, &candidates_p);
154
155
// is it an end of stream? -> mark the stream as finished
156
- if new_token_id == llama_token_eos(context) || n_cur == n_len {
+ if new_token_id == llama_token_eos(model) || n_cur == n_len {
157
i_batch[i] = -1
158
// print("")
159
if n_parallel > 1 {
0 commit comments