Fix typo in llama_set_embeddings comment (#8077)

This commit is contained in:
Daniel Bevenius 2024-06-23 15:39:45 +02:00 committed by GitHub
parent b6b9a8e606
commit 11318d9aa1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -786,7 +786,7 @@ extern "C" {
// Get the number of threads used for prompt and batch processing (multiple token).
LLAMA_API uint32_t llama_n_threads_batch(struct llama_context * ctx);
// Set whether the model is in embeddings model or not
// Set whether the model is in embeddings mode or not
// If true, embeddings will be returned but logits will not
LLAMA_API void llama_set_embeddings(struct llama_context * ctx, bool embeddings);