Open WebUI Pipelines connector for the TKEN OpenAI-compatible API gateway.
This project helps Open WebUI users route selected chats through https://www.tken.shop/v1 while keeping the same OpenAI-compatible chat completions shape.
- A small Open WebUI Pipelines manifold provider
- A Docker Compose setup for local testing
- A model allowlist so public placeholders can be replaced safely
- A GitHub-ready release package for developers who already use Open WebUI
This is not an official Open WebUI project. It is a connector template based on the MIT-licensed Open WebUI Pipelines project.
cp .env.example .env
docker compose up -dThen in Open WebUI:
- Open Admin Settings > Connections.
- Add an OpenAI-compatible connection.
- Set API URL to
http://localhost:9099. - Set API key to the
PIPELINES_API_KEYvalue in.env. - Open Admin Settings > Pipelines and update the TKEN valves.
For public deployments, replace the example PIPELINES_API_KEY value in .env before exposing the service.
| Valve | Default | Purpose |
|---|---|---|
TKEN_API_BASE_URL |
https://www.tken.shop/v1 |
OpenAI-compatible TKEN API base URL |
TKEN_API_KEY |
empty | User API key from TKEN |
MODEL_ALLOWLIST |
tken-free-model,tken-premium-model |
Public-safe model names to show in Open WebUI |
Replace placeholder model IDs after public model names are confirmed.
| Path | Purpose |
|---|---|
pipelines/tken_manifold_pipeline.py |
Open WebUI manifold pipeline for TKEN-compatible routing |
.env.example |
Example environment variables |
docker-compose.yml |
Local Pipelines runtime |
assets/ |
Preview images and GIF for GitHub |
docs/utm-links.md |
Tracking links for promotion |
docs/publish-checklist.md |
Public launch checklist |
- Test selected free or low-cost models inside Open WebUI.
- Keep premium GPT-style models available for harder tasks.
- Route chat, summarization, extraction, and coding requests through one OpenAI-compatible endpoint.
- Publish a transparent connector example for developers searching for Open WebUI API gateway setup.
Start with the main site:
https://www.tken.shop/?utm_source=github&utm_medium=readme&utm_campaign=openwebui_pipelines
API base URL:
https://www.tken.shop/v1
The pipeline pattern and base project are derived from the MIT-licensed Open WebUI Pipelines project. The included LICENSE file preserves the upstream MIT license notice.
See NOTICE.md for attribution and modification notes.

