fluxloop-cli 0.2.0__tar.gz → 0.2.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.
Potentially problematic release.
This version of fluxloop-cli might be problematic. Click here for more details.
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/PKG-INFO +1 -1
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/__init__.py +1 -1
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/main.py +2 -1
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli.egg-info/PKG-INFO +1 -1
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/pyproject.toml +1 -1
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/README.md +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/arg_binder.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/commands/__init__.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/commands/config.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/commands/generate.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/commands/init.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/commands/parse.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/commands/record.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/commands/run.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/commands/status.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/config_loader.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/config_schema.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/constants.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/input_generator.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/llm_generator.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/project_paths.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/runner.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/target_loader.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/templates.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli/validators.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli.egg-info/SOURCES.txt +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli.egg-info/dependency_links.txt +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli.egg-info/entry_points.txt +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli.egg-info/requires.txt +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/fluxloop_cli.egg-info/top_level.txt +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/setup.cfg +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/tests/test_arg_binder.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/tests/test_config_command.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/tests/test_input_generator.py +0 -0
- {fluxloop_cli-0.2.0 → fluxloop_cli-0.2.1}/tests/test_target_loader.py +0 -0
|
@@ -11,7 +11,7 @@ from rich.console import Console
|
|
|
11
11
|
from rich.panel import Panel
|
|
12
12
|
|
|
13
13
|
from . import __version__
|
|
14
|
-
from .commands import config, generate, init, parse, run, status
|
|
14
|
+
from .commands import config, generate, init, parse, run, status, record
|
|
15
15
|
|
|
16
16
|
# Create the main Typer app
|
|
17
17
|
app = typer.Typer(
|
|
@@ -31,6 +31,7 @@ app.add_typer(status.app, name="status", help="Check status and view results")
|
|
|
31
31
|
app.add_typer(config.app, name="config", help="Manage configuration")
|
|
32
32
|
app.add_typer(generate.app, name="generate", help="Generate input datasets")
|
|
33
33
|
app.add_typer(parse.app, name="parse", help="Parse experiments into readable files")
|
|
34
|
+
app.add_typer(record.app, name="record", help="Manage recording mode and settings")
|
|
34
35
|
|
|
35
36
|
|
|
36
37
|
def version_callback(value: bool):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|