> For the complete documentation index, see [llms.txt](https://seekspeed.gitbook.io/seekspeed-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://seekspeed.gitbook.io/seekspeed-docs/spec-lab/honesty-gate.md).

# Honesty Gate

The Spec Lab refuses to run a speculative-decoding job against a hosted closed-weight provider, full stop.

If the selected connector's `baseUrl` matches a known closed provider (`api.openai.com`, `api.anthropic.com`, `openrouter.ai`, etc.), the **Run** button is replaced with a banner:

> **Speculative decoding cannot be measured on closed providers.** You're routing through a hosted API. The provider may or may not run speculative decoding internally — but you can't measure its acceptance rate, control the draft model, or A/B against a non-speculative baseline. Switch to a self-hosted vLLM, TGI, llama.cpp, or DeepSpec endpoint to run this experiment.

The gate is enforced both client-side (button is disabled) and server-side (the `runSpecBenchmark` function rejects with `403 closed_provider_disallowed`).

## Why this matters

The single most common dishonest claim in agent performance work is "we got 2.5× speedup on `gpt-4o`". You cannot. The OpenAI inference stack is a closed black box; whatever speculative decoding it runs internally is already in the latency number you measured. Layering a SeekSpeed "spec lab run" on top of it would just A/B two identical hosted calls and call the variance a speedup.

The honesty gate is one line of UX. It's also the difference between a benchmark tool and a marketing tool.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://seekspeed.gitbook.io/seekspeed-docs/spec-lab/honesty-gate.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
