insert method
Adds a new instruction entry to the assistant profile. This will result in an error if an entry already exists with the same id.
Implementation
Future<void> insert({required String instruction}) =>
_client.mutate(AiAssistantMutateRequest.instructionInsert(
profileId: _profileId,
integrationId: _integrationId,
id: _id,
instruction: instruction));