VLMChatTemplate constructor

VLMChatTemplate({
  1. String? templateText,
  2. String? imageMarker,
  3. String? defaultSystemPrompt,
})

Implementation

factory VLMChatTemplate({
  $core.String? templateText,
  $core.String? imageMarker,
  $core.String? defaultSystemPrompt,
}) {
  final result = create();
  if (templateText != null) result.templateText = templateText;
  if (imageMarker != null) result.imageMarker = imageMarker;
  if (defaultSystemPrompt != null)
    result.defaultSystemPrompt = defaultSystemPrompt;
  return result;
}