getCliPath method

Future<String?> getCliPath()

Gets the path to the llama-cli binary.

Returns the full path to the binary if found, null otherwise.

Implementation

Future<String?> getCliPath() async {
  return await _getBinaryPath('llama-cli');
}