mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-07-10 09:38:37 +02:00
fix: resolve live monitoring bug, remove deprecated parameters, and auto-start Python worker
- Fix live monitoring style error by calling _live_monitor() helper directly - Remove default_parameters duplication from 10 workflow metadata files - Remove deprecated volume_mode parameter from 26 files across CLI, SDK, backend, and docs - Configure Python worker to start automatically with docker compose up - Clean up constants, validation, completion, and example files Fixes # - Live monitoring now works correctly with --live flag - Workflow metadata follows JSON Schema standard - Cleaner codebase without deprecated volume_mode - Python worker (most commonly used) starts by default
This commit is contained in:
@@ -440,7 +440,6 @@ class FuzzForgeClient:
|
||||
workflow_name: str,
|
||||
target_path: Union[str, Path],
|
||||
parameters: Optional[Dict[str, Any]] = None,
|
||||
volume_mode: str = "ro",
|
||||
timeout: Optional[int] = None,
|
||||
progress_callback: Optional[Callable[[int, int], None]] = None
|
||||
) -> RunSubmissionResponse:
|
||||
@@ -454,7 +453,6 @@ class FuzzForgeClient:
|
||||
workflow_name: Name of the workflow to execute
|
||||
target_path: Local path to file or directory to analyze
|
||||
parameters: Workflow-specific parameters
|
||||
volume_mode: Volume mount mode ("ro" or "rw")
|
||||
timeout: Timeout in seconds
|
||||
progress_callback: Optional callback(bytes_uploaded, total_bytes) for progress
|
||||
|
||||
|
||||
@@ -193,8 +193,6 @@ class WorkflowTester:
|
||||
|
||||
# Create workflow submission
|
||||
submission = create_workflow_submission(
|
||||
target_path=str(test_path),
|
||||
volume_mode="ro",
|
||||
**workflow_params
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user