VLMChatTemplate constructor
VLMChatTemplate(
{ - String? templateText,
- String? imageMarker,
- 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;
}