setSystem method

void setSystem(
  1. String text
)

Set the system prompt for this conversation.

The system prompt defines the assistant's behavior and persists across clear calls.

Implementation

void setSystem(String text) {
  inner.setSystem(text: text);
}