Private AI compute that runs on clean energy, provably.
Grove is a decentralized compute network where inference runs inside confidential enclaves on nodes powered by verified renewable energy. Payments and settlement run on Robinhood Chain. You get an OpenAI-compatible endpoint returning an answer plus cryptographic proof it was private and green.
{
"model": "open-llm-8b",
"messages": [
{"role": "user", "content": "Summarize Q3 Financials..."}
],
"temperature": 0.2
}{
"id": "chatcmpl-9f3a...",
"object": "chat.completion",
"choices": [
{
"message": {
"role": "assistant",
"content": "Based on the Q3 financials..."
}
}
],
"usage": { "total_tokens": 1420 }
}"certificate": {
"serial": "GCC-000128401",
"node_id": "node-7f3a",
"privacy": {
"mode": "TEE",
"attestation": "0x44a2..."
},
"carbon": {
"source": "geothermal",
"est_gco2": 0.27
},
"status": "verified on-chain"
}Drop-in replacement.
Zero friction.
Grove exposes a fully OpenAI-compatible API. Just change your base URL, and your existing AI applications instantly run inside confidential enclaves powered by renewable energy.
- ✓OpenAI SDK Compatible
Use the exact same Python or Node.js libraries you already use.
- ✓x402 Pay-per-call
Settle automatically per inference. No subscriptions, no credit cards.
- ✓Certificate Embedded
The Green Compute Certificate is returned directly in the response payload.
from openai import OpenAI
# 1. Change the base URL to Grove
client = OpenAI(
base_url="https://api.grovecompute.xyz/v1",
api_key="ea_wallet..." # x402
)
# 2. Add privacy & green routing preferences
response = client.chat.completions.create(
model="grove-llama3-8b",
messages=[{
"role": "user",
"content": "Analyze Q3 data..."
}],
extra_headers={
"x-grove-privacy": "tee-strict",
"x-grove-carbon-max": "50gCO2/kWh"
}
)
# 3. Get your answer PLUS the certificate!
print(response.choices[0].message.content)
print(f"Certificate: {response.grove_certificate.serial}")GROVE SDK
Confidential Enclaves
TEE and FHE based execution. We handle all privacy isolation so you never think about data leaks again.
Green Certificates
Bidirectional proof of clean energy usage to keep your compliance and ESG reporting informed.
Agent-Native x402
Every session carries full context, sandbox state, files, progress. Your agent never starts from scratch.
Model & Framework Agnostic
No lock-in. Swap models based on cost, capability, or use case. Your tools and auth carry over, zero rework.