import React from "react"; import Link from "next/link"; import HeroComposition from "./_components/HeroComposition"; import { ProjectPageView } from "./_components/ProjectPageView"; import { publications as staticPubs, patents as staticPatents } from "../content/publications"; import { standardsBodies as staticStandards } from "../content/standards"; import { researchProjects as staticProjects } from "../content/projects"; import { getStatsSummary, getResearchAreaNames, getResearchProjects } from "../lib/api"; export const dynamic = "force-dynamic"; // CUSTOMIZATION HOOK: 14 Core Research Areas const RESEARCH_AREAS: string[] = [ "Quick UDP Internet Connection (QUIC)", "QUIC-based Mobility and Multi-Streaming Support", "Services and Protocols for Internet-of-Things (IoT)", "Constrained Application Protocol (CoAP)", "In-Vehicle Infotainment (IVI)", "Optical Wireless or Visible Light Communications (OWC/VLC)", "Lighting Control Networks (PLASA E1.45) for LED-based VLC", "Mobility Management: Distributed Mobility Control", "Multicast Routing Protocols and Reliable Multicasting", "mobile SCTP (mSCTP): Soft Handover in Transport Layer", "Stream Control Transmission Protocol (SCTP)", "Telecommunication Optimization: Network Planning and Management", "TAC/TAL Configuration for Paging and Location Management", "Tabu Search and Genetic Algorithm", ]; const INTERNATIONAL_SDOS = [ "IEC TC100: Multimedia Systems and Equipment", "ISO/IEC JTC1/SC41: Internet-of-Things (IoT) Applications", "ITU-T SG20: IoT Services", "ITU-T SG13: Mobility Management", "ISO/IEC JTC1/SC6: Reliable Multicasting", ]; export default async function HomePage() { const stats = (await getStatsSummary()) ?? { intlPubsCount: staticPubs.filter( (p) => p.category === "intl-journal-conf" ).length, patentCount: staticPatents.length, stdDocsCount: staticStandards.reduce( (sum, b) => sum + b.projects.reduce((pSum, p) => pSum + p.documents.length, 0), 0 ), }; const researchAreas = (await getResearchAreaNames()) ?? RESEARCH_AREAS; const researchProjects = (await getResearchProjects()) ?? staticProjects; return (
The AI Agent Networking Laboratory (ANL) studies agent networking technologies and standard frameworks that enable AI agents to communicate and collaborate with one another for multi-agent orchestration.
{/* Metrics Row (Derived from real content data) */}{researchAreas.length} fundamental networking protocols and AI system domains
Along with the research activities, we are also in pursuit of the International Standardization, from the market deployment perspective, in the following SDOs (Standard-Defining Organizations):