llama_set_embeddings method
Set whether the context outputs embeddings or not TODO: rename to avoid confusion with llama_get_embeddings()
Implementation
void llama_set_embeddings(ffi.Pointer<llama_context> ctx, bool embeddings) {
return _llama_set_embeddings(ctx, embeddings);
}