Bifrost Enterprise is a strict superset of open-source Bifrost - every provider, plugin, integration, andDocumentation Index
Fetch the complete documentation index at: https://docs.getbifrost.ai/llms.txt
Use this file to discover all available pages before exploring further.
config.json field you use in OSS continues to work in Enterprise without changes. The handful of things that do change are operational: how you run the gateway at scale, how you store its state, and how you harden it for production. This section walks through each of those.
Sizing & redundancy
How many Bifrost pods you need, what PostgreSQL hardware to budget for, and where object storage fits in.
Cross-region topology
Why Bifrost tolerates geographically distributed deployments without putting DB latency on the request path.
Security hardening
The non-negotiable controls to enable before exposing Enterprise to real traffic.
Versioning
Enterprise and OSS run on independent version numbers - check the changelog for the OSS base, never derive from the Enterprise version.
Version migrations
Breaking changes between Enterprise releases. Apply these after moving from OSS.
What carries over
Anything that lives inconfig.json works identically in Enterprise - same schema, same provider blocks, same governance entities, same plugin configuration. SDK integrations (OpenAI, Anthropic, Bedrock, GenAI, LiteLLM, LangChain, PydanticAI), drop-in headers, MCP servers, and custom plugins all transfer without modification. See the Enterprise overview for the full feature delta.
What does not carry over: SQLite
Open-source Bifrost ships with a SQLite store as the zero-config default. Enterprise requires PostgreSQL for both the config store and the log store. Any production-grade PostgreSQL distribution works: Amazon RDS, Aurora PostgreSQL, Google Cloud SQL, AlloyDB, Azure Database for PostgreSQL, Crunchy Bridge, or self-managed PG 16+.Migrating SQLite to PostgreSQL with pgloader
pgloader is the recommended one-shot migration tool. It reads the SQLite file directly, translates the schema, and streams data into PostgreSQL using the native COPY protocol in a single command. It also handles type mapping and skips bad rows instead of aborting the whole load.
Install pgloader:
migrate.load):
pgloader is a one-shot loader, not a continuous replicator. Stop the OSS Bifrost gateway before running the migration so no writes land in SQLite after the snapshot is taken. For databases under 10 GB this typically completes in well under an hour.
After the migration
Point Bifrost Enterprise at the new PostgreSQL DSN in yourconfig.json (or the equivalent Helm value). Boot a single Enterprise pod first and confirm it migrates the schema cleanly before scaling out - see Sizing & redundancy for the recommended pod and DB shapes.
Pre-flight checklist
Snapshot your SQLite file
Stop the OSS gateway and copy
bifrost.db to a safe location. This is your rollback point.Provision PostgreSQL
Pick a production-grade PostgreSQL service. See Sizing for hardware recommendations.
Run pgloader
Migrate the SQLite snapshot into PostgreSQL with the command above. Verify row counts on a couple of representative tables.
Point Enterprise at the new DSN
Update the database URL in
config.json (or your Helm values) to the PostgreSQL DSN.Apply hardening before exposing the gateway
Work through Security hardening before allowing inference traffic.

