dynamo_llm/
namespace.rs

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