TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Autonomous Agents and Agent Simulations

98 pointsby Ozzie_osmanabout 2 years ago

10 comments

Ozzie_osmanabout 2 years ago
One thing I love about LangChain (and LlamaIndex) is that rather than having to find the latest relevant arxiv papers, and then try to understand them by reading 20-30 pages, I can just monitor these libraries' blogs and release changes to discover the latest relevant papers, then read their implementation code.
评论 #35642459 未加载
crosen99about 2 years ago
LLM based autonomous agents remind me a lot of Leonard from the movie Memento. In the movie, Leonard is trying desperately to find the murderer of his wife, but he has one big problem - he can no longer build new memories. So, he needs to develop a system for storing new knowledge and then retrieving the relevant bits every time he formulates a plan for what to do next. Throughput the movie, Leonard makes a number of missteps because his system for recording and retrieving knowledge from this external memory system is imperfect. The movie is very well done.
评论 #35641204 未加载
kromemabout 2 years ago
These agent approaches should really incorporate the recent neurology research around predictive processing appearing to be a three tiered process of &quot;long term prediction,&quot; &quot;intermediate prediction,&quot; and &quot;short term prediction.&quot;<p>What I&#x27;ve seen is very heavily weighted towards chain of thought using the latter to satisfy the former, but explicitly stepping down from broad to intermediate to narrow (and re-evaluating as it goes) will probably work even better.
评论 #35636696 未加载
akhayamabout 2 years ago
What&#x27;s fascinating for me is how directly LangChain&#x27;s Input &gt; Thought &gt; Action &gt; Observation maps to the Observe &gt; Orient &gt; Decide &gt; Act (OODA) Loop that is used in many other industries: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;OODA_loop" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;OODA_loop</a>. The fact that we can do OODA loops without a human in the loop--by just passing a bunch of tools and adding memory to a LangChain--is simply mind blowing.<p>Having said that, I believe LangChain can benefit from incorporating learnings&#x2F;failures from successful OODA Loops where human feedback continually improves the automation. I am not an expert, but it seems like this type of human feedback can be incorporated into LangChain by plugging in an RLHF framework. Not sure though if this RLHF framework plugs into Thought or Action.
评论 #35641368 未加载
eternalbanabout 2 years ago
&quot;For this discussion, we will use LangChain nomenclature, although it’s worth noting that this field is so new there’s no super standard terminology.&quot;<p>There is in fact a &quot;super standard&quot; terminology. This breathless sentence is denying that a computer science &quot;field&quot; existed prior to the LLM chatboxes (&quot;this field&quot;).<p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Software_agent" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Software_agent</a>
akhayamabout 2 years ago
Research on Agent architectures is evolving real fast. I read Park et al.&#x27;s paper on Generative Agents a couple of weeks back which seems to have the potential to put LangChain&#x27;s Memory on steroids: <a href="https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;2304.03442" rel="nofollow">https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;2304.03442</a><p>&quot;To enable generative agents, we describe an architecture that extends a large language model to store a complete record of the agent&#x27;s experiences using natural language, synthesize those memories over time into higher-level reflections, and retrieve them dynamically to plan behavior.&quot;<p>Can&#x27;t wait for LangChain to incorporate a long-term, reflection-based memory system.
haolezabout 2 years ago
Slightly related: what&#x27;s the difference in use cases of llama-index vs LangChain? I know that LangChain can make retrieval using embeddings and I suspect that the nodes synth step is exclusive to llama-index, but I might be wrong.<p>Can someone more knowledgeable chime in?
评论 #35637004 未加载
评论 #35636829 未加载
评论 #35636791 未加载
mpaepperabout 2 years ago
In case you want a much simpler implementation of the ReAct agent with tools, it&#x27;s here with ~200 loc:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;mpaepper&#x2F;llm_agents">https:&#x2F;&#x2F;github.com&#x2F;mpaepper&#x2F;llm_agents</a>
评论 #35645999 未加载
richardfeynmanabout 2 years ago
These agents, even in their embryonic form, are so powerful. The world is about to change. I&#x27;m convinced we&#x27;re at the beginning of a massive exponential.
评论 #35637099 未加载
Fatboyrunningabout 2 years ago
Is anyone working on an RPG in light of this? Please?