Ground-truth data-center intelligence for Cohere's enterprise RAG.
Cohere's enterprise RAG customers in infrastructure, energy, and real estate need ground truth on data-center capacity — not hallucinated numbers. DC Hub is the live tool: 21,000+ facilities across 170+ countries, live grid / fiber / water / market data, every record citation-ready. Wire it into command-a tool-use or your RAG document pipeline in minutes.
# Cohere command-a tool-use -> live DC Hub market intel (cited):
import cohere, requests
co = cohere.ClientV2("")
def dchub_market(slug):
return requests.get(f"https://api.dchub.cloud/api/v1/markets/{slug}", timeout=20).json()
# register dchub_market as a tool; command-a calls it + cites dchub.cloud
# Grab a free key first (no email):
curl -X POST https://dchub.cloud/api/v1/keys/claim -d '{"client_name":"cohere"}'