The Lilypad Network's
Inference API
Run AI inference jobs across a decentralized network of compute providers. Fast, reliable, and cost-effective.
AI Inference, Reimagined
The power of decentralized compute with the simplicity of APIs you already know
bash
curl -X POST "https://anura-testnet.lilypad.tech/api/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Accept: text/event-stream" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "llama2:7b",
"messages": [
{
"role": "user",
"content": "write a haiku about lilypads"
}
],
"max_tokens": 2048,
"temperature": 0.7
}'