moa-cli 0.3.0__tar.gz → 0.3.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: moa-cli
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Ask one question to multiple local AI coding CLIs in parallel and collect their answers.
|
|
5
5
|
Keywords: llm,agents,cli,claude,codex,agy,opencode,peer-review
|
|
6
6
|
Author: Paul-Louis Pröve
|
|
@@ -50,7 +50,7 @@ A single model gives you one perspective. Asking three frontier models the same
|
|
|
50
50
|
|
|
51
51
|
```text
|
|
52
52
|
$ moa ask "Is Postgres or SQLite better for a desktop app?"
|
|
53
|
-
Asking claude, codex, agy (timeout
|
|
53
|
+
Asking claude, codex, agy (timeout 600s, read-only)
|
|
54
54
|
|
|
55
55
|
──────────────── claude (opus) · OK · 3.2s ────────────────
|
|
56
56
|
|
|
@@ -39,7 +39,7 @@ A single model gives you one perspective. Asking three frontier models the same
|
|
|
39
39
|
|
|
40
40
|
```text
|
|
41
41
|
$ moa ask "Is Postgres or SQLite better for a desktop app?"
|
|
42
|
-
Asking claude, codex, agy (timeout
|
|
42
|
+
Asking claude, codex, agy (timeout 600s, read-only)
|
|
43
43
|
|
|
44
44
|
──────────────── claude (opus) · OK · 3.2s ────────────────
|
|
45
45
|
|
|
@@ -697,7 +697,7 @@ _MODERATOR_MODES: tuple[str, ...] = ("auto",)
|
|
|
697
697
|
# The built-in defaults, shown by `config show` when a key isn't in the file.
|
|
698
698
|
_CONFIG_DEFAULTS: dict = {
|
|
699
699
|
"num": 3,
|
|
700
|
-
"timeout":
|
|
700
|
+
"timeout": 600.0,
|
|
701
701
|
"synthesizer": "auto",
|
|
702
702
|
"moderator": "auto",
|
|
703
703
|
"exclude": [],
|
|
@@ -1027,7 +1027,7 @@ def resolve_run(
|
|
|
1027
1027
|
raise typer.BadParameter(f"{config_path()}: {exc}") from exc
|
|
1028
1028
|
|
|
1029
1029
|
num = resolve_option(num, "num", config, default_num)
|
|
1030
|
-
timeout = resolve_option(timeout, "timeout", config,
|
|
1030
|
+
timeout = resolve_option(timeout, "timeout", config, 600.0)
|
|
1031
1031
|
# Repeatable flags are an empty list when omitted, not None, so treat empty
|
|
1032
1032
|
# as "fall back to config" for exclude.
|
|
1033
1033
|
exclude_names = tuple(exclude) if exclude else tuple(config.get("exclude", ()))
|