From ba32676f07c2a0f1bf042a4eb8473108eac2b68f Mon Sep 17 00:00:00 2001 From: Alex Christian Date: Sat, 25 Jul 2026 13:36:20 -0700 Subject: [PATCH] profile: add drop-into-existing-pipeline recipe + cost-header read MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes the two audit gaps for the org profile: - Integration path (was build-new only): add an 'Already have a pipeline?' section — the one-line keyless base_url + Floe key swap, OpenAI-compatible, linking to the docs integration guide. - Cost visibility: note that each response returns its cost in X-Floe-Payment-Amount so you can meter per call and per task. --- profile/README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/profile/README.md b/profile/README.md index 5dcd6a8..bd6a2ee 100644 --- a/profile/README.md +++ b/profile/README.md @@ -58,7 +58,7 @@ curl -X POST https://credit-api.floelabs.xyz/v1/proxy/fetch \ -d '{"url":"","method":"POST","body":"{...text...}"}' ``` -All three legs share `X-Floe-Task-Id`, so one task budget caps the whole conversation — STT, LLM, and TTS together, on one ledger. +All three legs share `X-Floe-Task-Id`, so one task budget caps the whole conversation — STT, LLM, and TTS together, on one ledger. Each response returns its own cost in `X-Floe-Payment-Amount` (e.g. `0.0125`), so you can meter spend per call and per task. **MCP (zero install)** — add to Claude Desktop / Claude Code / Cursor: @@ -73,6 +73,22 @@ Prefer an SDK? `npm install floe-agent` or `pip install floe-agentkit-actions` → [Voice Stack quickstart →](https://floe-labs.gitbook.io/docs/build/voice-stack) +## Already have a pipeline? + +Don't rebuild anything. Route just the LLM leg — change the base URL and the key: + +```python +from openai import OpenAI + +client = OpenAI( + base_url="https://credit-api.floelabs.xyz/v1", # was https://api.openai.com/v1 + api_key=os.environ["FLOE_API_KEY"], # your Floe key — not an OpenAI key +) +# every call now bills to your Floe balance, under your spend caps +``` + +OpenAI-compatible, so it works from any SDK. Route one leg or your whole voice bill → [Add Floe to your existing pipeline](https://floe-labs.gitbook.io/docs/getting-started/integrate-existing-pipeline). + ## Vendor Marketplace — 2,000+ vendor API services, one key | Category | Services |