Skip to content

Commit 2568a4b

Browse files
authored
main.swift : fix eos checking (#4197)
llama_token_eos(const struct llama_model *) is currently getting struct llama_context type variable context as a parameter.
1 parent b35f3d0 commit 2568a4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/batched.swift/Sources/main.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ while n_cur <= n_len {
153153
// const llama_token new_token_id = llama_sample_token_greedy(ctx, &candidates_p);
154154

155155
// is it an end of stream? -> mark the stream as finished
156-
if new_token_id == llama_token_eos(context) || n_cur == n_len {
156+
if new_token_id == llama_token_eos(model) || n_cur == n_len {
157157
i_batch[i] = -1
158158
// print("")
159159
if n_parallel > 1 {

0 commit comments

Comments
 (0)