ChatToolChoice.forced constructor

ChatToolChoice.forced({
  1. required String name,
})

The model is forced to to call the specified tool.

Implementation

factory ChatToolChoice.forced({required final String name}) =>
    ChatToolChoiceForced(name: name);