Загрузка видео...

Не удалось загрузить видео

На главную

Introducing PAl. Your Personal Super-Intelligence 🌀 > The World's 1st Floating AI Agent. Revolutionary User Experience > Always On Accessible, Maintain Your Existing Workflow > No Prompt Needed. Just One Click > Proactive Multi-Agent Tasks > The Evolution of Input. From Typing to Approving > Personal Memory > Mandatory...

154,394 просмотров • 1 месяц назад •via X (Twitter)

Комментарии: 0

Нет доступных комментариев

Здесь появятся комментарии из оригинального поста

Похожие видео

The Teamily AI website ( has undergone a complete revamp, introducing a bold vision: the world's first social network built on human-AI symbiosis. Our goal is to transform Teamily AI into a "Super AI App" that connects billions of AI Agents with people. Fundamentally, we are building an Agentic OS powered by human networks. We have redefined the way humans and AI collaborate: 1. Personal AI · Your 24/7 AI Companion Your exclusive AI avatar continuously learns your communication style and expertise. It manages your memories across various groups, anticipates your needs, and executes tasks on your behalf. 2. Create, Train, and Grow Your Own AI Agents—Simply Through Conversation Build your own specialized AI Agents using natural conversation—no coding required, zero barriers to entry, and no complex configuration. Dynamically access a library of over 10,000 skills from the OpenClaw and Claude Code ecosystems. You can also link your personal software accounts—such as Gmail, LinkedIn, and Notion—enabling these Agents to participate as full-fledged members of your human teams. 3. Integrate Your AI Team into Your Human Team Initiate AI-native group chats where humans and Agents collaborate seamlessly. Multiple Agents can execute tasks concurrently—conducting research, performing analysis, and building deliverables—transforming everyday conversations into immediate, multi-threaded action. 4. Explore Agents, Groups, Playbooks, and More We are cultivating a continuously evolving AI community ecosystem. Discover a wealth of useful and entertaining prompts, along with impressive AI-generated deliverables (webpages, presentations, reports, knowledge bases, mini-games, apps, and more), bringing together a diverse array of Agents and workflows. Engage socially with this content, find the perfect AI for your specific task, and integrate it instantly into your personal or group conversations with just a single click. 5. Universal Memory · Context-Aware, Long-Term Memory Powered by Your Social Graph A persistent, global memory layer that connects your entire social graph. The AI ​​retains context across all your groups, Agents, and timeframes, transforming every interaction you accumulate into an ever-growing digital asset. 6. Access Your Personal AI Anytime, Anywhere We are committed to providing continuous support across all major platforms: iOS, Android, Mac, Windows, Web, CarPlay, Android Auto, Apple Watch, and more—delivering a truly seamless experience across every device. Your AI team accompanies you—in your pocket, on your wrist, in your car, and even extending into the physical world. The same set of agents, the same shared memory—with zero friction in switching contexts. Give it a try and let us know your feedback. Cheers.

Teamily AI

12,906 просмотров • 3 месяцев назад

Today we’re launching the first and only human-like AI agents in the world. Super Agents™ are the first agents with human‑level skills – they DM you, take @ mentions, send emails, manage docs, tasks, and more. Not just tools or API calls, but real skills fine‑tuned for how teams actually work. The first agents with 100% context – fully native in ClickUp and fully synced from other apps. Super Agents see your work the same way that humans do: tasks, docs, schedules, and conversations all in one place. The first agents that learn from human interactions automatically, without any setup or configuration – when you give feedback, they listen and improve how they work. The first agents with human‑level memory for custom agents – historical memory for every interaction, short-term working memory, and even long‑term memory stored in docs you can literally open, inspect, and edit. The first agents that are literally the same as users – our agentic user model is the same as our user data model. This gives you permissions and capabilities that you and your systems are already familiar with. The first infinite agent catalog – where anyone can create and customize agents in minutes, for literally any type of work imaginable. It's the most intuitive way to build agents on the planet. 95% of companies are failing in AI adoption. The reality is that AI isn't meant to be adopted, it's meant to be adapted – to you. Super Agents are automatically personalized to you and your company using proprietary state-of-the-art agent architecture, orchestration, and tooling. Today is the largest step forward we've ever made towards our mission of making people more productive. Maximize human productivity, with ClickUp Super Agents. Available NOW. For everyone.

Zeb Evans

320,607 просмотров • 7 месяцев назад

New short course: Long-Term Agentic Memory with LangGraph. Learn to build an agent with long-term memory in this course developed in collaboration with taught by its Co-Founder and CEO, Harrison Chase! Personal assistance and productivity tasks have become important use cases for agents. An important feature of an AI assistant, such as a coding or calendar assistant, is its ability to keep improving over time from its experience. Agent memory is the key capability that enables this. To add memory to an agent, you must first figure out what to store and what to retrieve when it is time to use the information. Additionally, you’ll have to decide when to update the stored information. For example, you might update in each iteration loop of the agent or perform updates in the background, with a helper agent. In this course, you will learn a mental framework to build agents with long-term memory. You'll create a useful email assistant that can respond, ignore, and notify using writing, scheduling, and memory-management tools. You’ll develop your agent's memory by adding facts to its memory store, provide examples to learn the user's preferences, and optimize system prompts to evolve instructions based on previous responses. In detail, you’ll: - Learn how the three types of memory--semantic, episodic, and procedural–and the two update mechanisms–via hot path and in the background–apply to your agents. - Build an email agent with writing, scheduling, and availability tools, along with a router that triages incoming email and handles it accordingly by ignoring, responding, or notifying the user. - Add tools to your email agent that allow it to operate on semantic memory by learning facts about the user, storing them in a long-term memory store, and searching over them in future interactions. - Incorporate episodic memory, in the form of few-shot examples, in the triage step of your agents to help them learn and update user preferences. - Add procedural memory as system prompts, optimized with feedback to improve the instructions the agent follows. Learn how to approach memory in agents, and start building agents with long-term memory with LangGraph! Please sign up here:

Andrew Ng

131,845 просмотров • 1 год назад

New short course: LLMs as Operating Systems: Agent Memory, created with Letta, and taught by its founders Charles Packer and Sarah Wooders. An LLM's input context window has limited space. Using a longer input context also costs more and results in slower processing. So, managing what's stored in this context window is important. In the innovative paper MemGPT: Towards LLMs as Operating Systems, its authors (which include the instructors) proposed using an LLM agent to manage this context window. Their system uses a large persistent memory that stores everything that could be included in the input context, and an agent decides what is actually included. Take the example of building a chatbot that needs to remember what's been said earlier in a conversation (perhaps over many days of interaction with a user). As the conversation's length grows, the memory management agent will move information from the input context to a persistent searchable database; summarize information to keep relevant facts in the input context; and restore relevant conversation elements from further back in time. This allows a chatbot to keep what's currently most relevant in its input context memory to generate the next response. When I read the original MemGPT paper, I thought it was an innovative technique for handling memory for LLMs. The open-source Letta framework, which we'll use in this course, makes MemGPT easy to implement. It adds memory to your LLM agents and gives them transparent long-term memory. In detail, you’ll learn: - How to build an agent that can edit its own limited input context memory, using tools and multi-step reasoning - What is a memory hierarchy (an idea from computer operating systems, which use a cache to speed up memory access), and how these ideas apply to managing the LLM input context (where the input context window is a "cache" storing the most relevant information; and an agent decides what to move in and out of this to/from a larger persistent storage system) - How to implement multi-agent collaboration by letting different agents share blocks of memory This course will give you a sophisticated understanding of memory management for LLMs, which is important for chatbots having long conversations, and for complex agentic workflows. Please sign up here!

Andrew Ng

200,788 просмотров • 1 год назад