const std = @import("std"); const Config = @import("../config.zig").Config; pub fn run(_: std.mem.Allocator, _: []const []const u8) !void { std.debug.print("ML Experiment Manager - Configuration Setup\n\n", .{}); std.debug.print("Please create ~/.ml/config.toml with the following format:\n\n", .{}); std.debug.print("worker_host = \"worker.local\"\n", .{}); std.debug.print("worker_user = \"mluser\"\n", .{}); std.debug.print("worker_base = \"/data/ml-experiments\"\n", .{}); std.debug.print("worker_port = 22\n", .{}); std.debug.print("api_key = \"your-api-key\"\n", .{}); std.debug.print("\n[OK] Configuration template shown above\n", .{}); }