| 2327 | } |
| 2328 | |
| 2329 | void llama_set_embeddings(llama_context * ctx, bool embeddings) { |
| 2330 | ctx->set_embeddings(embeddings); |
| 2331 | } |
| 2332 | |
| 2333 | void llama_set_causal_attn(llama_context * ctx, bool causal_attn) { |
| 2334 | ctx->set_causal_attn(causal_attn); |
no test coverage detected