🚀Launching: LangSmith Engine LangSmith Engine is an agent that sits on top of your traces It runs in the background and automatically identifies issues It then proactively suggests action items (code changes, evaluators to add) Try it today: smith.langchain.com
58
60
468
133,645
🌟privateGPT🌟 - this is sick!!! I've always had people asking me if it was feasible to use @langchain with open source models, and my answer was "at the moment, not really..." but @ivanmartit did it!!!!! this is a huge step forward 👏👏👏 github.com/imartinez/private…
52
384
2,292
484,270
🤖Generative Agents🤖 Last week, Park et all released “Generative Agents”, a paper simulating interactions between tens of agents We gave it a close read, and implemented one of the novel components it introduced: a long-term, reflection-based memory system 🧵
50
339
2,011
824,828
Baby-AGI by @yoheinakajima is taking the world by storm Here's an implementation within the @langchain framework, allowing you to easily substitute in other vectorstores and other LLMs Docs: python.langchain.com/en/late…
51
287
2,003
1,033,313
Really excited to publicly announce that: 1⃣ @ankush_gola11 and I have started a company around @langchain 2⃣We raised a seed round from @benchmark We wrote a bit about the journey so far, and where we want to take it: blog.langchain.dev/announcin…
170
152
1,849
547,726
LangChain 🤝 AIPlugins A first open source attempt at using AIPlugins (the same ones ChatGPT is using) s/o @vaibhavk97 for this. Excited to see what other techniques the @langchain community comes up with - it's only the beginning Docs (Python and JS) in 🧵
41
219
1,367
412,233
ChatGPT @OpenAI API was released today, and the first of many integrations is now available in @langchain Python docs (`pip install langchain==0.0.98`): langchain.readthedocs.io/en/… JS/TS docs (`yarn add langchain@0.0.18`): hwchase17.github.io/langchai…
26
151
1,003
169,994
Yesterday @karpathy tweeted about using SVMs instead of KNN for retrieval (pros: better results, flexibility; cons: takes longer) Today @RLanceMartin implemented it in @langchain 🚀🚀 Play around with it here! python.langchain.com/en/late…
25
127
948
198,065
⭐️Claude + AI Plugins⭐️ AI Plugins (the ones ChatGPT is using) are usable by ANY language model It takes a tiny bit of prompt engineering, but here is @AnthropicAI's Claude using them Code: gist.github.com/hwchase17/55…
24
133
932
169,377
Retrieval for QA systems is hard Vector search is good for capturing semantically similar texts, but often queries specify desired attributes like time, authorship, or other "metadata" fields, which vector search is not great at Enter... ⭐️SelfQueryRetriever⭐️
40
134
929
245,062
OpenAI recently released a guide on building agents which contains some misguided takes There's a lot of FUD, confusion, hype, and noise around agents I wrote a blog on how to think about agent frameworks. Includes: Background Info - What is an agent? - What is hard about building agents? - What is LangGraph? Flavors of agentic frameworks - “Agents” vs “workflows” - Declarative vs non-declarative - Agent abstractions - Multi agent Common Questions - What is the value of a framework? - As the models get better, will everything become agents instead of workflows? - What did OpenAI get wrong in their take? - How do all the agent frameworks compare?
88
120
919
450,090
🚨Emergency OpenAI Functions Release🚨 `pip install langchain==0.0.199` ✅ Support for functions in chat model wrapper ✅ Convert @langchain tools to functions Docs: github.com/hwchase17/langcha… Next up... I think its time for a new type of agent 😁
53
164
866
307,598
🤖Autonomous Agents & Agent Simulations🤖 Four agent-related projects (AutoGPT, BabyAGI, CAMEL, and Generative Agents) have exploded recently We wrote a blog on they differ from previous @langchain agents and how we've incorporated some key ideas blog.langchain.dev/agents-ro…
29
155
798
238,305
ChatGPT 🤝 WolframAlpha Give #ChatGPT a Wolfram|Alpha neural implant (as @stephen_wolfram put it) with @langchain 👏👏 @nickscamara_ for adding this Collab Notebook to try it out: colab.research.google.com/dr… Screenshot Below
17
155
749
158,966
🦜🔗Code Interpreter API ChatGPT's code interpreter is the hottest thing in the streets. A new project by @Shroominic takes a stab at recreating that functionality locally using OpenAI's apis Uses CodeBox - a sandboxed env with simple fileIO functionality Blog & GitHub 👇
22
143
761
151,003
The new @OpenAI functions are good for other things besides agents Another killer use case is extracting structured information from unstructured docs We've adding support for extraction AND tagging in @langchain - thanks to @fpingham for code and @jxnlco for review 🧵
25
103
708
317,548
📰GPT-Newspaper This project combines six agents to autonomously build a newspaper - content, outline, everything! By the same team (@tavilyai) that created GPT-Researcher Code: github.com/assafelovic/gpt-n…
14
120
678
117,021
LLMs are pretty good at writing SQL, but still struggle with some things (like joins) 🤯 But what if you use an *agent* to interact with SQL DBs? In the example below, it tries a join on a column that doesn't exist, but then can see the error and fixes it in the next query
17
67
664
217,684
🐪CAMEL🐪 Communicative Agents for “Mind” Exploration of LLM Society This paper shows how to put 2 agents in a sandbox with each other and watch them interact. Now implemented in LangChain! (s/o @guohao_li) Original Paper: arxiv.org/abs/2303.17760 Docs: python.langchain.com/en/late…
28
132
663
238,733
🦜🤖LangManus You had to know it was coming! This community effort attempts to replicate Manus using the LangStack (LangChain + LangGraph) Still early innings - but check it out here! github.com/langmanus/langman…
24
117
661
75,345
LLMs are great at understanding text This allows them to extract structured information from text: to use in forms, for query generation, knowledge base construction, etc `pip install kor` by @veryboldbagel is the best attempt at this I've seen eyurtsev.github.io/kor/index…
22
91
658
101,946
Excited to launch the world premiere of langchain.com Besides being aesthetically beautiful, it also has some much requested documentation: ⚙️ Integrations (Python vs JS/TS): langchain.com/integrations.h… ⛳️ Features (Python vs JS/TS): langchain.com/features.html
57
47
663
121,393
📃The rise of context engineering "Context engineering" has been an increasingly popular term used to describe a lot of the system building that AI engineers do But what is it exactly? The definition I like: "Context engineering is building dynamic systems to provide the right information and tools in the right format such that the LLM can plausibly accomplish the task." Builds upon takes from @tobi @dexhorthy @walden_yan @ankrgyl Not a new concept - agent builders have been doing it for the past year or two, and a lot of the tools we've build (LangGraph, LangSmith) have been built to assist with it. But it's a new term which will hopefully draw new attention to the skills and tools needed to do this properly. blog.langchain.com/the-rise-…
37
116
663
64,299
Want to give your agent access to 20k+ tools? 🔥@langchain x @zapier🔥 Integration now out in Python and JS Blog Post: blog.langchain.dev/langchain… Python Docs: langchain.readthedocs.io/en/… JS Docs: hwchase17.github.io/langchai…
14
120
643
147,287
⭐️Contextual Compression⭐️ We introduce multiple new methods in @langchain to compress retrieved documents w.r.t. the query before passing to an LLM for generation Inspired by @willpienaar at the "LLMs in production" conference Blog: blog.langchain.dev/improving… 🧵More details:
20
119
633
122,302
How to best build an agent that has access to ALL the ChatGPT Plugins? IMO, by combining two techniques we recently introduced in @langchain 🔧 Tool Retrieval 🗣️ Natural Language APIs Explanation and example notebook in 🧵
9
100
629
129,945
🦺RAGxplorer There's a lot of nuance in RAG, a lot of different parameters to control It can be really helpful to just play around with parameters and visualize results @gabchuayz built an AWESOME open source @streamlit app for exactly this github.com/gabrielchua/RAGxp…
15
101
556
73,850
Agents are here, you just have to know how to build them Excited to share this VERY detailed blogpost from @unifygtm on how they built their recent account qualification agent This contains all sorts of nuggets like: 3⃣The three different cognitive architectures they considered ✒️How they use o1 for some parts of their pipeline and Claude Sonnet for others 🖼️How they think about user experience 🤖Why you should think of agents as summer interns Thanks to the Unify team for sharing all this detail, a lot to learn from! One of my favorite posts we've shared in a while blog.langchain.dev/unify-lau…
6
74
608
69,131
💻Deep Agents CLI Using the deepagents package, we built a simple coding CLI as an example of a coding application you could build on top of deepagents We added in a concept of memory so that it would remember instructions and guidance over time Blog: blog.langchain.com/introduci… Video: piped.video/IrnacLa9PJc
22
84
605
157,285
✂️Text Splitting Playground Chunking text into appropriate splits is seemingly trivial yet very nuanced Open sourcing a playground to help explore different text splitting strategies GitHub: github.com/langchain-ai/text… Hosted Playground: share.streamlit.io/app/langc…
17
119
590
143,262
I am not excited about visual workflow builders 1. Not simple enough for the average user. I believe there should be a simpler way to create, modify, and adapt no-code agents 2. Not scalable for complex use cases Wrote a little blog: blog.langchain.com/not-anoth…
83
54
603
98,086
📄Documents x LLMs📄 Combining documents with LLMs is a key part of retrieval and chaining We've improved our @langchain reference documentation across the 5 major CombineDocumentsChains and helper functions to help with clarity and understanding of how these work 🧵
19
87
558
134,406
🥳Announcing LangChain and LangGraph 1.0 LangChain and LangGraph 1.0 versions are now LIVE!!!! For both Python and TypeScript Some exciting highlights: - NEW DOCS!!!! - LangChain Agent: revamped and more flexible with middleware - LangGraph 1.0: we've been really happy with LangGraph and this is our official stamp of approval - Standard content blocks: swap seamlessly between models Read more about it here: blog.langchain.com/langchain… We hope you love it!
44
91
578
112,778
🚨pip install --pre langchain==0.0.99rc0🚨 Play around with 4 chains built to specifically interact with the ChatGPT API in the proper way (rather than forcing it into the standard LLM wrapper) - ConversationChain - QA Chain - VectorDBQA Chain - ChatVectorDB Chain
13
45
551
117,622
New Flan-UL2 model on @huggingface... time to try it out in @langchain! Put together a notebook testing it with a standard chain-of-thought prompt, as well as question-answering over specific documents colab.research.google.com/dr… h/t @ClementDelangue for the idea!
8
106
523
102,310
🚀We're launching "long-term memory" support in LangGraph At its core, long-term memory is "just" a persistent document store that lets you *put*, *get*, and *search* for memories you've saved Why so simple? 🧵
17
66
529
60,235
LangChain-AGI 🤖 A (somewhat) facetious attempt to create AGI using the best agent & tools in @langchain Can currently use search, do complex math, lookup weather, lookup current news, and more Notebook here: colab.research.google.com/dr…
9
89
511
115,901
Gonna beef up the tutorials for how to create your own Chat-GPT over specific documents with @langchain What types of documents/knowledge bases would people want to have examples for? Eg Notion, Obsidian, webpages, etc
72
21
503
101,868
For the past six months, I haven't checked email directly, but rather have relied on an AI email assistant to triage and draft emails for me This is an example of an "ambient agent" We're open sourcing the code today, as well as a hosted version for people to try out 👇
32
65
496
173,793
im bullish on long-running, stateful agents who's building one of those?
128
19
505
71,206
⛓️Chain of Verification A great new paper from Meta on a prompting technique to reduce hallucinations 🦜🔗Sourajit Roy Chowdhury implemented this in @langchain **along with some improvements** 📃And he wrote a blog on it 🧵Lets dive in (this is why I love the LC community!)
6
105
487
112,525
New summarization technique: ⛓️Chain of Density🍢 Produces 5 summaries iteratively, each one denser and more informative than the prior. See @vimota's excellent thread on it below Try it out on the prompt hub! smith.langchain.com/hub/lang…
The latest paper from @salesforce AI, et al. discovers a new prompt called Chain of Density (CoD) that produces more dense and human-preferable summaries compared to vanilla GPT-4. I gave it a try for a few articles and it's really solid. Pasted it here if you want to try it 👇 --- Article: {{ ARTICLE }} You will generate increasingly concise, entity-dense summaries of the above article. Repeat the following 2 steps 5 times. Step 1. Identify 1-3 informative entities (";" delimited) from the article which are missing from the previously generated summary. Step 2. Write a new, denser summary of identical length which covers every entity and detail from the previous summary plus the missing entities. A missing entity is: - relevant to the main story, - specific yet concise (5 words or fewer), - novel (not in the previous summary), - faithful (present in the article), - anywhere (can be located anywhere in the article). Guidelines: - The first summary should be long (4-5 sentences, ~80 words) yet highly non-specific, containing little information beyond the entities marked as missing. Use overly verbose language and fillers (e.g., "this article discusses") to reach ~80 words. - Make every word count: rewrite the previous summary to improve flow and make space for additional entities. - Make space with fusion, compression, and removal of uninformative phrases like "the article discusses". - The summaries should become highly dense and concise yet self-contained, i.e., easily understood without the article. - Missing entities can appear anywhere in the new summary. - Never drop entities from the previous summary. If space cannot be made, add fewer new entities. Remember, use the exact same number of words for each summary. Answer in JSON. The JSON should be a list (length 5) of dictionaries whose keys are "Missing_Entities" and "Denser_Summary". ```
12
67
468
150,856
How to speed up "chat-your-data" applications while retaining final answer accuracy? 🫙Use a cheaper/faster model (gpt-3.5) to create the condensed question 💬Use a better but more expensive model (gpt-4) for final response Thanks to @cristobal_dev for highlighting! 🧵
14
58
466
116,438
✒️OpenAI's Bet on a Cognitive Architecture I wrote a blog on how GPTs & Assistant API represent a bet OpenAI is making on building a specific cognitive architecture As well as some thoughts on what cognitive architectures currently work and why Blog: blog.langchain.dev/openais-b…
15
91
448
79,207
Integration 2/n: GPT-4 If you are lucky enough to have access to GPT-4, using it in @langchain is quite simple: just update the model name ``` from langchain.chat_models import ChatOpenAI llm=ChatOpenAI(model_name="gpt-4") ```
10
56
444
82,274
🎉New @DeepLearningAI_ class🎉 I had so much fun teaching the last one with @AndrewYNg I had to return for a follow up This one is a deep dive on the most popular applications of LLMs to date: using them to chat with your data What do we cover? 👇 deeplearning.ai/short-course…
17
92
448
123,081
If you're looking for a project to distract you on this weekend... may I suggest building a research assistant Recently filmed a long-form YouTube tutorial on building one from scratch. Covers LCEL, LangSmith, parallelization, retrievers piped.video/watch?v=DjuXACWY…
55
75
448
177,793
A similar "Plan-Execute" agent framework that @yoheinakajima has been using to create Baby-AGI is also useful for interacting with large and complex OpenAPI specs Here an agent plans and executes 5 different API calls to complete a user request Docs: python.langchain.com/en/late…
16
75
436
95,046
With the release of open source models like StableML by @StabilityAI, Dolly by @databricks and Camel by Writer, we've heard an increase in demand for running these models in @langchain We recently revamped our docs around @huggingface to highlight how easy this (links 👇)
12
77
438
75,939
We just put all the @langchain webinars on Youtube! piped.video/channel/UCC-lyoT… The best part is, this now means we can use LangChain (in 12 lines of code) to do question/answering over the LangChain webinars 🤯 How circular Gist: gist.github.com/hwchase17/aa…
20
62
437
62,213
🧠🤖Deep Agents Simple tool calling loops fail on longer time horizon or more complex tasks Deep Agents like Deep Research, Claude Code & Manus succeed by using a number of tools and tricks We created a new Python package which makes it easy to build your own Deep Agents!
18
63
447
53,817
🚀OpenAI InstructGPT 3.5 model OpenAI just quietly released a version of their 3.5 models available via the old completion endpoints This is nice because chat models are sometimes chatty which make them less ideal for agents, where you want precise steerable outputs Example 👇
13
71
427
94,366
Introducing LangChain (🦜🔗): a python package aimed at helping build LLM applications through composability `pip install langchain` github.com/hwchase17/langcha… A thread on why we built this, what you can do with it, where it's going, and other tools in the ecosystem: 🧵
10
52
442
well it happened ✨the chat-langchain app is completely reproducible in javascript✨ data ingestion, text splitting, embeddings, vectorstore, llms, chains... all through langchainjs chat-langchain repo: github.com/sullivan-sean/cha… langchainjs repo: github.com/hwchase17/langcha…
18
48
438
81,477
🤖Agents from scratch We've rewritten all our 8 agent types using LangChain Expression LangChain and prompts from the Hub This makes them more modular, understandable, and therefor more customizable This customizability is crucial for teams looking to go to production Long 🧵
18
66
438
67,181
✨Agents + Vectorstores✨: a powerful combo Can be used to: 🍴 route questions between MULTIPLE indexes ⛓️ do chain-of-thought reasoning with proprietary indexes 🔧 combine proprietary data with tool usage Here's how to use them together in @langchain 👇
12
47
430
128,406
🤝LangChain x Hugging Face x Gradio🤝 Wouldn't it be cool if you use all the @Gradio apps on @huggingface as tools in a @langchain agent? Thanks to @freddy_alfonso_ you can! Full Blog: blog.langchain.dev/gradio-ll… Notebook: python.langchain.com/en/late… Repo: github.com/freddyaboulton/gr…
9
99
430
86,797
What LLM products have the most innovative UX?
96
28
434
128,340
Lance (@RLanceMartin) has done a TON to bring advanced retrieval topics to @langchain and make them easily approachable and understandable This image he put together for our "RAG from Scratch" YouTube series is absolutely 🔥 (YouTube: piped.video/wd7TZ4w1mSw)
11
85
416
135,483
🚨 Watch how I can run up a $1000 bill with a single call to a poorly protected LLM app 🚨 Prompt injection attack against an agent: tricking it into repeatedly calling the LLM and SerpAPI, quickly racking up costs
11
47
420
117,776
🗺️ Plan-and-Execute Agents 🗺️ Inspired by BabyAGI and the recent Plan-and-Solve paper, we're introducing a new type of @langchain agent We think these are better for more complex tasks, at the cost of more calls to the LLM Blog: blog.langchain.dev/plan-and-… 🧵
19
75
415
79,492
yeah deep research is great... but have you ever wanted it open source, with swappable models, and able to research over your own data? GPT-Researcher is exactly that - the leading OSS AI Researcher project github.com/assafelovic/gpt-r…
69
55
413
70,939
pretty bad advice here from openai there are 27 libraries like "Agents SDK" (i would put the original LangChain in this camp!) and none of them are reliable enough to get to production for 99% of use cases ✒️blog coming this weekend
Shade thrown at graph-based agent frameworks in @OpenAI's Practical Guide to Building Agents
47
21
428
175,100
🦙LangChain x Llama🦙 Llama integration is finally here! Not only with the original llama-cpp library, but also with @nomic_ai's gpt4all model (an assistant-style large language model with ~800k GPT-3.5-Turbo Generations based on LLaMa)
Rather large 🦜🔗0.0.131 release! 🆓GPT4all model (@nomic_ai) 🦙Llama-cpp model ⏹️Support for @qdrant_engine local db 🌲Zilliz cloud (@milvusio) Vectorstore support 📧New OutlookMessage Document Loader 🕸️New Selenium Document Loader 🪟 Support for SQL views in SQLChain 🧵
7
62
407
76,363
glad to see "deep agents" gaining more steam! great writeup by Philipp code for deepagents on top of langgraph: github.com/langchain-ai/deep… LangChain Academy course on deep agents: academy.langchain.com/course…
Most "agents" today are shallow while loops around an LLM and tools. Works for simple tasks, but fails when a task requires 50+ steps over several days. To solve complex problems, we need an architectural shift towards Deep Agents (Agents 2.0). We have to decouple planning from execution. Explicit state, sub-agents, and persistent memory.
18
57
415
53,499
It's been one of the more requested topics for a webinar, and it's finally here... 🤖Agents🤖 Featuring: @yoheinakajima (recently doing a lot of work on baby-AGI) @mbusigin (code agents, cognosis) Next Wednesday, 9am PST: crowdcast.io/c/46erbpbz609r
11
51
401
76,985
If MCP is Zapier… won’t the value accrue to the client (not the integrations)? Who is building the best application to **consume** MCPs? Or am I thinking about this wrong
Is MCP just Zapier without UI but powered by a prompt?
100
17
412
140,137
❓What's next for AI agents I was lucky enough to have the opportunity to talk at the recent @sequoia AI ascent on what was next for AI agents I talked about three things: 🗺️Planning 🖥️UX 🧠Memory Check out the full video here: piped.video/watch?v=pBBe1pk8…
14
72
404
59,594
🔧🦙Function calling with Llama2? In our first addition to 🦜🧪langchain_experimental, we're excited to integrate with llamaapi LlamaAPI is a hosted version of llama2 that adds in support for `functions` in the same way @OpenAI does Thanks to @edreisMD, links in 🧵
12
63
404
123,660
yeah you've seen a @langchain agent do math, but have you seen it think about what the best taylor swift song is and automatically add it to your spotify playlist? IFTTT webhooks now available as tools - in both python AND typescript s/o @upster for idea and execution
5
41
389
70,445
📚LangChain Academy: Deep Research One of the most popular use cases for agents is "deep research" We've added a new hour long course on how to build one of these Course: academy.langchain.com/course…
8
69
388
28,786
This is really good blog post Love that it highlights “context engineering” “Context Engineering In 2025, the models out there are extremely intelligent. But even the smartest human won’t be able to do their job effectively without the context of what they’re being asked to do. “Prompt engineering” was coined as a term for the effort needing to write your task in the ideal format for a LLM chatbot. “Context engineering” is the next level of this. It is about doing this automatically in a dynamic system. It takes more nuance and is effectively the #1 job of engineers building AI agents.”
I see a lot of people make the same mistakes building agents. So we shared a few of the principles we use cognition.ai/blog/dont-build…
15
40
390
51,761
🌲Multi Vector Retriever The basic idea: you store multiple embedding vectors per document. How do you generate these embeddings? 👨‍👦Smaller chunks (this is ParentDocumentRetriever) 🌞Summary of document ❓Hypothetical questions 🖐️Manually specified text snippets Quick 🧵
9
69
377
133,559
🔀Router Chains🔀 A simple (yet much requested) abstraction that started with a @ShreyaR pr months ago and is finally in @langchain! - Router Chain does classification to choose sub chain to use - Call the selected chain with that input Lots of potential use cases! 🧵
20
51
374
82,087
Plan for this weekend: dive into GraphRAG a bit more. Two new things I want to explore: 👨‍💻 Implementation of Microsoft's GraphRAG paper from @tb_tomaz: medium.com/neo4j/implementin… 📃"The GraphRAG Manifesto" - a high detailed piece on GraphRAG from @neo4j: neo4j.com/blog/graphrag-mani…
11
59
372
31,210
What I LOVE about this example is it shows how easy it is to create a CUSTOM retriever class and use it within LangChain As you go deep on a problem, it's highly likely you'll want some custom retrieval logic to eek out the best performance.
Tutorial: How to build an e-commerce chatbot using #OpenAI, @Redisinc, and @langchain -- useful just if you want to see how this sort of system works. redis.com/blog/build-ecommer…
3
47
363
142,460
🕓Ambient Agents One of the UX patterns I'm most interested in is the idea of "ambient agents" working in the background for us This can be super powerful... but needs some UX tricks to get right. So I wrote about it! blog.langchain.dev/ux-for-ag… What are some considerations here? 👪 Human on the loop We mostly talk about human-in-the-loop, but that doesn't work for ambient agents. Still - having observability and potentially control over what the agent does is important So rather than have the human **in** the loop, what if they were **on** the loop? You can observe all that is happening, but after the fact. Helps to build trust! 🤝Asking for help Often times agents can't be fully autonomous. They may need input from a human on a particular point. For example - I have an email agent which often needs input from me on how to fix this bug, whether I **want** to schedule this meeting, etc This means that agents need a way to reach out to humans and ask for help. What might this look like? I think something like a customer support dashboard is a reasonable UX ❓Are you building agents with some sort of ambient UX? If so - I'd love to talk! Please reach out or lmk what you think
31
39
370
51,783
🌳Tree-of-Thought A new reasoning method, originally by @ShunyuYao12, implemented in 🦜🧪langchain_experimental by Vadim Gubergrits Paper: arxiv.org/abs/2305.10601 Docs: python.langchain.com/docs/mo… LangSmith Trace: smith.langchain.com/public/c…
5
59
349
46,589
Really excited to share a deployed chatbot grounded to answer questions about LangChain's documentation ChatBot: chat.langchain.dev/ Blog: blog.langchain.dev/langchain… Source Code: github.com/hwchase17/chat-la… HuggingFace Space: huggingface.co/spaces/hwchas…
14
41
354
70,521
This is my favorite thing we've launched in a while. Been using it for a week and has already changed how I build LLM apps Build your agent in code, then point LangGraph Studio at it. We'll visualize the agent, let you interact with it, and let you modify the state directly All while watching the underlying code files for any code changes and reloading the graph as needed I think building LLM apps will remain pretty code heavy, but there absolutely is a visual component to it. It's also a very iterative process Shout out to @__dqbd for all the work on this!
🚀Announcing LangGraph Studio: The first agent IDE LangGraph Studio offers a new way to develop LLM applications by providing a specialized agent IDE that enables visualization, interaction, and debugging of complex agentic applications With visual graphs and the ability to edit state, you can better understand agent workflows and iterate faster. LangGraph Studio integrates with LangSmith so you can collaborate with teammates to debug failure modes LangGraph Studio is available for free to all LangSmith users on any plan tier during its early development. Read more about it here: blog.langchain.dev/langgraph… Watch a YouTube walkthrough: piped.video/watch?v=pLPJoFvq… Try out LangGraph Cloud for free here: github.com/langchain-ai/lang… Sign up for a LangSmith account: smith.langchain.com
16
46
352
59,815
Another way to think about LangGraph is that it is an easy way to create **State Machines** state machine = labeled, directed graph Thinking of complex LLM systems as state machines (rather than autonomous agents) can often be useful to enforce more control
14
40
348
63,977
⭐️Want an open source version of OpenAI's Operator? There's a great open source project called Browser Use that does similar things (and more) while being open source Allows you to plug in any model you want Love to see open source leading the way🚀 github.com/browser-use/brows…
13
61
345
44,851
Our webinar on agents starts in 1 hour It's the most popular webinar we've hosted yet, so we had to bring in the best possible moderator: @charles_irl Come join Charles, myself, @ShunyuYao12, @mbusigin and @yoheinakajima for some lively discussion :) crowdcast.io/c/46erbpbz609r
18
46
336
108,282
🔧Structured Tools🔧 Agents are all about the tools you give it Tools in @langchain used to just take a single string input. In our new release, tools can now take multiple inputs. We also introduce a new agent type for these tools Blog: blog.langchain.dev/structure… 🧵
15
47
340
100,193
Many startups focused on serving open source models have exposed APIs that are interoperable with OpenAI This makes it easy for anyone to try them out by just changing the API base We added better support for this in @langchain in the most recent release (h/t Yuze Ma) 🧵
16
45
321
77,493
GPTs, but with: 🧠Bring-your-own-model (OpenAI, Azure, Anthropic, Bedrock) 🌲Bring-your-own-retrieval (document loading, chunking, embedding, vectorstore, retrieval algorithm) ⚒️Bring-your-own-tools 💬Bring-your-own-chat-history Got a little "research preview" hosted as well
🦜🤖OpenGPTs Some big updates to OpenGPTs - an open-source, fully configurable GPTs experience You can now: 📁Upload files to a retrieval tool (with full configurability over the ingestion, vectorstore, and retrieval used) 🌐Share public bots that you've created 🛠️Use more tools by default (wikipedia, arxiv, pudmed, @YouSearchEngine, @tavilyai, Kay.ai (@vishalrohra_) 👍/👎Log feedback to LangSmith 💬Store chat message history (with @Redisinc) Check out the open source repo here: github.com/langchain-ai/open… And check out the "research preview" hosted app here: opengpts-example-vz4y4ooboq-…
18
26
326
81,342
✨LangChain x Weights & Biases✨ @wandb is the canonical MLOps/experimentation platform. Excited to announce that you can now use it to track your @langchain runs! Thanks to Anish Shah for working to get this in Links 👇
4
59
331
69,498
tell me why your agent framework is better than langgraph i'm writing a blog (aiming to come out tmrw) about agent frameworks and i want to be as unbiased as possible but so far i don't have many examples things other agent frameworks do that langgraph doesn't 🤷‍♀️
what is something other agentic frameworks do that langgraph doesnt? not abstractions, but functionality currently the only one i can think of is dspy by @lateinteraction (which does optimization) what am i missing?
72
15
340
128,955
coolest client that integrates with MCP that ive seen
Replying to @hwchase17
You should try @tryhighlight - you can just @ any MCP server from anywhere. Runs natively. With context grounding so it can use what you’re looking at as inputs and outputs.
12
39
328
64,397
With the ChatGPT release, we've taken the opportunity to rethink memory in @langchain Main change: allow memory objects to return `List[ChatMessage]` (rather than strings) Also made memory more modular so can be used outside of chains 🧵 w/ explanation and links
11
33
324
80,722
When connecting LLMs to your data, semantic search is a great first pass - but to get even better performance you can turn to more advanced techniques: ✒️Contextual Compression 🤳Self Query 🕐Time weighting Going live in 30m to talk about this and more! zilliz.com/event/memory-for-…
7
52
320
68,986
❓What is an agent? I get asked this question a lot, so I wrote a little blog on this topic and other things: - What is an agent? - What does it mean to be agentic? - Why is “agentic” a helpful concept? - Agentic is new Check it out here: blog.langchain.dev/what-is-a…
14
41
328
57,761
IMO this is the future for a lot of GenAI apps Automatically achieve better & more personalized LLM apps by: - Log all LLM outputs - Log feedback for those outputs - Use feedback to build datasets - Use datasets as few shot examples Want to do this for your app? Shoot me a DM
⚙️How Dosu used LangSmith to achieve a 30% accuracy improvement with no prompt engineering One of the goals of LangSmith is to help teams set up a data flywheel. By capturing LLM outputs alongside user feedback, we can help developers automatically use that feedback to improve their application That's exactly what @devstein64 and the @dosu_ai team did. They have GitHub bot that auto-labels your issues and PRs (among other features). We sat down with them to understand how they used logging, datasets, and our new automations feature to automatically improve their application by 30% purely by capturing user feedback. We then set up a cookbook so ANY LangSmith user can replicate what they did. Blog: blog.langchain.dev/dosu-lang… YouTube: piped.video/tHZtq_pJSGo Cookbook: docs.smith.langchain.com/mon…
19
38
324
56,793
Today we're releasing 0.2 of deep agents 📁The main addition here is a "backend" abstraction, which allows you to swap out the filesystem that deep agents use. Can be local filesystem, a database, remote vm, anything Agent Harnesses like deep agents are becoming more important as models become good enough to build more complex, autonomous agents. We wrote a bit about why and how we're doubling down on deep agents: blog.langchain.com/doubling-…
20
59
327
53,416
text-to-sql is a really common use case read here how LinkedIn rolled out a production text-to-sql bot to everyone at the company the blog linked below is pretty technical, so can definitely learn some things!
🏆Top 5 LangGraph Agents in Production 2024 #3: LinkedIn While "agents" are the buzzword of the moment, agentic apps built with LangGraph have been in production throughout 2024. Among those who shared insights publicly, we're doing a countdown of our 5 favorite. Next up, number 3: LinkedIn One of the big use cases for LLMs is in making data more accessible to everyone. LinkedIn recently rolled out SQL Bot, an AI-powered assistant internally This internal tool transforms natural language questions into SQL: it finds the right tables, writes queries, fixes errors, and enables employees across functions to independently access the data insights they need under the appropriate permissions. Behind the scenes, SQL Bot is a multi-agent system built on top of LangChain and LangGraph. linkedin.com/blog/engineerin…
5
41
314
45,024