Generate world-class Power BI dashboards from any data source — automatically.
Point pbigen at a table or view. It reads the schema, reasons about the shape of the data (types and cardinality), and writes a ready-to-open Power BI project: a left navigation sidebar with your brand and filters, KPI cards, data-appropriate charts, a detail table, and a "how to use this report" note — laid out cleanly, every time.
No hand-built templates. No copy-pasting M queries. No guessing which chart fits which column.
import pbigen
result = pbigen.generate(
"bigquery",
source_config={"project": "my-proj", "dataset": "sales", "table": "orders"},
objective="Revenue and orders by region over time",
theme="midnight",
out_dir="out",
)
print(result.pbip_path) # open this in Power BI Desktop
Table of contents
- Why pbigen
- How pbigen compares
- Features
- Installation
- Quickstart
- Supported sources
- Models: deterministic by default, LLM optional
- Themes: bring your own, or use a built-in
- How it works
- Anatomy of the output
- Opening the result in Power BI Desktop
- The design intelligence
- Python API
- Command-line interface
- Extending pbigen
- Roadmap
- FAQ
- Contributing
- License
Why pbigen
Building a good Power BI report by hand is slow and inconsistent. Someone picks the charts, wires every field, styles every visual, writes the connection query, and repeats it for the next dataset. The mechanical 90% eats the time that should go to the 10% that actually needs judgement.
pbigen does the mechanical 90% correctly and consistently. It is opinionated about good defaults and unopinionated about your stack:
- Opinionated defaults — cardinality-aware chart selection, a date column becomes a range filter (never a 500-row dropdown), wide breakdowns go in a matrix, KPIs lead every page, and a clean navigation sidebar is always there.
- Unopinionated stack — bring your own warehouse or lakehouse, your own model (or none), and your own theme.
The output is a standard, version-controllable PBIP project — not a black-box binary — so it drops straight into source control and your existing Power BI workflow.
How pbigen compares
AI dashboard generation is a crowded space in 2026 — Power BI Copilot and Agent Skills, plus agentic BI platforms like ThoughtSpot, Tableau Pulse, Sigma, Domo and Tellius. Most of them are powerful, and most are cloud services that build dashboards inside their own surface. pbigen takes a different shape: it's a small, open-source library that turns a table into portable, version-controlled Power BI files on your machine — free, and offline by default.
| Capability | pbigen | Power BI Copilot / Agent Skills | Agentic BI platforms (ThoughtSpot, Sigma, Tableau Pulse, Domo, Tellius) |
Generic LLM (ChatGPT / Claude) |
|---|---|---|---|---|
| Outputs native, portable Power BI files (PBIP you own) | ✅ | ⚠️ builds in the service | ❌ their own BI surface | ❌ snippets only |
| Version-controlled, CI-friendly text output (PBIR + TMDL) | ✅ | ⚠️ not the generation flow | ❌ | ❌ |
| Runs locally / in CI, no paid cloud capacity | ✅ | ❌ needs Fabric capacity (F2+) | ❌ SaaS subscription | ⚠️ needs API/subscription |
| Works with no LLM / API key (deterministic) | ✅ | ❌ | ❌ | ❌ |
| One interface across warehouses + lakehouse (Iceberg/Delta) + semantic layer, multi-cloud | ✅ | ⚠️ Fabric / OneLake-centric | ⚠️ varies by vendor | ❌ |
| Metadata-only — no row data leaves your environment to design | ✅ | ⚠️ cloud service | ⚠️ SaaS | ❌ you paste data |
| Open source (MIT), self-hostable, no lock-in | ✅ | ❌ | ❌ | ❌ |
| Cost | Free | Paid (Fabric capacity) | Paid (per-seat SaaS) | Usage-based |
(⚠️ = partial or conditional; comparisons reflect each tool's common default in 2026, not every edge case. Copilot / Agent Skills and the agentic platforms are genuinely capable — pbigen is the open, local, file-first option, and pairs fine alongside them.)
Features
- 🔌 16 source kinds, one interface — warehouses, query engines, open table formats on every major cloud, and a semantic layer.
- 🧠 Data-shape-aware design — chart and filter choices follow from column types and cardinality, not guesswork.
- 🎨 Themes — three polished built-ins, or drop in your corporate Power BI theme JSON.
- 🤖 Pluggable design model — deterministic by default (no key, no network); optionally let any LiteLLM model (hosted or fully local) refine the design. Only metadata is ever sent.
- 🧱 Standards-based output — a PBIP project (PBIR report + TMDL semantic model) that validates against Microsoft's published schemas and opens directly in Power BI Desktop.
- 🔒 Read-only and safe — sources are introspection-only; no rows are read to design the report.
- 🧩 Clean seams — source → design → layout → emit are independent and individually testable.
- 🖥️ Python API and CLI — script it or run it from the terminal.
Installation
pip install pbigen
The core is dependency-light. Install only the extras you need — each pulls in exactly one stack's driver:
| Extra | Installs support for |
|---|---|
pbigen[bigquery] |
BigQuery, BigLake, BigQuery Omni |
pbigen[redshift] |
Amazon Redshift |
pbigen[athena] |
Amazon Athena |
pbigen[snowflake] |
Snowflake |
pbigen[synapse] |
Azure Synapse / Microsoft Fabric / SQL Server |
pbigen[databricks] |
Databricks SQL |
pbigen[clickhouse] |
ClickHouse |
pbigen[postgres] |
PostgreSQL |
pbigen[lakehouse] |
Parquet, Iceberg, Delta on local / GCS / S3 / ADLS (DuckDB) |
pbigen[cube] |
Cube semantic layer |
pbigen[llm] |
LLM-refined design via LiteLLM |
pbigen[all] |
Everything above |
pip install "pbigen[bigquery]"
pip install "pbigen[lakehouse,llm]"
pip install "pbigen[all]"
Requirements: Python 3.10+. To open the generated project you need Power BI Desktop with the PBIR preview enabled — see Opening the result.
Quickstart
Python
import pbigen
result = pbigen.generate(
"snowflake",
source_config={
"account": "ab12345", "warehouse": "BI_WH",
"database": "ANALYTICS", "schema": "SALES", "table": "ORDERS",
},
objective="Sales performance by region and product",
theme="midnight",
out_dir="out",
name="SalesOverview",
)
print(f"{result.n_pages} pages, {result.n_columns} columns → {result.pbip_path}")
Command line
pbigen generate --source snowflake \
--set account=ab12345 warehouse=BI_WH database=ANALYTICS schema=SALES table=ORDERS \
--objective "Sales performance by region and product" \
--theme midnight --out out --name SalesOverview
Try it offline in 30 seconds
No cloud account needed — generate from a local Parquet file:
pip install "pbigen[lakehouse]" pyarrow
python examples/generate_from_parquet.py # builds a sample file and generates from it
Supported sources
Every adapter implements the same read-only contract — introspect (columns + canonical types), approx_distinct (cardinality, to drive design), and power_query (the M the report uses to connect at refresh). Full config and credentials for each live in docs/sources.md.
| Cloud / family | Sources | Extra |
|---|---|---|
| GCP | BigQuery, BigLake, BigQuery Omni; Parquet / Iceberg / Delta in GCS | bigquery, lakehouse |
| AWS | Redshift, Athena; Parquet / Iceberg / Delta in S3 | redshift, athena, lakehouse |
| Azure | Synapse, Fabric (SQL endpoint); Parquet / Iceberg / Delta in ADLS | synapse, lakehouse |
| Multi / other | Snowflake, Databricks, ClickHouse, PostgreSQL | snowflake, databricks, clickhouse, postgres |
| Semantic layer | Cube | cube |
pbigen sources # list every source kind
pbigen test --source lakehouse --set uri=./sales.parquet fmt=parquet # verify connectivity
Open table formats (Parquet, Apache Iceberg, Delta Lake) are read on local disk or any of the three clouds through a single DuckDB-powered adapter — no cluster required for introspection. For report refresh, raw Parquet is reachable via Power BI's storage connectors; Iceberg/Delta are best served through a Fabric Lakehouse or Databricks SQL endpoint (details in docs/sources.md).
Models: deterministic by default, LLM optional
Out of the box, pbigen designs dashboards with a deterministic, no-key engine — no network call, no cost, fully reproducible. To let a language model refine the design, pass any LiteLLM model id — hosted or a local open-source model:
pbigen.generate("bigquery", source_config={...},
model="gpt-4o-mini") # bring your own key via env
pbigen.generate("bigquery", source_config={...},
model="anthropic/claude-sonnet-4-6")
pbigen.generate("bigquery", source_config={...},
model="ollama/llama3", # fully local, open-source
model_config={"api_base": "http://localhost:11434"})
Privacy: only metadata — column names, canonical types and approximate distinct counts — is ever sent to a model. No row data leaves your machine. Every field the model returns is validated against the live schema, and if the model is unreachable or returns something unusable, pbigen falls back to the deterministic design so generation never hard-fails.
More in docs/models.md.
Themes: bring your own, or use a built-in
pbigen.generate(..., theme="midnight") # built-in: midnight | slate | aurora
pbigen.generate(..., theme="./corporate.json") # your Power BI theme JSON, applied as-is
| Theme | Look |
|---|---|
midnight |
Deep indigo sidebar, blue/teal data colours |
slate |
Neutral slate, red accent |
aurora |
Deep green sidebar, green/blue data colours |
Your theme travels with the project as a registered custom theme. More in docs/themes.md.
How it works
source ──introspect──▶ canonical schema ──▶ design brain ──▶ layout ──▶ Power BI project
(+cardinality) (types, counts) (charts+filters) (sidebar) (PBIP + PBIR + TMDL)
▲
optional LLM refine
(metadata only)
- Source introspects the table (metadata only) and reports approximate cardinality.
- Design brain classifies every column (measure / date / category / geo / id), proposes measures, and picks visuals and filters from the data shape. An LLM can refine this; the rules always produce a complete design on their own.
- Layout packs the page — a left sidebar for brand + filters + notes, a KPI row, then charts and tables placed by footprint.
- Emitter writes a standard PBIP project: a PBIR report and a TMDL semantic model wired to the source via Power Query.
Anatomy of the output
out/SalesOverview/
├── SalesOverview.pbip # open this in Power BI Desktop
├── SalesOverview.Report/ # the report (PBIR format)
│ ├── definition.pbir
│ └── definition/
│ ├── report.json # theme + layout settings
│ ├── version.json
│ ├── pages/
│ │ ├── pages.json # page order
│ │ └── <page>/page.json + visuals/<v>/visual.json
│ └── StaticResources/RegisteredResources/<theme>.json
└── SalesOverview.SemanticModel/ # the model (TMDL)
├── definition.pbism
└── definition/
├── database.tmdl
├── model.tmdl
└── tables/<table>.tmdl # columns, DAX measures, the M connection
Everything is text and version-control-friendly. The report JSON validates against Microsoft's published PBIR JSON schemas.
Opening the result in Power BI Desktop
The output is a PBIP project. Enable the enhanced report format once:
- File → Options and settings → Options → Preview features
- Tick "Store reports using enhanced metadata format (PBIR)"
- Restart Power BI Desktop.
Then open the .pbip file and Refresh to load data through the generated connection. (This is a
one-time setting; PBIR is Microsoft's text-based report format that pbigen emits.)
The design intelligence
The deterministic engine makes these calls from the data shape, before any LLM is involved:
- Column roles — measures, dates, categories, geo and identifiers are detected from type and name, so ids and codes never get charted as if they were metrics.
- Dates are ranges, not dropdowns — a real date/time column drives a range slider; a 500-value dropdown never happens.
- Donut vs. bar — a breakdown with ≤ 8 categories becomes a donut, otherwise a bar.
- Redundant filters dropped — once a real date exists, derived period columns (year, month,
year_month) are kept out of the filter rail. - Wide goes wide — matrices with a series or many measures, and wide tables, get full width; narrow visuals pair up two-across.
- A narrative — pages flow Executive Summary → Trends → Segmentation → Detail, each led by KPI cards, with a "how to use this report" note in the sidebar.
Python API
pbigen.generate(
source, # a source kind string, or a configured Source instance
*,
out_dir="out", # where to write the project
name=None, # project name (defaults to the table's display name)
objective="", # plain-language description of what the report should answer
model=None, # None/"deterministic" | LiteLLM model id | a Model instance
theme=None, # built-in name | path to a Power BI theme JSON
source_config=None, # dict passed to the source adapter (when source is a string)
model_config=None, # dict passed to the model (e.g. api_key, api_base, temperature)
) -> GenerateResult
@dataclass
class GenerateResult:
pbip_path: str # path to the .pbip to open
design: Design # the pages/visuals/measures that were generated
table: str
n_columns: int
n_pages: int
model_name: str # "deterministic" or e.g. "litellm:gpt-4o-mini"
Helpers: pbigen.available_kinds(), pbigen.available_themes(), pbigen.get_source(kind, **cfg).
Command-line interface
pbigen generate --source <kind> [--set k=v ...] [--objective ...] \
[--model ...] [--theme ...] [--out DIR] [--name NAME]
pbigen test --source <kind> [--set k=v ...] # verify connectivity + introspection
pbigen sources # list available source kinds
pbigen themes # list built-in themes
pbigen --version
--set takes key=value pairs forwarded to the adapter; integers and booleans are coerced.
Extending pbigen
Add a source — subclass Source (or SqlSource for a SQLAlchemy dialect), implement
introspect, approx_distinct and power_query, and register it:
from pbigen.sources.base import Source
class MySource(Source):
kind = "mysource"
def introspect(self): ...
def approx_distinct(self, columns): ...
def power_query(self): ...
Add a design model — subclass Model and return a Design (start from the deterministic one):
from pbigen.models.base import Model
from pbigen.core.design import design as deterministic
class MyModel(Model):
name = "my-model"
def design(self, schema, objective):
return deterministic(schema, objective) # then refine
pbigen.generate(..., model=MyModel())
See CONTRIBUTING.md for the full guide.
Roadmap
- Live smoke-test matrix across every credentialed connector
- Refresh-friendly adapters for Iceberg/Delta via Fabric Lakehouse shortcuts
- Refactor mode: add pages / visuals to an existing report
- Additional emit targets beyond Power BI
- Relationship and multi-table (star-schema) modelling
Ideas and issues welcome — see Contributing.
FAQ
Does it read my data? No. Sources introspect metadata only to design the report. Data is loaded by Power BI at refresh time, on your machine, through the generated connection.
Do I need an API key or an LLM? No. The default design engine is deterministic and offline. An LLM is entirely optional.
What exactly gets sent to an LLM if I enable one? Only column names, canonical types and approximate distinct counts — never rows.
Can I use my company's Power BI theme? Yes — pass the path to your theme JSON as theme=.
Why PBIP/PBIR? It's Microsoft's text-based, source-control-friendly report format, so the output is diffable, reviewable and CI-friendly rather than an opaque binary.
Contributing
Contributions are very welcome. Set up a dev environment, run ruff and pytest (the suite runs
fully offline), and open a focused PR. See CONTRIBUTING.md.
License
MIT © Arka Gupta. See LICENSE.
Built by Arka Gupta.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pbigen-0.1.0.tar.gz.
File metadata
- Download URL: pbigen-0.1.0.tar.gz
- Upload date:
- Size: 35.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66ad20533a7d592994f1499acd9440c68886fb68283128daebe97ff7a8a8d92d
|
|
| MD5 |
c8ba283b42af64568f7a02cd03f840df
|
|
| BLAKE2b-256 |
8a4ae27067ef271df8de360d779b88f3e2074f1de17f5fff18d32a969a5b1e1b
|
File details
Details for the file pbigen-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pbigen-0.1.0-py3-none-any.whl
- Upload date:
- Size: 46.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94dba0a37f0f2d68f74d3d54f8064c5e2bb9299398f97bf398d604212ac95e38
|
|
| MD5 |
b2bd53e614508e67a2dddbc88bc27585
|
|
| BLAKE2b-256 |
2ff7e9356e1559124351a0ccbb8f6760f5333a4a0042c233a2837bd0176694a0
|