update method

Future<void> update({
  1. required String instruction,
})

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

Implementation

Future<void> update({required String instruction}) =>
    _client.mutate(AiAssistantMutateRequest.instructionUpdate(
        profileId: _profileId,
        integrationId: _integrationId,
        id: _id,
        instruction: instruction));