| 2361 | } |
| 2362 | |
| 2363 | float * llama_get_embeddings_ith(llama_context * ctx, int32_t i) { |
| 2364 | ctx->synchronize(); |
| 2365 | |
| 2366 | return ctx->get_embeddings_ith(i); |
| 2367 | } |
| 2368 | |
| 2369 | float * llama_get_embeddings_seq(llama_context * ctx, llama_seq_id seq_id) { |
| 2370 | ctx->synchronize(); |
no test coverage detected