hermes / index.html
nicopi's picture
Update index.html
3b69b83 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hermes Framework</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
max-width: 900px;
margin: 0 auto;
padding: 20px;
color: #333;
}
header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}
h1 {
color: #2c3e50;
margin-bottom: 20px;
}
.authors {
margin-bottom: 15px;
font-weight: bold;
}
.affiliations {
font-style: italic;
font-size: 10pt;
color: #555;
margin-bottom: 10px;
}
.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
margin: 30px 0;
overflow: hidden;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.section {
margin-bottom: 30px;
}
.cite-box {
background-color: #f9f9f9;
padding: 15px;
border-left: 4px solid #3498db;
font-family: monospace;
overflow-x: auto;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Hermes: A Large Language Model Framework on the Journey to Autonomous Networks</h1>
<div class="authors">
Fadhel Ayed<sup>1</sup>, Ali Maatouk<sup>4</sup>, Nicola Piovesan<sup>1</sup>,
Antonio De Domenico<sup>1</sup>, Mohamed Sana<sup>1</sup>,<br>
Merouane Debbah<sup>2</sup>, and Zhi-Quan Luo<sup>3</sup>
</div>
<div class="affiliations">
<sup>1</sup>Paris Research Center, Huawei Technologies, Boulogne-Billancourt, France<br>
<sup>2</sup>Khalifa University of Science and Technology, Abu Dhabi, UAE<br>
<sup>3</sup>The Chinese University of Hong Kong, Shenzhen, China<br>
<sup>4</sup>Yale University, New Haven, Connecticut, USA<br>
</div>
</header>
<div class="section">
<h2>About Hermes</h2>
<p>
The drive toward automating cellular network operations has grown with the increasing complexity of these systems. Despite advancements, full network autonomy currently remains out of reach due to reliance on human intervention for modeling network behaviors and defining policies to meet target requirements. Network Digital Twins (NDTs) have shown promise in enhancing network intelligence, but the successful implementation of this technology is constrained by use case-specific architectures, limiting its role in advancing network autonomy. A more capable network intelligence, or "telecommunications brain", is needed to enable seamless, autonomous management of cellular network.
Large Language Models (LLMs) have emerged as potential enablers for this vision but face challenges in network modeling, especially in reasoning and handling diverse data types. To address these gaps, we introduce Hermes, a chain of LLM agents that uses structured and explainable logical steps for constructing NDT instances. Hermes allows automatic, reliable, and accurate network modeling of diverse use cases and configurations, thus marking progress toward fully autonomous network operations.
</p>
</div>
<div class="section">
<h2>Framework Demonstration</h2>
<div class="video-container">
<!-- Replace with your actual video embed code -->
<iframe src="https://www.nicolapiovesan.com/notebooks/media.mp4"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<p><em>Video demonstration of the Hermes framework in action.</em></p>
</div>
<div class="section">
<h2>Research Paper</h2>
<p>
The Hermes framework is presented in detail in our research paper:
</p>
<p>
<a href="https://arxiv.org/abs/2411.06490v1" target="_blank">"Hermes: A Large Language Model Framework on the Journey to Autonomous Networks"</a>
</p>
</div>
<div class="section">
<h2>How to Cite</h2>
<p>
If you use Hermes in your research, please cite our paper:
</p>
<div class="cite-box">
@article{hermes2024,<br>
&nbsp;&nbsp;title = {Hermes: A Large Language Model Framework on the Journey to Autonomous Networks},<br>
&nbsp;&nbsp;author = {Ayed, Fadhel and Maatouk, Ali and Piovesan, Nicola and De Domenico, Antonio and Sana, Mohamed and Debbah, Merouane and Luo, Zhi-Quan},<br>
&nbsp;&nbsp;journal = {arXiv preprint},<br>
&nbsp;&nbsp;year = {2024},<br>
&nbsp;&nbsp;url = {https://arxiv.org/abs/2411.06490v1}<br>
}
</div>
</div>
<footer style="margin-top: 50px; text-align: center; color: #7f8c8d; font-size: 0.9em;">
<p>&copy; 2025</p>
</footer>
</body>
</html>