docs: add NoPII compatible-endpoint provider page#29
Open
evdevlead wants to merge 1 commit intoBerriAI:mainfrom
Open
docs: add NoPII compatible-endpoint provider page#29evdevlead wants to merge 1 commit intoBerriAI:mainfrom
evdevlead wants to merge 1 commit intoBerriAI:mainfrom
Conversation
Adds a provider page documenting NoPII (https://app.nopii.co), a hosted privacy proxy for LLM APIs that tokenizes PII before forwarding to OpenAI or Anthropic and restores the original values in the response. Integrates via the standard api_base override; no new provider code required.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new provider docs page at `docs/providers/nopii.md` covering NoPII (https://app.nopii.co), a hosted privacy proxy for LLM APIs. NoPII exposes OpenAI-compatible `/v1/chat/completions` and Anthropic-compatible `/v1/messages` endpoints, so it works with LiteLLM today via the standard `api_base` override. No core code changes required.
The sidebar is updated to list the new page alphabetically under Providers.
Type
Documentation.
Verification
Local Docusaurus build verified: `npm run build` returns exit 0, and `build/docs/providers/nopii/index.html` (96.7 KB) is emitted with all expected content.
All 4 Python SDK examples in the doc were run live against `https://api.nopii.co\` and returned responses with the expected PII round-trip (tokenize before the request reaches the LLM provider, restore in the response).
Note
This supersedes BerriAI/litellm#26341, which targeted the now-deleted `litellm_oss_branch` in the main `BerriAI/litellm` repo. With docs relocated to this repo, the equivalent change is opened here against `main`.