updateInstructions method
Update assistant instructions
Implementation
Future<Assistant> updateInstructions(
String assistantId,
String newInstructions,
) async {
final modifyRequest = ModifyAssistantRequest(
instructions: newInstructions,
);
return await modifyAssistant(assistantId, modifyRequest);
}