import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"; import { getAgentVersionInfo, getBaseUrlFromRequest } from "@/lib/agent-version"; import { headers } from "next/headers"; export const dynamic = "force-dynamic"; export default async function DownloadPage() { const h = await headers(); const proto = h.get("x-forwarded-proto") ?? "https"; const host = h.get("x-forwarded-host") ?? h.get("host") ?? ""; const baseUrl = host ? `${proto}://${host}` : undefined; const info = getAgentVersionInfo(baseUrl); const { version, downloadUrls } = info; return (

Téléchargements Agent

Version actuelle : {version}

Windows (.exe)

Agent studioE5 pour Windows (64 bits). Nécessite Tailscale installé séparément ou les binaires dans tailscale-bin/windows/.

Télécharger (.exe)
Windows (archive)

Archive complète incluant l'agent, Tailscale et le README Windows.

Télécharger (.zip)
Linux

Agent studioE5 pour Linux (64 bits).

Télécharger (Linux)
); }