返回顶部
l

lightningprox

Pay-per-use AI gateway via Bitcoin Lightning. No API keys, no account — pay sats, get inference. Supports Anthropic (claude-opus-4-5-20251101, claude-sonnet-4-20250514, claude-haiku-4-5-20251001), OpenAI, Together.ai (Llama 4, DeepSeek), Mistral, and Google Gemini 2.5. L402 protocol or spend token auth.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.4.0
安全检测
已通过
753
下载量
0
收藏
概述
安装方式
版本历史

lightningprox

# LightningProx — Lightning-Native AI Gateway Pay-per-use access to AI models across 5 providers via Bitcoin Lightning micropayments. No API keys. No subscriptions. No accounts. Pay sats, get inference. Implements the L402 payment protocol. ## When to Use - Accessing AI models without provider API keys - Autonomous agent inference with Lightning payments - Comparing responses across multiple providers - Low-cost inference via open models (Llama 4, Mistral, DeepSeek) - Vision tasks (multimodal via image_url) - Code generation (Codestral, Devstral) - Reasoning tasks (Magistral) ## Supported Models | Provider | Models (use exact IDs in API calls) | |----------|--------------------------------------| | Anthropic | `claude-opus-4-5-20251101`, `claude-sonnet-4-20250514`, `claude-haiku-4-5-20251001` | | OpenAI | `gpt-4o`, `gpt-4-turbo` | | Together.ai | `meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8`, `meta-llama/Llama-3.3-70B-Instruct-Turbo`, `deepseek-ai/DeepSeek-V3`, `mistralai/Mixtral-8x7B-Instruct-v0.1` | | Mistral | `mistral-large-latest`, `mistral-small-latest`, `open-mistral-nemo`, `codestral-latest`, `devstral-latest`, `pixtral-large-latest`, `magistral-medium-latest` | | Google | `gemini-2.5-flash`, `gemini-2.5-pro` | ## Payment Flow ### Option A — Spend Token (recommended for repeat use) ```bash # 1. Top up at lightningprox.com/topup — pay Lightning invoice, get token # 2. Use token directly curl -X POST https://lightningprox.com/v1/messages \ -H "Content-Type: application/json" \ -H "X-Spend-Token: $LIGHTNINGPROX_SPEND_TOKEN" \ -d '{ "model": "claude-opus-4-5-20251101", "messages": [{"role": "user", "content": "Hello"}], "max_tokens": 1000 }' ``` ### Option B — L402 Pay-per-request (standard protocol) ```bash # 1. Send request without credentials → receive HTTP 402 curl -si -X POST https://lightningprox.com/v1/messages \ -H "Content-Type: application/json" \ -d '{"model": "gemini-2.5-flash", "messages": [{"role": "user", "content": "Hello"}], "max_tokens": 100}' # Response header: WWW-Authenticate: L402 macaroon="eyJ...", invoice="lnbc..." # 2. Pay the bolt11 invoice from your Lightning wallet # 3. Retry with L402 credential (macaroon from header + preimage from wallet) curl -X POST https://lightningprox.com/v1/messages \ -H "Content-Type: application/json" \ -H "Authorization: L402 <macaroon>:<preimage>" \ -d '{"model": "gemini-2.5-flash", "messages": [{"role": "user", "content": "Hello"}], "max_tokens": 100}' ``` ## Drop-in OpenAI SDK Replacement ```bash npm install lightningprox-openai ``` ```javascript // Before: import OpenAI from 'openai' import OpenAI from 'lightningprox-openai' const client = new OpenAI({ apiKey: process.env.LIGHTNINGPROX_SPEND_TOKEN }) // Everything else stays identical: const response = await client.chat.completions.create({ model: 'claude-opus-4-5-20251101', messages: [{ role: 'user', content: 'Hello' }] }) ``` Two lines change. Nothing else does. ## Check Available Models ```bash curl https://lightningprox.com/v1/models # or curl https://lightningprox.com/api/capabilities ``` ## Security Manifest | Permission | Scope | Reason | |------------|-------|--------| | Network | lightningprox.com | API calls for AI inference | | Env Read | LIGHTNINGPROX_SPEND_TOKEN | Authentication for prepaid requests | ## Trust Statement LightningProx is operated by LPX Digital Group LLC. Payment = authentication. No data stored beyond request logs. No accounts, no KYC. Operated at lightningprox.com.

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 lightningprox-1776420064 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 lightningprox-1776420064 技能

通过命令行安装

skillhub install lightningprox-1776420064

下载 Zip 包

⬇ 下载 lightningprox v1.4.0

文件大小: 2.65 KB | 发布时间: 2026-4-17 18:33

v1.4.0 最新 2026-4-17 18:33
Updated to inline L402 flow, new model IDs, added /v1/models endpoint

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部