systemPrompt method

LLMBuilder systemPrompt(
  1. String prompt
)

Sets the system prompt/context

Implementation

LLMBuilder systemPrompt(String prompt) {
  _config = _config.copyWith(systemPrompt: prompt);
  return this;
}