live_console: Open a live chat application

View source: R/shiny.R

live_consoleR Documentation

Open a live chat application

Description

  • live_console() lets you chat interactively in the console.

  • live_browser() lets you chat interactively in a browser.

Note that these functions will mutate the input chat object as you chat because your turns will be appended to the history.

Usage

live_console(chat, quiet = FALSE)

live_browser(chat, quiet = FALSE)

Arguments

chat

A chat object created by chat_openai() or friends.

quiet

If TRUE, suppresses the initial message that explains how to use the console.

Value

(Invisibly) The input chat.

Examples

## Not run: 
chat <- chat_claude()
live_console(chat)
live_browser(chat)

## End(Not run)

ellmer documentation built on April 4, 2025, 3:53 a.m.