Metadata-Version: 2.4
Name: nemo-fabric-collector
Version: 0.4.0b2
Summary: Standalone collector for NVIDIA NeMo Fabric
Author: NVIDIA Corporation
License-Expression: Apache-2.0
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: starlette>=0.46
Requires-Dist: uvicorn~=0.49
Dynamic: license-file

<!--
SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0
-->

# NVIDIA NeMo Fabric Collector

Standalone service for collecting and routing NVIDIA NeMo Relay records to
NVIDIA NeMo Fabric runtimes.

Adding the collector to an asynchronous Python application can be done as follows.

```python
from nemo_fabric_collector import serve_collector

async with serve_collector(host="127.0.0.1", port=0) as base_url:
    print(base_url)
```
