2api
feat: configurable stream stall timeout + per-provider UI
88c4c60
Raw
History Blame Contribute Delete
257 Bytes
import { getMachineId } from "@/shared/utils/machine";
import CLIToolsPageClient from "./CLIToolsPageClient";
export default async function CLIToolsPage() {
const machineId = await getMachineId();
return <CLIToolsPageClient machineId={machineId} />;
}