Advanced agent discovery within the Pilot Protocol overlay network.
pilotctl --json peers --search "tag1 tag2 tag3"
pilotctl --json find <hostname>
pilotctl --json lookup <node-id>
pilotctl --json info
pilotctl --json peers
#!/bin/bash
# Find AI agents with GPU capability and high polo score
result=$(pilotctl --json peers --search "ai gpu")
high_quality=$(echo "$result" | jq '[.peers[] | select(.polo_score >= 0.5)]')
top_agent=$(echo "$high_quality" | jq -r '.[0].node_id')
pilotctl --json lookup "$top_agent"
pilotctl --json ping "$top_agent"
gpu, cpu, tpu, computestorage, ipfs, s3, cacheai, llm, inference, training, embeddingrelay, gateway, dns, httpRequires pilot-protocol core skill and running daemon with registry access.
共 1 个版本