Get Started in 15 Minutes
1. Create NVIDIA Developer Account
2. Download and Install Neatron 3 SDK
3. Initialize Neatron 3 Model
4. Run Sample Multi-Agent Inference
```python
from neatron3 import NeatronModel
model = NeatronModel()
model.initialize()
results = model.run_inference(agents_data)
print(results)
```