This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ROCm-Research-Archive/Scripts and Tests/check_models.sh
T
2026-08-20 00:45:43 +02:00

8 lines
155 B
Bash

#!/bin/bash
sleep 1
curl -s http://localhost:9090/api/models | python3 -c "
import sys, json
for m in json.load(sys.stdin):
print(m['id'], m['cat'])
"