I ❤️ how I can make a simple Web interface for running Ollama #LLMs locally in R with the {ellmer}, {shiny}, and {shinychat} #RStats 📦s

Code fits in a single post! #GenAI

library(shiny)
library(shinychat)
ui <- bslib::page_fluid(chat_ui("chat"))
server <- function(input, output, session) { […]

Comments