| llama_set_verbosity | R Documentation |
Controls how much diagnostic output is printed during model loading and inference.
llama_set_verbosity(level)
level |
Integer verbosity level: - 0: Silent (no output) - 1: Errors only (default) - 2: Normal (warnings and info) - 3: Verbose (all debug messages) |
No return value, called for side effects. Sets the global verbosity level used by the underlying 'llama.cpp' library.
# Suppress all output
llama_set_verbosity(0)
# Show only errors
llama_set_verbosity(1)
# Verbose output for debugging
llama_set_verbosity(3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.