Start a new chat session
start_chat.Rd
This function starts a new chat session by initializing a messages object with an initial system message, creating a new log environment to store the messages, and adding the messages object to the log environment.
Usage
start_chat(
initial_role = "system",
initial_content = "You are a helpful assistant.",
show = FALSE,
chatlog_id = NULL
)
Arguments
- initial_role
A character string representing the role issueing the initial content (per default: "system")
- initial_content
A character string representing the initial message from the system
- show
Logical, if TRUE, the current chat log is displayed via View(). Default is FALSE.
- chatlog_id
A character string representing the ID of this conversation. Per default, this will be set automatically.