Starts a Shiny app interface to the LLM
chattr_app(
viewer = c("viewer", "dialog"),
as_job = getOption("chattr.as_job", FALSE),
as_job_port = getOption("shiny.port", 7788),
as_job_host = getOption("shiny.host", "127.0.0.1")
)A chat interface inside the 'RStudio' IDE
Specifies where the Shiny app is going to display
App runs as an RStudio IDE Job. Defaults to FALSE. If set to TRUE, the Shiny app will not be able to transfer the code blocks directly to the document, or console, in the IDE.
Port to use for the Shiny app. Applicable only if as_job
is set to TRUE.
Host IP to use for the Shiny app. Applicable only if
as_job is set to TRUE.