Manus 非常棒,但 OpenManus 无需邀请码即可实现任何创意 🛫!
MetaGPT 在3个小时内完成了对 Manus 核心功能的基本复刻,所以针对这种工程维度上的缝合真的算得上是AGI的创新吗?值得如此吹捧吗?BTW 官方的申请授权码到现在为止还没有进行发放...... 不过官网更新了多国语言???
下面是 OpenManus 在 Github 的官方链接地址:
GitHub - mannaandpoem/OpenManus: No fortress, purely open ground. OpenManus is Coming.
我使用了 OpenAI GPT-4O 模型进行了本地测试,基本能实现通过调用 Google 进行站点数据检索生成HTML 文档并保存到本地:
给入的 Prompt:
深度调研和Manus这个Agent有关的信息,自己整理信息,然后写一个新闻html页面介绍它,你写的html应该尽可能美观。
输出的 HTML 结果:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introducing Manus AI Agent</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #4CAF50;
color: white;
padding: 10px 0;
text-align: center;
}
.container {
padding: 20px;
max-width: 800px;
margin: auto;
}
h1, h2 {
color: #4CAF50;
}
p {
margin-bottom: 20px;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #333;
color: white;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Manus AI Agent</h1>
</header>
<div class="container">
<h2>Overview</h2>
<p>The Manus AI Agent is a cutting-edge artificial intelligence system designed to perform a wide range of tasks, from data processing to automation. It is known for its advanced capabilities and adaptability in various applications.</p>
<h2>Features</h2>
<ul>
<li>Data Processing: Efficiently handles large datasets and complex computations.</li>
<li>Automation: Automates repetitive tasks to improve productivity.</li>
<li>Web Interaction: Capable of browsing and retrieving information from the web.</li>
<li>File Management: Saves and manages files locally in various formats.</li>
</ul>
<h2>Applications</h2>
<p>Manus AI Agent is utilized in numerous fields, including technology, finance, healthcare, and more, providing innovative solutions and enhancing operational efficiency.</p>
</div>
<footer>
<p>© 2023 Manus AI. All rights reserved.</p>
</footer>
</body>
</html>