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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: frontier-council
3
- Version: 0.1.2
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
@@ -1,6 +1,6 @@
1
1
  """Frontier Council - Multi-model deliberation for important decisions."""
2
2
 
3
- __version__ = "0.1.2"
3
+ __version__ = "0.1.3"
4
4
 
5
5
  from .council import (
6
6
  run_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:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "frontier-council"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "Multi-model deliberation for important decisions. 5 frontier LLMs debate, then a judge synthesizes consensus."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"