iAgents / index.html
thinkwee's picture
Update index.html
af19e60 verified
raw
history blame
14.2 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description"
content="iAgents is a platform for assigning each human user a persona agent and enabling them to collaborate on tasks.">
<meta name="keywords" content="iAgents, Collaborative Task, Information Asymmetry">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>iAgents: Autonomous Agents for Collaborative Task under Information Asymmetry</title>
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro"
rel="stylesheet">
<link rel="stylesheet" href="./static/css/bulma.min.css">
<link rel="stylesheet" href="./static/css/bulma-carousel.min.css">
<link rel="stylesheet" href="./static/css/bulma-slider.min.css">
<link rel="stylesheet" href="./static/css/fontawesome.all.min.css">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<link rel="stylesheet" href="./static/css/index.css">
<link rel="icon" href="./static/images/favicon.svg">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script defer src="./static/js/fontawesome.all.min.js"></script>
<script src="./static/js/bulma-carousel.min.js"></script>
<script src="./static/js/bulma-slider.min.js"></script>
<script src="./static/js/index.js"></script>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
</head>
<body>
<section class="hero">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<h1 class="title is-1 publication-title">iAgents: Autonomous Agents for Collaborative Task under Information Asymmetry</h1>
<div class="is-size-5 publication-authors">
<span class="author-block">
<a href="https://thinkwee.top/about" target="_blank">Wei Liu</a><sup>1</sup>,</span>
<span class="author-block">
<a href="" target="_blank">Chenxi Wang</a><sup>1</sup>,</span>
<span class="author-block">
<a href="" target="_blank">Yifei Wang</a><sup>1</sup>,
</span>
<span class="author-block">
<a href="" target="_blank">Zihao Xie</a><sup>1</sup>,
</span>
<span class="author-block">
<a href="" target="_blank">Rennai Qiu</a><sup>1</sup>,
</span>
<span class="author-block">
<a href="https://na-wen.github.io/" target="_blank">Yufan Dang</a><sup>1</sup>,
</span>
<span class="author-block">
<a href="https://xiaodu-flying.github.io/" target="_blank">Zhuoyun Du</a><sup>1</sup>,
</span>
<span class="author-block">
<a href=https://scholar.google.com/citations?user=0CoGHtIAAAAJ" target="_blank">Weize Chen</a><sup>1</sup>,
</span>
<span class="author-block">
<a href="https://nlp.csai.tsinghua.edu.cn/~yangcheng/" target="_blank">Cheng Yang</a><sup>2</sup>,
</span>
<span class="author-block">
<a href="https://qianc62.github.io/" target="_blank">Chen Qian</a><sup>1</sup>
</span>
</div>
<div class="is-size-5 publication-authors">
<span class="author-block"><sup>1</sup>Tsinghua University,</span>
<span class="author-block"><sup>2</sup>Peng Cheng Laboratory, China</span>
</div>
<div class="column has-text-centered">
<div class="publication-links">
<!-- PDF Link. -->
<span class="link-block">
<a href="https://arxiv.org/pdf/2406.14928" target="_blank"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fas fa-file-pdf"></i>
</span>
<span>Paper</span>
</a>
</span>
<span class="link-block">
<a href="https://arxiv.org/abs/2406.14928" target="_blank"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="ai ai-arxiv"></i>
</span>
<span>arXiv</span>
</a>
</span>
<!-- Demo Link. -->
<span class="link-block">
<a href="http://thinkwee.top:6060/login" target="_blank"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fas fa-rocket"></i>
</span>
<span>Demo</span>
</a>
</span>
<!-- Code Link. -->
<span class="link-block">
<a href="https://github.com/thinkwee/iAgents" target="_blank"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Code</span>
</a>
</span>
<!-- Dataset Link. -->
<span class="link-block">
<a href="https://github.com/thinkwee/iAgents/tree/main/data" target="_blank"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="far fa-images"></i>
</span>
<span>Data</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="hero teaser">
<div class="container is-max-desktop">
<div class="hero-body">
<video id="teaser" muted loop playsinline height="100%">
<source src="static/videos/demo.mp4" type="video/mp4">
</video>
<h2 class="subtitle has-text-centered">
<span class="dnerf">iAgents</span> is a platform for assigning each human user a personal agent and enabling them to collaborate on tasks (Speed up by 3x using GPT4o for agent's slow thinking).
</h2>
</div>
</div>
</section>
<script>
document.addEventListener('DOMContentLoaded', function() {
var video = document.getElementById('teaser');
video.playbackRate = 3.0;
// Define the time ranges
const ranges = [
{ start: 1, end: 16 },
{ start: 85, end: 160 },
{ start: 160, end: 220 },
{ start: 220, end: 331 }
];
let currentRange = 0;
video.addEventListener('timeupdate', function() {
const currentTime = video.currentTime;
const range = ranges[currentRange];
if (currentTime < range.start) {
video.currentTime = range.start;
} else if (currentTime >= range.end) {
currentRange = (currentRange + 1) % ranges.length;
video.currentTime = ranges[currentRange].start;
}
});
video.play();
});
</script>
<section class="hero is-light is-small">
<div class="hero-body">
<div class="container">
<div id="results-carousel" class="carousel results-carousel">
<div class="item item-steve">
<video poster="" id="steve" autoplay controls muted loop playsinline height="100%">
<source src="./static/videos/intro.mp4"
type="video/mp4">
</video>
</div>
<div class="item item-chair-tp">
<video poster="" id="chair-tp" autoplay controls muted loop playsinline height="100%">
<source src="./static/videos/friends.mp4"
type="video/mp4">
</video>
</div>
<div class="item item-shiba">
<video poster="" id="shiba" autoplay controls muted loop playsinline height="100%">
<source src="./static/videos/avatar.mp4"
type="video/mp4">
</video>
</div>
<div class="item item-fullbody">
<video poster="" id="fullbody" autoplay controls muted loop playsinline height="100%">
<source src="./static/videos/file.mp4"
type="video/mp4">
</video>
</div>
<div class="item item-blueshirt">
<video poster="" id="blueshirt" autoplay controls muted loop playsinline height="100%">
<source src="./static/videos/admin.mp4"
type="video/mp4">
</video>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container is-max-desktop">
<!-- Abstract. -->
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">Abstract</h2>
<div class="content has-text-justified">
<p>
iAgents is a platform designed to create a world weaved by humans and agents, where each human has a personal agent that can work on their behalf to cooperate with other humans' agents. It is a new paradigm for <a href="https://thinkwee.top/multiagent_ebook/index.html">Large Language Model-powered Multi-Agent Systems</a>. iAgents proactively interact with human users to exchange information, while autonomously communicating with other agents to eliminate information asymmetry and collaborate effectively to accomplish tasks <a href="https://arxiv.org/abs/2406.14928">(see our paper)</a>.
</p>
<p>
iAgents features an instant messaging web UI that users can utilize as a conventional chat application, with each user automatically equipped with a personal agent. Messages beginning with '@' are automatically transformed into collaborative task commands, prompting the agents of both chat participants to engage and resolve the task through autonomous communication.
</p>
<p>
iAgents also features agent cultivation. You can cultivate your agent by clicking on the Agent Admin Panel button and talking with your Agent. You can also use your human feedback data to automatically optimize it. The agent profile will be improved during the cultivation. iAgents intergrates many AI tools such as Jina Reader, LLama Index, for better organizing your information. It supports various of LLM backends including OpenAI, Gemini, Qwen, Deepseek and GLM.
</p>
</div>
</div>
</div>
<!--/ Abstract. -->
<!-- Gallery -->
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">Gallery</h2>
<div class="content">
<div class="columns is-multiline">
<div class="column is-half">
<figure class="image">
<img src="static/images/demo.png" alt="Gallery image 1">
<figcaption>iAgents can be easily deployed on your laptop</figcaption>
</figure>
</div>
<div class="column is-half">
<figure class="image">
<img src="static/images/cultivate.png" alt="Gallery image 2">
<figcaption>iAgents can cultivate your agent by talking with it</figcaption>
</figure>
</div>
<div class="column is-half">
<figure class="image">
<img src="static/images/ibench.png" alt="Gallery image 3">
<figcaption>informative benchmark for evaluating information asymmetry ability of agents</figcaption>
</figure>
</div>
<div class="column is-half">
<figure class="image">
<img src="static/images/title.png" alt="Gallery image 4">
<figcaption>iAgents bridge the gap between humans and agents</figcaption>
</figure>
</div>
<div class="column is-half">
<figure class="image">
<img src="static/images/tool.png" alt="Gallery image 5">
<figcaption>iAgents can be easily integrated with other AI tools</figcaption>
</figure>
</div>
<div class="column is-half">
<figure class="image">
<img src="static/images/pipeline.png" alt="Gallery image 6">
<figcaption>iAgents overall pipeline</figcaption>
</figure>
</div>
</div>
</div>
</div>
</div>
<!--/ Gallery -->
</div>
</section>
<section class="section" id="BibTeX">
<div class="container is-max-desktop content">
<h2 class="title">BibTeX</h2>
<pre><code>@inproceedings{liuautonomous,
title={Autonomous Agents for Collaborative Task under Information Asymmetry},
author={Liu, Wei and Wang, Chenxi and Wang, YiFei and Xie, Zihao and Qiu, Rennai and Dang, Yufan and Du, Zhuoyun and Chen, Weize and Yang, Cheng and Qian, Chen},
booktitle={The Thirty-eighth Annual Conference on Neural Information Processing Systems}
}</code></pre>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="columns is-centered">
<div class="column is-8">
<div class="content">
<p>
This website is licensed under a <a rel="license" target="_blank"
href="http://creativecommons.org/licenses/by-sa/4.0/">Creative
Commons Attribution-ShareAlike 4.0 International License</a>.
</p>
<p>
This means you are free to borrow the <a target="_blank"
href="https://github.com/nerfies/nerfies.github.io">source code</a> of this website,
we just ask that you link back to this page in the footer.
Please remember to remove the analytics code included in the header of the website which
you do not want on your website.
</p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>