| 2355 | } |
| 2356 | |
| 2357 | float * llama_get_embeddings(llama_context * ctx) { |
| 2358 | ctx->synchronize(); |
| 2359 | |
| 2360 | return ctx->get_embeddings(); |
| 2361 | } |
| 2362 | |
| 2363 | float * llama_get_embeddings_ith(llama_context * ctx, int32_t i) { |
| 2364 | ctx->synchronize(); |
no test coverage detected