MCPcopy Create free account
hub / github.com/RightNow-AI/rightnow-cli / get_all_tools

Method get_all_tools

rightnow_cli/utils/detection.py:894–907  ·  view source on GitHub ↗

Detect all tools and return status. Returns: Dict mapping tool name to ToolInfo

(self)

Source from the content-addressed store, hash-verified

892 self._cache.clear()
893
894 def get_all_tools(self) -> Dict[str, ToolInfo]:
895 """
896 Detect all tools and return status.
897
898 Returns:
899 Dict mapping tool name to ToolInfo
900 """
901 return {
902 'nvcc': self.detect_nvcc(),
903 'cpp_compiler': self.detect_cpp_compiler(),
904 'ncu': self.detect_ncu(),
905 'nsys': self.detect_nsys(),
906 'nvprof': self.detect_nvprof(),
907 }
908
909 def print_status(self):
910 """Print detection status (for debugging)."""

Callers 3

print_statusMethod · 0.95
run_setup_wizardFunction · 0.95
show_compiler_statusFunction · 0.95

Calls 5

detect_nvccMethod · 0.95
detect_cpp_compilerMethod · 0.95
detect_ncuMethod · 0.95
detect_nsysMethod · 0.95
detect_nvprofMethod · 0.95

Tested by

no test coverage detected