Skip to contents

Interactive launcher for the AgenticWaves framework with auto-detection of available functions and smooth application startup.

Usage

launch_agentic_waves(
  mode = "interactive",
  auto_install = TRUE,
  check_system = TRUE
)

Arguments

mode

Character string specifying launch mode. Options:

  • "interactive" - Show interactive menu (default)

  • "shiny" - Launch Shiny dashboard directly

  • "demo" - Run complete demonstration

  • "quick" - Quick autonomous analysis

auto_install

Logical. If TRUE, automatically install missing packages.

check_system

Logical. If TRUE, perform system diagnostics before launch.

Value

Launches the specified application mode

Examples

if (FALSE) { # \dontrun{
# Launch interactive menu
launch_agentic_waves()

# Launch Shiny app directly
launch_agentic_waves(mode = "shiny")

# Run quick demo
launch_agentic_waves(mode = "demo")
} # }