frontier-council 0.1.2__tar.gz → 0.1.3__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.
- {frontier_council-0.1.2 → frontier_council-0.1.3}/PKG-INFO +1 -1
- {frontier_council-0.1.2 → frontier_council-0.1.3}/frontier_council/__init__.py +1 -1
- {frontier_council-0.1.2 → frontier_council-0.1.3}/frontier_council/cli.py +5 -1
- {frontier_council-0.1.2 → frontier_council-0.1.3}/pyproject.toml +1 -1
- {frontier_council-0.1.2 → frontier_council-0.1.3}/.gitignore +0 -0
- {frontier_council-0.1.2 → frontier_council-0.1.3}/LICENSE +0 -0
- {frontier_council-0.1.2 → frontier_council-0.1.3}/README.md +0 -0
- {frontier_council-0.1.2 → frontier_council-0.1.3}/frontier_council/council.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: frontier-council
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Multi-model deliberation for important decisions. 5 frontier LLMs debate, then a judge synthesizes consensus.
|
|
5
5
|
Project-URL: Homepage, https://github.com/terry-li-hm/frontier-council
|
|
6
6
|
Project-URL: Repository, https://github.com/terry-li-hm/frontier-council
|
|
@@ -44,7 +44,7 @@ Examples:
|
|
|
44
44
|
frontier-council "Architecture choice" --rounds 3 --output transcript.md
|
|
45
45
|
""",
|
|
46
46
|
)
|
|
47
|
-
parser.add_argument("question", help="The question for the council to deliberate")
|
|
47
|
+
parser.add_argument("question", nargs="?", help="The question for the council to deliberate")
|
|
48
48
|
parser.add_argument(
|
|
49
49
|
"--rounds",
|
|
50
50
|
type=int,
|
|
@@ -121,6 +121,10 @@ Examples:
|
|
|
121
121
|
print(f"\n ... and {len(sessions) - 20} more")
|
|
122
122
|
sys.exit(0)
|
|
123
123
|
|
|
124
|
+
# Require question for normal operation
|
|
125
|
+
if not args.question:
|
|
126
|
+
parser.error("the following arguments are required: question")
|
|
127
|
+
|
|
124
128
|
# Auto-detect social context if not explicitly set
|
|
125
129
|
social_mode = args.social or detect_social_context(args.question)
|
|
126
130
|
if social_mode and not args.social and not args.quiet:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|