neomageTools method
Invoke a Neomage tool.
Implementation
Future<BridgeResponse> neomageTools({
required String toolName,
required Map<String, dynamic> toolInput,
String? conversationId,
}) {
return sendRequest('neomage/tools', {
'toolName': toolName,
'toolInput': toolInput,
'conversationId': ?conversationId,
});
}