update method
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));