Launch the interactive Shiny dashboard for AgenticWaves analysis.
Usage
run_agentic_waves_app(
host = "127.0.0.1",
port = NULL,
launch.browser = TRUE,
display.mode = "normal"
)
Arguments
- host
Character string specifying the host IP address (default: "127.0.0.1")
- port
Integer specifying the port number (default: auto-assigned)
- launch.browser
Logical. If TRUE, launch browser automatically (default: TRUE)
- display.mode
Character string specifying display mode ("normal", "showcase")
Value
Launches the Shiny application
Examples
if (FALSE) { # \dontrun{
# Launch with default settings
run_agentic_waves_app()
# Launch on specific port
run_agentic_waves_app(port = 8080)
# Launch without auto-opening browser
run_agentic_waves_app(launch.browser = FALSE)
} # }