fusionkit 0.4.0__tar.gz → 0.5.0__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,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: fusionkit
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Command line interface for fusionkit: local response-level model fusion.
|
|
5
|
-
Requires-Dist: fusionkit-core==0.
|
|
6
|
-
Requires-Dist: fusionkit-evals==0.
|
|
7
|
-
Requires-Dist: fusionkit-mlx==0.
|
|
8
|
-
Requires-Dist: fusionkit-server==0.
|
|
5
|
+
Requires-Dist: fusionkit-core==0.5.0
|
|
6
|
+
Requires-Dist: fusionkit-evals==0.5.0
|
|
7
|
+
Requires-Dist: fusionkit-mlx==0.5.0
|
|
8
|
+
Requires-Dist: fusionkit-server==0.5.0
|
|
9
9
|
Requires-Dist: typer>=0.20.0
|
|
10
10
|
Requires-Python: >=3.11
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "fusionkit"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.5.0"
|
|
4
4
|
description = "Command line interface for fusionkit: local response-level model fusion."
|
|
5
5
|
requires-python = ">=3.11"
|
|
6
6
|
dependencies = [
|
|
7
|
-
"fusionkit-core==0.
|
|
8
|
-
"fusionkit-evals==0.
|
|
9
|
-
"fusionkit-mlx==0.
|
|
10
|
-
"fusionkit-server==0.
|
|
7
|
+
"fusionkit-core==0.5.0",
|
|
8
|
+
"fusionkit-evals==0.5.0",
|
|
9
|
+
"fusionkit-mlx==0.5.0",
|
|
10
|
+
"fusionkit-server==0.5.0",
|
|
11
11
|
"typer>=0.20.0",
|
|
12
12
|
]
|
|
13
13
|
|
|
@@ -414,7 +414,6 @@ def public_bench_baselines(
|
|
|
414
414
|
_ROLE_PROMPT_FILE = {
|
|
415
415
|
"judge_system": "judge.md",
|
|
416
416
|
"synthesizer_system": "synthesizer.md",
|
|
417
|
-
"verifier_system": "verifier.md",
|
|
418
417
|
}
|
|
419
418
|
|
|
420
419
|
|
|
@@ -436,7 +435,6 @@ def tune_prompts(
|
|
|
436
435
|
patience: Annotated[int, typer.Option("--patience", min=1)] = 3,
|
|
437
436
|
val_fraction: Annotated[float, typer.Option("--val-fraction", min=0.1, max=0.9)] = 0.4,
|
|
438
437
|
seed: Annotated[int, typer.Option("--seed")] = 0,
|
|
439
|
-
verify: Annotated[bool, typer.Option("--verify/--no-verify")] = False,
|
|
440
438
|
test_timeout_s: Annotated[float, typer.Option("--test-timeout-s", min=1.0)] = 8.0,
|
|
441
439
|
concurrency: Annotated[int, typer.Option("--concurrency", min=1)] = 4,
|
|
442
440
|
prompts_out: Annotated[Path, typer.Option("--prompts-out")] = Path(".fusionkit/prompts"),
|
|
@@ -444,7 +442,7 @@ def tune_prompts(
|
|
|
444
442
|
report: Annotated[Path | None, typer.Option("--report", "-r")] = None,
|
|
445
443
|
ledger: Annotated[Path | None, typer.Option("--ledger")] = None,
|
|
446
444
|
) -> None:
|
|
447
|
-
"""Automated LLM-driven tuning of judge/synth
|
|
445
|
+
"""Automated LLM-driven tuning of judge/synth prompts over a frozen bank."""
|
|
448
446
|
|
|
449
447
|
if role not in _ROLE_PROMPT_FILE:
|
|
450
448
|
raise typer.BadParameter(f"role must be one of {sorted(_ROLE_PROMPT_FILE)}")
|
|
@@ -506,7 +504,6 @@ def tune_prompts(
|
|
|
506
504
|
judge_sampling=fusion_config.sampling.model_copy(update={"temperature": 0.0}),
|
|
507
505
|
synth_sampling=fusion_config.sampling,
|
|
508
506
|
test_timeout_s=test_timeout_s,
|
|
509
|
-
verify=verify,
|
|
510
507
|
concurrency=concurrency,
|
|
511
508
|
)
|
|
512
509
|
proposer = LLMProposer(
|
|
File without changes
|