Nothing
library(ggmlR)
# Проверка версии
cat("GGML version:", ggml_version(), "\n")
# Тест библиотеки
ggml_test()
# Создание контекста
ctx <- ggml_init(16 * 1024 * 1024) # 16MB
cat("Context created successfully\n")
# Освобождение ресурсов
ggml_free(ctx)
cat("Context freed\n")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.