// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 /// The global namespace for all models pub const GLOBAL_NAMESPACE: &str = "dynamo"; pub fn is_global_namespace(namespace: &str) -> bool { namespace == GLOBAL_NAMESPACE || namespace.is_empty() }