From aa69d36732e7869ba0afbe74b11727fff6bd72b5 Mon Sep 17 00:00:00 2001 From: Richard Abrich Date: Mon, 2 Mar 2026 14:32:23 -0500 Subject: [PATCH] fix: rename PyPI package to openadapt-consilium The `consilium` name on PyPI is owned by another project. Rename to `openadapt-consilium` to match the repo name. The Python import name remains `consilium` (unchanged). Co-Authored-By: Claude Opus 4.6 --- README.md | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 869df5e..384561c 100644 --- a/README.md +++ b/README.md @@ -41,14 +41,14 @@ Consilium queries multiple LLMs in parallel, has each model review the others' r ## Installation ```bash -pip install git+https://github.com/OpenAdaptAI/openadapt-consilium.git +pip install openadapt-consilium ``` Or for development: ```bash git clone https://github.com/OpenAdaptAI/openadapt-consilium.git -cd consilium +cd openadapt-consilium pip install -e ".[dev]" ``` @@ -252,7 +252,7 @@ for r in result.individual_responses: ```bash git clone https://github.com/OpenAdaptAI/openadapt-consilium.git -cd consilium +cd openadapt-consilium pip install -e ".[dev]" pytest ``` diff --git a/pyproject.toml b/pyproject.toml index 0ca57fd..91dee7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "consilium" +name = "openadapt-consilium" version = "0.3.1" description = "Multi-LLM council for consensus-driven AI responses" readme = "README.md"