fusionkit 0.5.3__tar.gz → 0.7.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.
- {fusionkit-0.5.3 → fusionkit-0.7.0}/PKG-INFO +5 -5
- {fusionkit-0.5.3 → fusionkit-0.7.0}/pyproject.toml +5 -5
- {fusionkit-0.5.3 → fusionkit-0.7.0}/src/fusionkit_cli/main.py +3 -3
- {fusionkit-0.5.3 → fusionkit-0.7.0}/src/fusionkit_cli/__init__.py +0 -0
- {fusionkit-0.5.3 → fusionkit-0.7.0}/src/fusionkit_cli/onboarding.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: fusionkit
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.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.7.0
|
|
6
|
+
Requires-Dist: fusionkit-evals==0.7.0
|
|
7
|
+
Requires-Dist: fusionkit-mlx==0.7.0
|
|
8
|
+
Requires-Dist: fusionkit-server==0.7.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.7.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.7.0",
|
|
8
|
+
"fusionkit-evals==0.7.0",
|
|
9
|
+
"fusionkit-mlx==0.7.0",
|
|
10
|
+
"fusionkit-server==0.7.0",
|
|
11
11
|
"typer>=0.20.0",
|
|
12
12
|
]
|
|
13
13
|
|
|
@@ -120,9 +120,9 @@ def prompts_dump(
|
|
|
120
120
|
) -> None:
|
|
121
121
|
"""Emit the built-in system prompts so a consumer can scaffold editable overrides.
|
|
122
122
|
|
|
123
|
-
With no options this prints a JSON object mapping each prompt id (
|
|
124
|
-
``
|
|
125
|
-
|
|
123
|
+
With no options this prints a JSON object mapping each prompt id (``judge``,
|
|
124
|
+
``synthesizer``) to its default text. With ``--dir`` it writes one
|
|
125
|
+
``<id>.md`` file per prompt. This keeps the CLI's scaffolded
|
|
126
126
|
``.fusionkit/prompts`` defaults in lockstep with this package's source.
|
|
127
127
|
"""
|
|
128
128
|
if dir is not None:
|
|
File without changes
|
|
File without changes
|