consilium 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- consilium-0.0.1/PKG-INFO +25 -0
- consilium-0.0.1/README.md +11 -0
- consilium-0.0.1/consilium/__init__.py +2 -0
- consilium-0.0.1/pyproject.toml +21 -0
consilium-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: consilium
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Multi-model deliberation CLI — 4 frontier LLMs debate, then Claude judges.
|
|
5
|
+
Project-URL: Homepage, https://github.com/terry-li-hm/consilium
|
|
6
|
+
Author: Terry Li
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Keywords: ai,council,deliberation,llm,multi-model
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# consilium
|
|
16
|
+
|
|
17
|
+
Multi-model deliberation CLI. 4 frontier LLMs debate a question with blind first-pass, rotating challenger, and anonymous deliberation — then Claude judges and synthesizes.
|
|
18
|
+
|
|
19
|
+
> Formerly `frontier-council`. Full release coming soon.
|
|
20
|
+
|
|
21
|
+
## Install
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install frontier-council # current version
|
|
25
|
+
```
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# consilium
|
|
2
|
+
|
|
3
|
+
Multi-model deliberation CLI. 4 frontier LLMs debate a question with blind first-pass, rotating challenger, and anonymous deliberation — then Claude judges and synthesizes.
|
|
4
|
+
|
|
5
|
+
> Formerly `frontier-council`. Full release coming soon.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install frontier-council # current version
|
|
11
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "consilium"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Multi-model deliberation CLI — 4 frontier LLMs debate, then Claude judges."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [{ name = "Terry Li" }]
|
|
13
|
+
keywords = ["llm", "deliberation", "multi-model", "council", "ai"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/terry-li-hm/consilium"
|