update method

Future<void> update({
  1. required AiModelName? modelName,
})

Updates an existing assistant profile. This will result in an error if a profile has not yet been created for the current profile id.

Implementation

Future<void> update({required AiModelName? modelName}) =>
    _client.mutate(AiAssistantMutateRequest.profileUpdate(
        profileId: _profileId,
        integrationId: _integrationId,
        modelName: modelName,
        strictContext: false));