﻿<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[Awesome Agents]]></title><description><![CDATA[Weekly Updates from the Langchain and Agent Ecosystem. Keep up to date about new projects, framework releases, new articles and videos]]></description><link>https://awesomeagents.substack.com</link><image><url>https://substackcdn.com/image/fetch/$s_!mD50!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1a432088-e285-4df0-aac0-74f68f1bb3a6_1024x1024.png</url><title>Awesome Agents</title><link>https://awesomeagents.substack.com</link></image><generator>Substack</generator><lastBuildDate>Fri, 19 Jun 2026 09:34:17 GMT</lastBuildDate><atom:link href="https://awesomeagents.substack.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[Kyrolabs AI]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[awesomeagents@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[awesomeagents@substack.com]]></itunes:email><itunes:name><![CDATA[Kyrolabs AI]]></itunes:name></itunes:owner><itunes:author><![CDATA[Kyrolabs AI]]></itunes:author><googleplay:owner><![CDATA[awesomeagents@substack.com]]></googleplay:owner><googleplay:email><![CDATA[awesomeagents@substack.com]]></googleplay:email><googleplay:author><![CDATA[Kyrolabs AI]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[ClaudeClaw: Composable Agent Orchestrator as a Claude Code Plugin]]></title><description><![CDATA[This week's special feature: ClaudeClaw &#8212; an open-source (MIT) agent orchestrator that runs as a Claude Code plugin, turning Claude into a persistent, always-on agent across Slack, WhatsApp, Telegram, Discord, and Gmail.]]></description><link>https://awesomeagents.substack.com/p/claudeclaw-composable-agent-orchestrator</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/claudeclaw-composable-agent-orchestrator</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Sun, 22 Mar 2026 10:26:46 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!mD50!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1a432088-e285-4df0-aac0-74f68f1bb3a6_1024x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>This week's special feature: <strong>ClaudeClaw </strong>&#8212; an open-source (MIT) agent orchestrator that runs as a Claude Code plugin, turning Claude into a persistent, always-on agent across Slack, WhatsApp, Telegram, Discord, and Gmail.</p><p></p><p><strong>The pitch:</strong> You want Claude running 24/7 in your team's Slack &#8212; triaging support questions, investigating bugs, filing GitHub issues &#8212; not just when someone has a terminal open. ClaudeClaw makes that a `git clone` + `/setup` away.</p><p></p><p><strong>What makes it interesting:</strong></p><p></p><p>&#128274; <strong>OS-level sandboxing, not Docker.</strong> Each agent spawns in &lt;10ms using Anthropic's `sandbox-runtime` (Seatbelt on macOS, bubblewrap on Linux). Kernel-enforced filesystem and network restrictions. The security model inverts Docker's: credentials are passed directly, but the agent can only connect to Anthropic's API &#8212; nowhere to exfiltrate.</p><p></p><p>&#129513; <strong>Composable extension system.</strong> Channels and agents aren't bundled &#8212; they're installable extensions with their own repos. `/install-extension slack` clones from GitHub, compiles, copies skills, restarts. No merge conflicts, no monolith. Core stays lean (~8K lines).</p><p></p><p>&#129504; <strong>Structured memory. </strong>Daily logs, topic files, long-term CLAUDE.md, searchable archive. PreCompact hooks auto-save conversations before context compaction. QMD semantic search (hybrid BM25 + vector + LLM re-ranking) on the roadmap.</p><p></p><p>&#128225; <strong>Three trigger modes. </strong>Channel messages (@mention), scheduled tasks (cron), and webhook triggers (HTTP POST with HMAC-SHA256). CI failures, GitHub events, and monitoring alerts can all invoke agents.</p><p></p><p>&#128295; <strong>Self-improving. </strong>The entire codebase fits in Claude's context window. Want to change behavior? Tell Claude. It reads, modifies, and commits code changes. No config files &#8212; code is the configuration.</p><p></p><p><strong>Architecture at a glance:</strong></p><p>```</p><p>Channels &#8594; SQLite &#8594; Polling loop &#8594; Sandbox (Claude Agent SDK) &#8594; Response</p><p>Webhooks &#8594; HTTP &#8594; HMAC verify &#8594; Queue</p><p>```</p><p></p><p>Single Node.js process. Channels self-register at startup. Per-group isolation: each group gets its own sandbox, memory, filesystem, and agent config (model, tools, cost limits).</p><p></p><p><strong>Origin:</strong> Fork of <a href="https://github.com/qwibitai/nanoclaw">NanoClaw</a>, rebuilt as a Claude Code plugin in two days. Added sandbox runtime, extension system, message router with hook pipeline, structured memory, webhook triggers, cost tracking, and per-group agent configuration.</p><p></p><p><strong>Roadmap:</strong></p><p>- Multi-model routing (OpenAI, Google, Ollama &#8212; provider-prefixed model strings)</p><p>- QMD semantic memory (fully local, no API calls for search)</p><p>- Obsidian vault integration</p><p>- TUI for instance management</p><p></p><p><strong>Links:</strong></p><p>- &#128279; Repo: <a href="https://github.com/sbusso/claudeclaw">github.com/sbusso/claudeclaw</a></p><p>- &#128196; License: MIT</p><p>- &#128203; Requirements: macOS/Linux, Node.js 20+, Claude Code, your own API key OAuth</p>]]></content:encoded></item><item><title><![CDATA[Awesome LangChain - Mid-October 2023]]></title><description><![CDATA[Where Autumn Innovations Meet Golden Opportunities!]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-mid-october-2023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-mid-october-2023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Thu, 12 Oct 2023 23:01:17 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F247fb28f-c4d3-4165-a871-47ea1ea41b34_1024x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello LangChain community!</p><p>As the leaves change hues and the nights grow crisp, mid-October brings us a blend of nostalgia and innovation, but AI innovation and the LangChain ecosystem continue to thrive. Dive in with us as we unwrap the latest developments in the LangChain universe.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><h2>Projects</h2><p><strong><a href="https://github.com/langchain-ai/langserve">LangServe</a></strong> A library that helps developers deploy LangChain runnables and chains as a REST API. LangServe offers features such as automatic schema inference, efficient endpoints, and support for popular Python libraries. It simplifies language processing workflows and provides developers with a seamless way to integrate LangChain functionalities into their projects.</p><p><strong><a href="https://github.com/openai/openai-python#openai-python-library">OpenAI Python Library</a> </strong>A beta version of the OpenAI Python library version 1.0 is now available, offering new features and breaking changes for users to test before the official release. Read the full <a href="https://github.com/openai/openai-python/discussions/631">release notes</a> and keep up with the discussion.</p><p><strong><a href="https://github.com/lobehub/lobe-chat">LobeChat</a></strong> is an open-source chatbot framework that offers a dynamic plugin system, a repository of prompt agents, seamless mobile and desktop experience via PWA, customizable themes, and optimized mobile interactions<br><br><strong><a href="https://github.com/traceloop/openllmetry">Openllmetry</a></strong> built on OpenTelemetry by Traceloop, enhances observability in LLM applications, supports integration with platforms like Datadog and Honeycomb, and offers specialized extensions for tools like OpenAI and Vector DBs; it can be quickly initiated with the Traceloop SDK.<br><br><strong><a href="https://github.com/shroominic/funcchain">Funcchain</a></strong> offers a pythonic approach to crafting cognitive systems, using pydantic models and langchain to easily integrate llms into apps, optimizing with OpenAI Functions and JSONFormer compatibility.</p><h2>Videos</h2><p>James Briggs takes viewers on a journey from novice to expert in LangChain streaming, highlighting the use of GPT-3.5-turbo through ChatOpenAI and its integration with FastAPI.</p><div id="youtube2-y2cRcOPHL_U" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;y2cRcOPHL_U&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/y2cRcOPHL_U?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><p>Sam Witteveen's highly informative and well-presented three-part series on Retrieval Augmented Generation (RAG) offers a comprehensive exploration of Self-querying retrieval, parent document retrieval, and hybrid search.</p><div id="youtube2-f4LeWlt3T8Y" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;f4LeWlt3T8Y&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/f4LeWlt3T8Y?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><div id="youtube2-wQEl0GGxPcM" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;wQEl0GGxPcM&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/wQEl0GGxPcM?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><div id="youtube2-lYxGYXjfrNI" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;lYxGYXjfrNI&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/lYxGYXjfrNI?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><h2>Integrations</h2><p>Cloudflare introduces <strong><a href="https://blog.cloudflare.com/workers-ai/">Workers AI</a></strong>, a serverless platform allowing developers to effortlessly execute AI models on a global GPU network, prioritizing accessibility, privacy, and a seamless developer experience. Read the full blog about the new service platform <strong><a href="https://blog.cloudflare.com/workers-ai/">here</a>.</strong></p><p><strong><a href="https://n8n.io/langchain/">n8n</a></strong> has seamlessly integrated LangChain, enabling users to build LLM apps on its intuitive low-code platform swiftly. This fusion offers tailored AI and advanced chatbot functionalities and harnesses the power of 398 connectors for enhanced automation. Users can easily craft modular applications without coding expertise, optimize LLM model interactions, and embed chat widgets. Explore the new integration <strong><a href="https://n8n.io/langchain/">here</a></strong>.</p><h2>That&#8217;s all for today!</h2><p>Thank you for being a part of this continuously evolving journey with LangChain! Your passion and backing truly illuminate our community. If this issue struck a chord with you, please share it with others. Together, we only get stronger!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/p/awesome-langchain-mid-october-2023?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/p/awesome-langchain-mid-october-2023?utm_source=substack&utm_medium=email&utm_content=share&action=share"><span>Share</span></a></p><p>If you believe something was overlooked or have a project in mind, please feel free to connect with us on our GitHub repository or at awesomelangchain[at]<a href="http://kyrolabs.com/">kyrolabs.com</a>. We are eager to hear your thoughts.</p><p>Stay incredible, and see you in the next update!</p><p>This newsletter is crafted with love by the Kyrolabs team.</p><p>PS: We are not affiliated with the products or services mentioned in this update.</p>]]></content:encoded></item><item><title><![CDATA[Awesome LangChain - October 2023]]></title><description><![CDATA[Emerging from Summer: Projects Heat Up and News That Sizzles!]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-october-2023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-october-2023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Thu, 28 Sep 2023 22:55:56 GMT</pubDate><enclosure url="https://substackcdn.com/image/youtube/w_728,c_limit/Yqr6dy1reoA" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello to our LangChain enthusiasts!</p><p>As we bid farewell to summer, the energy in the tech sphere is palpable! Projects are springing back to life, and the air is thick with innovation. Grab your favorite autumn drink, and let's catch up on all the thrilling updates that came our way.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><h2>Projects</h2><p><strong><a href="https://github.com/Ironclad/rivet">Rivet</a></strong> is an IDE for creating complex AI agents and prompt chaining, and embedding it in your application.</p><p><strong><a href="https://github.com/openbmb/agentverse">AgentVerse</a></strong> is a flexible framework that simplifies building custom multi-agent environments for large language models (LLMs).</p><p><strong><a href="https://github.com/LangStream/langstream">Langstream</a> </strong>build and run event-driven Gen AI applications<br><br><strong><a href="https://github.com/jamesmurdza/gitwit-agent">GitWit</a></strong> is a container-based agent specialized in making useful commits to git repositories.</p><p><strong><a href="https://github.com/Yifan-Song793/RestGPT">RestGPT</a></strong> is an LLM-based autonomous agent that can control applications via RESTful APIs</p><p><strong><a href="https://github.com/jackmpcollins/magentic">Magentic</a></strong> seamlessly integrate LLMs as Python functions</p><p><strong><a href="https://github.com/promptfoo/promptfoo">Promptfoo</a></strong> test your prompts. Evaluate and compare LLM outputs, catch regressions, and improve prompt quality.</p><h2>Videos</h2><p>Superagent is a platform dedicated to the development and management of LLM agents, and this webinar delves into the technology that powers it.</p><div id="youtube2-Yqr6dy1reoA" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;Yqr6dy1reoA&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/Yqr6dy1reoA?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><p></p><p>James Briggs demonstrates building a chatbot using Retrieval Augmented Generation (RAG) with OpenAI's gpt-3.5-turbo</p><div id="youtube2-LhnCsygAvzY" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;LhnCsygAvzY&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/LhnCsygAvzY?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><p>Hosted by Kelvin Lawerence, this session simplified the use of graphs with Amazon Neptune through Langchain and LLMs.</p><div id="youtube2-B7GtC1IeIUA" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;B7GtC1IeIUA&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/B7GtC1IeIUA?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><h2>Articles</h2><p>The new OpenAI <a href="https://openai.com/research/gpt-4v-system-card">GPT-4V</a> model, short for GPT-4 with vision, allows users to instruct GPT-4 to analyze image inputs, marking a significant stride in AI research by incorporating additional modalities like images into large language models (LLMs). Read the full system card <strong><a href="https://openai.com/research/gpt-4v-system-card">here</a></strong>.</p><p>Molly Cantillon for Langchain, demonstrates building a chatbot named Chat LangChain, which provides information about LangChain by indexing and navigating through the Python documentation and API reference, while also delving into its architectural framework. Link to the tutorial <strong><a href="https://blog.langchain.dev/building-chat-langchain-2/">here</a></strong>.</p><p>Cloudflare published a tutorial on utilizing Langchain and Pinecone to index a Notion workspace, and on developing a custom ChatGPT plugin with Cloudflare Workers for querying purposes. You can read the tutorial <strong><a href="https://developers.cloudflare.com/workers/tutorials/deploy-a-realtime-chat-app/">here</a></strong>.</p><p><a href="https://www.microsoft.com/en-us/research/blog/autogen-enabling-next-generation-large-language-model-applications/">AutoGen</a> from Microsoft streamlines the orchestration of large language model (LLM)-based workflows. Through customizable agents, it fosters a collaborative space among LLMs, tools, and humans to efficiently address complex tasks. This development heralds a new era in AI, with more robust and automated LLM applications. Explore the full insight into AutoGen's potential <strong><a href="https://www.microsoft.com/en-us/research/blog/autogen-enabling-next-generation-large-language-model-applications/">here</a></strong>.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!GPie!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!GPie!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png 424w, https://substackcdn.com/image/fetch/$s_!GPie!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png 848w, https://substackcdn.com/image/fetch/$s_!GPie!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png 1272w, https://substackcdn.com/image/fetch/$s_!GPie!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!GPie!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png" width="1100" height="548" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:548,&quot;width&quot;:1100,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;https://www.microsoft.com/en-us/research/uploads/prod/2023/09/AutoGen_Fig1.png&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="https://www.microsoft.com/en-us/research/uploads/prod/2023/09/AutoGen_Fig1.png" title="https://www.microsoft.com/en-us/research/uploads/prod/2023/09/AutoGen_Fig1.png" srcset="https://substackcdn.com/image/fetch/$s_!GPie!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png 424w, https://substackcdn.com/image/fetch/$s_!GPie!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png 848w, https://substackcdn.com/image/fetch/$s_!GPie!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png 1272w, https://substackcdn.com/image/fetch/$s_!GPie!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F610f1a14-4056-4787-9f92-db0f18bdfe65_1100x548.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Delve into Fine-tuning GPT-3.5-Turbo to efficiently convert natural language queries into SQL. Read the article <strong><a href="https://medium.com/dataherald/fine-tuning-gpt-3-5-turbo-for-natural-language-to-sql-4445c1d37f7c">here</a></strong>.</p><p>OpenAI released a guide for teachers about ChatGPT, including suggested prompts. Read it <strong><a href="https://openai.com/blog/teaching-with-ai">here</a></strong>.</p><p>This article analyzes how users are using ChatGPT including prompt types and commonly used words. Read it <strong><a href="https://sparktoro.com/blog/we-analyzed-millions-of-chatgpt-user-sessions-visits-are-down-29-since-may-programming-assistance-is-30-of-use/">here</a></strong>.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!S1Jo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!S1Jo!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png 424w, https://substackcdn.com/image/fetch/$s_!S1Jo!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png 848w, https://substackcdn.com/image/fetch/$s_!S1Jo!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png 1272w, https://substackcdn.com/image/fetch/$s_!S1Jo!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!S1Jo!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png" width="358" height="379.4401114206128" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:761,&quot;width&quot;:718,&quot;resizeWidth&quot;:358,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!S1Jo!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png 424w, https://substackcdn.com/image/fetch/$s_!S1Jo!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png 848w, https://substackcdn.com/image/fetch/$s_!S1Jo!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png 1272w, https://substackcdn.com/image/fetch/$s_!S1Jo!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F253572b3-b285-44f2-9788-2fd22ec784b0_718x761.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>The article explores improving Large Language Models (LLMs) performance through dataset-centric fine-tuning. Read it <strong><a href="https://sebastianraschka.com/blog/2023/optimizing-LLMs-dataset-perspective.html">here</a></strong>.<br></p><h2>That&#8217;s all for this month!</h2><p>Thank you for being a part of this continuously evolving journey with LangChain! Your passion and backing truly illuminate our community. If this issue struck a chord with you, please share it with others. Together, we only get stronger!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/p/awesome-langchain-october-2023?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/p/awesome-langchain-october-2023?utm_source=substack&utm_medium=email&utm_content=share&action=share"><span>Share</span></a></p><p>If you believe something was overlooked or have a project in mind, please feel free to connect with us on our GitHub repository or at awesomelangchain[at]<a href="http://kyrolabs.com/">kyrolabs.com</a>. We are eager to hear your thoughts.</p><p>Stay incredible, and see you in the next update!</p><p>This newsletter is crafted with love by the Kyrolabs team.</p><p>PS: At Kyrolabs, we are looking for individuals who are enthusiastic about AI Agents and LangChain. If you're keen on embarking on this exhilarating adventure with us, send us a note at contact[at]<a href="http://kyrolabs.com/">kyrolabs.com</a>, sharing your interest in AI Agents and background.</p><p>Please note that we are not affiliated with the products or services mentioned in this update.</p>]]></content:encoded></item><item><title><![CDATA[Awesome LangChain - September 2023]]></title><description><![CDATA[Llama2 and fine-tuning]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-september-2023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-september-2023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Fri, 01 Sep 2023 03:13:22 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!kToz!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>After a short summer break and LangChain's newsletter debut, we're back with a twist! From now on, we're switching to monthly editions and broadening our scope to cover even more cool projects related to LangChain and similar frameworks. Thanks for sticking around, and let's jump into this month's highlights!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><h2>Projects</h2><p>Two big topics in August: <strong><a href="https://ai.meta.com/llama/">Llama2</a></strong><a href="https://ai.meta.com/llama/"> </a>and <strong>fine-tuning</strong>.</p><p>Meta also introduced <strong><a href="https://ai.meta.com/blog/code-llama-large-language-model-coding/">Code Llama</a></strong>, a state-of-the-art Large Language Model built on top of Llama 2, available in three specialized models for generating and understanding code and natural language</p><ul><li><p><strong><a href="https://github.com/Forethought-Technologies/AutoChain">AutoChain</a></strong>: A lightweight framework for quickly building and evaluating conversational agents using LLMs, facilitating user experiments and customization.</p></li><li><p><strong><a href="https://github.com/shroominic/codeinterpreter-api">Codeinterpreter-api</a></strong>: A LangChain implementation of the ChatGPT Code Interpreter.</p></li><li><p><strong><a href="https://github.com/langchain-ai/langsmith-cookbook">LangSmith-Cookbook</a></strong>: provides tutorials for the LangSmith platform. </p></li><li><p><strong><a href="https://github.com/InternLM/lagent">Lagent</a></strong>: A lightweight framework for building LLM-based agents.</p></li><li><p><strong><a href="https://github.com/PrefectHQ/marvin">Marvin</a></strong>: Another lightweight AI engineering framework for building natural language interfaces that are reliable, scalable, and easy to trust.</p></li></ul><h2>Monitoring</h2><p><strong><a href="https://www.monalabs.io">Mona</a></strong> is an AI monitoring platform that provides valuable insights into ML models and intelligent automation by detecting and resolving issues rapidly while reducing alert fatigue by notifying only specific root causes. </p><p><strong><a href="https://graphsignal.com/">Graphsignal</a></strong> is an AI-native observability platform that offers comprehensive monitoring, debugging, and collaborative tools for AI agents and LLM-powered applications</p><p><strong><a href="https://www.langchain.com/langsmith">Langsmith</a> </strong>from LangChain, a developer platform for LLM applications to test, monitor, and debug your applications</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!kToz!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!kToz!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png 424w, https://substackcdn.com/image/fetch/$s_!kToz!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png 848w, https://substackcdn.com/image/fetch/$s_!kToz!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png 1272w, https://substackcdn.com/image/fetch/$s_!kToz!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!kToz!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png" width="1456" height="1182" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1182,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:695470,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!kToz!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png 424w, https://substackcdn.com/image/fetch/$s_!kToz!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png 848w, https://substackcdn.com/image/fetch/$s_!kToz!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png 1272w, https://substackcdn.com/image/fetch/$s_!kToz!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6c20d5b1-b9af-4cfc-bc5d-65c17f1dacec_2000x1623.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2>Videos</h2><p><strong>Discover the capabilities of Llama2 as a conversational agent in LangChain.</strong></p><div id="youtube2-cIRzwSXB4Rc" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;cIRzwSXB4Rc&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/cIRzwSXB4Rc?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><p><strong>Learn how to bring your personality and tone to LLM apps in the Fine-tuning in Your Voice Webinar.</strong> </p><div id="youtube2-MJm49TAyz5w" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;MJm49TAyz5w&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/MJm49TAyz5w?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><h2>Articles</h2><p>LangChain's observability makes it easy to fine-tune LLMs in your unique style by converting messaging platform data <a href="https://blog.langchain.dev/chat-loaders-finetune-a-chatmodel-in-your-voice/">here</a></p><p>Enhance your performance and profits using OpenAI's 3.5 Turbo fine-tuning with LangSmith <a href="https://blog.langchain.dev/chatopensource-x-langchain-the-future-is-fine-tuning-2/">here</a></p><p>Fine-tuning GPT-3.5-Turbo for Natural Language to SQL <a href="https://medium.com/dataherald/fine-tuning-gpt-3-5-turbo-for-natural-language-to-sql-4445c1d37f7c">here</a></p><h2>That&#8217;s all for this week!</h2><p>Thank you for being a part of this continuously evolving journey with LangChain! Your passion and backing truly illuminate our community. If this issue struck a chord with you, please share it with others. Together, we only get stronger!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/p/awesome-langchain-september-2023?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/p/awesome-langchain-september-2023?utm_source=substack&utm_medium=email&utm_content=share&action=share"><span>Share</span></a></p><p>If you believe something was overlooked or have a project in mind, please feel free to connect with us on our GitHub repository or at awesomelangchain[at]<a href="http://kyrolabs.com/">kyrolabs.com</a>. We are eager to hear your thoughts.</p><p>Stay incredible, and see you in the next update!</p><p>This newsletter is crafted with love by the Kyrolabs team.</p><p>PS: At Kyrolabs, we are looking for individuals who are enthusiastic about AI Agents and LangChain. If you're keen on embarking on this exhilarating adventure with us, send us a note at contact[at]<a href="http://kyrolabs.com/">kyrolabs.com</a>, sharing your interest in AI Agents and background.</p><p>Please note that we are not affiliated with the products or services mentioned in this update.</p>]]></content:encoded></item><item><title><![CDATA[Awesome LangChain Weekly Digest - w29/2023]]></title><description><![CDATA[Streamlit partnership and Claude2 in the menu of this week]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w292023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w292023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Mon, 17 Jul 2023 10:29:15 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello LangChain Enthusiasts!</p><p>We bring you various updates, projects, and insightful content this week. So let's dive in!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><h2>Updates</h2><p><strong>Partnership with Streamlit</strong>: Exciting news! Langchain has partnered with Streamlit. You can read more about this here: <a href="https://blog.streamlit.io/langchain-streamlit/">LangChain-Streamlit partnership</a></p><p><strong>Automatic Metadata Extraction</strong>: Now, you can leverage an LLM to extract metadata. Check out the details <a href="https://python.langchain.com/docs/modules/data_connection/document_transformers/integrations/openai_metadata_tagger">here</a></p><p><strong>Property Extraction with Doctran</strong>: Similar to the metadata tagger, the doctran property extractor lets you define the properties to extract from a document's text and add them to its metadata. Get more information <a href="https://python.langchain.com/docs/modules/data_connection/document_transformers/integrations/doctran_extract_properties">here</a>.</p><p><strong>KoboldAI Model Wrapper</strong>: KoboldAI offers a variety of models fine-tuned for story writing. Read more <a href="https://python.langchain.com/docs/modules/model_io/models/llms/integrations/koboldai">here</a></p><p>Changelogs:</p><p><a href="https://github.com/hwchase17/langchain/releases">Langchain Python Changelog</a></p><p><a href="https://github.com/hwchase17/langchainjs/releases">Langchain JS/TS Changelog</a></p><h2>Projects</h2><p><strong>a16z Companion App</strong>: Check out the project <a href="https://github.com/a16z-infra/companion-app">here</a></p><p><strong>LangChain Streamlit Agent</strong>: Discover this new Streamlit agent for the new partnership <a href="https://github.com/langchain-ai/streamlit-agent">here</a></p><p><strong>Airtable QNA</strong>: Now, ask questions to your Airtable base in natural language. Learn more <a href="https://github.com/ikram-shah/airtable-qna">here</a>.</p><h2>Videos</h2><p><strong>LangChain "Characters" Webinar</strong></p><div id="youtube2-T0OU74b2Y5o" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;T0OU74b2Y5o&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/T0OU74b2Y5o?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><p><strong>Image to Speech Pipeline with LangChain and HuggingFace Models</strong>: Although a month old, this is an excellent showcase. Watch the video </p><div id="youtube2-_j7JEDWuqLE" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;_j7JEDWuqLE&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/_j7JEDWuqLE?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><p><strong>Claude-2 Meets LangChain!</strong></p><div id="youtube2-Hb_D3p0bK2U" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;Hb_D3p0bK2U&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/Hb_D3p0bK2U?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><h2>Articles</h2><p><strong>Building a Conversational Agent with Memory with Motorhead</strong>: Learn how to stack chains as tools <a href="https://getmetal.io/posts/15-conversational-agent-with-memory">here</a>.</p><p><strong>Analyzing User Interactions with LLMs to Improve our Documentation</strong>: Understand how LLMs can enhance documentation <a href="https://blog.langchain.dev/llms-to-improve-documentation/">here</a>.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!29Bw!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!29Bw!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png 424w, https://substackcdn.com/image/fetch/$s_!29Bw!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png 848w, https://substackcdn.com/image/fetch/$s_!29Bw!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png 1272w, https://substackcdn.com/image/fetch/$s_!29Bw!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!29Bw!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png" width="1456" height="703" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:703,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!29Bw!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png 424w, https://substackcdn.com/image/fetch/$s_!29Bw!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png 848w, https://substackcdn.com/image/fetch/$s_!29Bw!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png 1272w, https://substackcdn.com/image/fetch/$s_!29Bw!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F977c20c6-57f8-449d-9bc4-85e43f222c4f_1661x802.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p><strong>The Emergence of LangChain</strong>: Replit explores the rise of LangChain in this <a href="https://blog.replit.com/ai-on-replit">article</a>.</p><h2>That&#8217;s all for this week!</h2><p>Thank you for being a part of this incredible LangChain journey with us. Our community's vibrancy is a credit to you all. If you enjoyed this week's digest, feel free to share it. The more, the merrier!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w292023?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w292023?utm_source=substack&utm_medium=email&utm_content=share&action=share"><span>Share</span></a></p><p>If you think we missed something or if you have a project to suggest, don't hesitate to reach out on our GitHub repository or email us at awesomelangchain[at]kyrolabs.com. We look forward to hearing from you.</p><p>Keep being awesome, and see you next week!</p><p>This newsletter is crafted with love by the Kyrolabs team.</p><p>PS: At Kyrolabs, we seek individuals passionate about AI Agents and LangChain. If you're interested in joining us on this exciting journey, drop us a message at contact[at]kyrolabs.com and tell us about your interest in AI Agents and your background.</p>]]></content:encoded></item><item><title><![CDATA[Awesome LangChain Weekly Digest - w28/2023]]></title><description><![CDATA[This week, 2 in-depth Agent projects]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w282023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w282023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Mon, 10 Jul 2023 07:45:44 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!Fl0C!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello LangChain Community!</p><p>Welcome to Week 28 of Awesome LangChain updates! Even though many of us are kicking off our summer holidays, plenty's still happening in the LangChain world. Let's dive straight in and check out what's new. Enjoy!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><h2>Integrations</h2><p>New integrations are now available directly on the <a href="https://integrations.langchain.com/new">dedicated website</a> with some new integrations with Office365 and the Changelogs:</p><p><a href="https://github.com/hwchase17/langchain/releases">Langchain Python Changelog</a></p><p><a href="https://github.com/hwchase17/langchainjs/releases">Langchain JS/TS Changelog</a></p><h2>Awesome Projects</h2><ul><li><p><a href="https://github.com/blockpipe/BlockAGI">BlockAGI</a>: BlockAGI conducts iterative, domain-specific research and outputs detailed narrative reports to showcase its findings</p></li><li><p><a href="https://github.com/supabase-community/vercel-ai-chatbot">A fork of the Vercel Chatbot starter kit</a>, this time with Supabase infrastructure: </p></li><li><p><a href="https://github.com/ericzhang-cn/ailingbot">AilingBot</a>: Quickly integrate applications built on Langchain into IM, such as Slack, WeChat Work, Feishu, DingTalk.</p></li></ul><h2>Articles </h2><ul><li><p><a href="https://airbyte.com/tutorials/implement-ai-data-pipelines-with-langchain-airbyte-and-dagster">Building AI data pipeline with Langchain and Airbytes</a></p></li><li><p>Great article/code on creating an HR agent.:</p><p>Code: <a href="https://github.com/stepanogil/autonomous-hr-chatbot">Autonomous HR Chatbot</a><br>Article: <a href="https://medium.com/towards-artificial-intelligence/creating-a-mostly-autonomous-hr-assistant-with-chatgpt-and-langchains-agents-and-tools-1cdda0aa70ef">Creating a (mostly) Autonomous HR Assistant with ChatGPT and LangChain&#8217;s Agents and Tools</a></p></li><li><p>Another combo with Running Large Language Models on Google Cloud Platform:</p><p><a href="https://github.com/MarkEdmondson1234/edmonbrain">Code</a> - <a href="https://code.markedmondson.me/running-llms-on-gcp/">Article</a></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Fl0C!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Fl0C!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png 424w, https://substackcdn.com/image/fetch/$s_!Fl0C!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png 848w, https://substackcdn.com/image/fetch/$s_!Fl0C!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png 1272w, https://substackcdn.com/image/fetch/$s_!Fl0C!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Fl0C!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png" width="858" height="797" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/cdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:797,&quot;width&quot;:858,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;my llm stack&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="my llm stack" title="my llm stack" srcset="https://substackcdn.com/image/fetch/$s_!Fl0C!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png 424w, https://substackcdn.com/image/fetch/$s_!Fl0C!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png 848w, https://substackcdn.com/image/fetch/$s_!Fl0C!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png 1272w, https://substackcdn.com/image/fetch/$s_!Fl0C!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcdd1e5df-df32-4971-9946-e49d45be63a3_858x797.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div></li></ul><h2>Videos</h2><ul><li><p>This week DeepLearning.AI released a new video presented by Harrison <a href="https://learn.deeplearning.ai/langchain-chat-with-your-data/lesson/1/introduction">Chat with your document</a></p></li></ul><ul><li><p>great video from Sam: Using a conversational form with LLMchain and functions</p></li></ul><div id="youtube2-IT93On2LB5k" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;IT93On2LB5k&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/IT93On2LB5k?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><h2>Other</h2><p>Enjoy a LangChain cocktail made by <a href="https://www.bargpt.app/aicocktail/langchain-elixir">BarGPT</a></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!kUKN!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!kUKN!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png 424w, https://substackcdn.com/image/fetch/$s_!kUKN!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png 848w, https://substackcdn.com/image/fetch/$s_!kUKN!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png 1272w, https://substackcdn.com/image/fetch/$s_!kUKN!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!kUKN!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png" width="512" height="512" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:512,&quot;width&quot;:512,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;LangChain Elixir, an AI generated cocktail recipe by BarGPT.  Sophisticated and energizing cocktail with bourbon, citrus, and lavender&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="LangChain Elixir, an AI generated cocktail recipe by BarGPT.  Sophisticated and energizing cocktail with bourbon, citrus, and lavender" title="LangChain Elixir, an AI generated cocktail recipe by BarGPT.  Sophisticated and energizing cocktail with bourbon, citrus, and lavender" srcset="https://substackcdn.com/image/fetch/$s_!kUKN!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png 424w, https://substackcdn.com/image/fetch/$s_!kUKN!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png 848w, https://substackcdn.com/image/fetch/$s_!kUKN!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png 1272w, https://substackcdn.com/image/fetch/$s_!kUKN!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F78c092ab-9dea-46b8-8ae3-b0d15c338ce0_512x512.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2>Wrapping Up!</h2><p>Thank you for being a part of this incredible LangChain journey with us. Our community's vibrancy is a credit to you all. If you enjoyed this week's digest, feel free to share it. The more, the merrier!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w282023?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w282023?utm_source=substack&utm_medium=email&utm_content=share&action=share"><span>Share</span></a></p><p>If you think we missed something or if you have a project to suggest, don't hesitate to reach out on our GitHub repository or email us at awesomelangchain[at]kyrolabs.com. We look forward to hearing from you.</p><p>Keep being awesome, and see you next week!</p><p>This newsletter is crafted with love by the Kyrolabs team.</p><p>PS: At Kyrolabs, we always seek individuals passionate about AI Agents and LangChain. If you're interested in joining us on this exciting journey, drop us a message at contact[at]kyrolabs.com and tell us about your interest in AI Agents and your background.</p>]]></content:encoded></item><item><title><![CDATA[Awesome LangChain Weekly Digest - w27/2023]]></title><description><![CDATA[The rise of the Agents]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w272023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w272023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Mon, 03 Jul 2023 09:50:59 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!gzQI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello LangChain Enthusiasts,</p><p>Let's cool down with some fresh LangChain updates! As the summer rolls on, we hope you're finding time to relax and recharge, even as you keep pace with the dynamic world of LangChain. Whether you're dipping into this week's digest from a sunny beach or a bustling city, we're thrilled to bring you the latest updates, projects, and insights from the LangChain ecosystem. </p><p>So, grab a refreshing drink, and let's dive in!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><h2>Integrations</h2><p>First, a brand new Integration page for LangChain: https://integrations.langchain.com/</p><ul><li><p><a href="https://js.langchain.com/docs/modules/agents/toolkits/sfn_agent">AWS Step Functions Agent Toolkit</a></p></li><li><p><a href="https://github.com/premai-io/prem-app">Prem</a> Prem provides a unified environment to develop AI applications and deploy AI models on your infrastructure</p></li><li><p>New text splitters, including a <a href="https://python.langchain.com/docs/use_cases/question_answering/document-context-aware-QA">Context-aware</a> version</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!gzQI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!gzQI!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg 424w, https://substackcdn.com/image/fetch/$s_!gzQI!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg 848w, https://substackcdn.com/image/fetch/$s_!gzQI!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!gzQI!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!gzQI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg" width="1074" height="979" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/bfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:979,&quot;width&quot;:1074,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Image&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Image" title="Image" srcset="https://substackcdn.com/image/fetch/$s_!gzQI!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg 424w, https://substackcdn.com/image/fetch/$s_!gzQI!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg 848w, https://substackcdn.com/image/fetch/$s_!gzQI!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!gzQI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbfdc8b6d-2c2a-499a-9a1e-c255bbca39c3_1074x979.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2>Changelog</h2><p>This is a curated list of updates. For a comprehensive look at all updates on both Python and JS, review here:</p><p><a href="https://github.com/hwchase17/langchain/releases">Langchain Python Changelog</a></p><p><a href="https://github.com/hwchase17/langchainjs">Langchain JS/TS Changelog</a></p><p>And if you are looking for support for other languages, some active development exists in <a href="https://github.com/andreibondarev/langchainrb">ruby</a>, <a href="https://github.com/tmc/langchaingo">golang</a> and <a href="https://github.com/langchain4j/langchain4j">java</a>.</p><h2>Awesome Projects</h2><ul><li><p><a href="https://github.com/developersdigest/FunctionChain">FunctionChain</a>: simplifies and organizes the process of invoking OpenAI functions in your Node.js applications</p></li><li><p><a href="https://github.com/prefecthq/marvin">Marvin</a>: A batteries-included library for building AI-powered software</p></li><li><p><a href="https://github.com/0xpayne/gpt-migrate">GPT Migrate</a>: Easily migrate your codebase from one framework or language to another.</p></li></ul><h2>Articles </h2><p>Articles worth a read:</p><ul><li><p><a href="https://wyh.life/article/2023/07/02/llm-app-development">A Hands-on Journey to a working LangChain LLM Application</a></p></li><li><p><a href="https://logankilpatrick.medium.com/what-is-langchain-and-why-should-i-care-as-a-developer-b2d952c42b28">What is Langchain and why should I care as a developer?</a> </p></li></ul><h2>Videos</h2><h3>MPT-30B Chatbot with LangChain! by James Briggs</h3><p>Walkthrough setting up a MPT-30B on a single GPU (A100, Pro account required) and chat with Langchain and Huggingface</p><div id="youtube2-pnem-EhT6VI" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;pnem-EhT6VI&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/pnem-EhT6VI?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><h3>Webinar on LangChain: Chains vs Agents</h3><p>We've had some fantastic video content this week, particularly packed with valuable insights about Agents and design examples. Not to be missed is @swyx's compelling presentation on '<a href="https://docs.google.com/presentation/d/1d5N3YqjSJwhioFT-edmyjxGsPBCMb1uZg0Zs5Ju673k/edit#slide=id.p">smol developer</a>'. Dive in to expand your knowledge! <br><br>So, what is your choice, Chain or Agent?</p><div id="youtube2-bYLHklxEd_k" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;bYLHklxEd_k&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/bYLHklxEd_k?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><h2>Tweets</h2><p>Making LangChain more interoperable with Open Source models backends</p><p><a href="https://twitter.com/hwchase17/status/1673393425456963611">https://twitter.com/hwchase17/status/1673393425456963611</a></p><h2>Wrapping Up!</h2><p>Thank you for being a part of this incredible LangChain journey with us. Our community's vibrancy is a credit to you all. If you enjoyed this week's digest, feel free to share it. The more, the merrier!</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w272023?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w272023?utm_source=substack&utm_medium=email&utm_content=share&action=share"><span>Share</span></a></p><p>Your feedback is vital to us. If you think we missed something or if you have a project to suggest, don't hesitate to reach out on our GitHub repository or email us at awesomelangchain[at]kyrolabs.com. We look forward to hearing from you.</p><p>Keep being awesome, and see you next week!</p><p>This newsletter is crafted with love by the <a href="https://kyrolabs.com/">Kyrolabs</a> team.</p><p>PS: At Kyrolabs, we always seek individuals passionate about AI Agents and LangChain. If you're interested in joining us on this exciting journey, drop us a message at contact[at]kyrolabs.com and tell us about your interest in AI Agents and your background.</p>]]></content:encoded></item><item><title><![CDATA[Awesome Langchain Weekly Digest - w26/2023]]></title><description><![CDATA[OpenAI's functions are pushing LangChain's agent to the next level]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w262023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w262023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Mon, 26 Jun 2023 11:34:50 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello LangChain Enthusiasts!</p><p>We've seen a flurry of activity this week, primarily focusing on OpenAI's new features, which we mentioned last week. Functions pique interest and branch out in numerous directions, like extractions and faster agents.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:&quot;button-wrapper&quot;}" data-component-name="ButtonCreateButton"><a class="button primary button-wrapper" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><p>Here are some updates from the Langchain ecosystem you should know about:</p><h3>Integration</h3><p><a href="https://python.langchain.com/docs/modules/chains/additional/extraction">Langchain Extraction</a> It uses OpenAI's functions to extract structured information from content.</p><p><a href="https://python.langchain.com/docs/modules/data_connection/vectorstores/integrations/mongodb_atlas_vector_search">Mongo Vector database</a>: Mongo announced their vector search offering LangChain already got integrations with it.</p><p><a href="https://python.langchain.com/docs/ecosystem/integrations/motherduck">Motherduck</a> is a managed DuckDB-in-the-cloud service.</p><p><a href="https://python.langchain.com/docs/modules/model_io/models/llms/integrations/google_vertex_ai_palm">VertexAI</a>: We have further integrated more models with VertexAI.</p><h3>Changelog</h3><p>This is a curated list of updates. For a comprehensive look at all updates on both Python and JS, review here:</p><p><a href="https://github.com/hwchase17/langchain/releases">Langchain Python Changelog</a></p><p><a href="https://github.com/hwchase17/langchainjs">Langchain JS/TS Changelog</a></p><h2>Awesome Projects</h2><p>Following last week's release of AI from Vercel, this week, they shared ChatBot :</p><ul><li><p>Vercel Labs' <strong><a href="https://github.com/vercel-labs/ai-chatbot">AI Chatbot</a></strong>: A feature-rich, hackable Next.js AI chatbot.</p></li><li><p>a16z's <strong><a href="https://github.com/a16z-infra/ai-getting-started">AI Getting Started</a></strong>: A JavaScript AI starter stack for weekend projects, complete with image/text models, vector stores, auth, and deployment configs.</p></li><li><p><strong><a href="https://github.com/embedchain/embedchain">Embedchain</a></strong>: A framework for creating LLM-powered bots over any dataset.</p></li></ul><h2>Articles &amp; Videos</h2><p>Articles &amp; Videos Worth Your Time:</p><ul><li><p>"<a href="https://www.twilio.com/blog/qa-over-docs-bot-langchain-python">Build a Question-Answering over Docs SMS Bot with LangChain in Python</a>"  featured on the Twilio blog. A special shout-out to the Twilio team for offering a free trial for everyone to give it a whirl. You can utilize the promo code <strong>AWESOMELANGCHAIN23</strong> for access (<a href="https://support.twilio.com/hc/en-us/articles/360039246354-Apply-a-promo-code-to-your-Twilio-project">find instructions here</a>).</p></li><li><p>Gil Fernandes' series on Medium, particularly the article "<a href="https://medium.com/@gil.fernandes/langchains-router-chains-and-callbacks-722524c4aa42">LangChain's Router and Callbacks.</a>"</p></li><li><p>The extensive one-page guide about <a href="https://shurutech.com/getting-started-langchain-with-examples/">Langchain</a> on Shurutech.</p></li><li><p>&#8220;<a href="https://towardsdatascience.com/llamaindex-the-ultimate-llm-framework-for-indexing-and-retrieval-fa588d8ca03e">LlamaIndex: The Ultimate LLM Framework for Indexing and Retrieval</a>" on Towards Data Science.</p></li></ul><h3>Videos</h3><ul><li><p>LangChain "OpenSource LLMs" Webinar, from previous week </p></li></ul><div id="youtube2-9pmCM-JMJrE" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;9pmCM-JMJrE&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/9pmCM-JMJrE?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><ul><li><p>And this week, another podcast with great guests about functions:</p></li></ul><div id="youtube2-LxI0iofzKWA" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;LxI0iofzKWA&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/LxI0iofzKWA?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><ul><li><p>Sam Witteveen video: Tagging and Extraction - Classification using OpenAI Functions</p></li></ul><div id="youtube2-a8hMgIcUEnE" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;a8hMgIcUEnE&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/a8hMgIcUEnE?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><ul><li><p>Using ChatGPT with your own Data</p></li></ul><div id="youtube2-9AXP7tCI9PI" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;9AXP7tCI9PI&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/9AXP7tCI9PI?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><h3>From Twitter</h3><ul><li><p>LLMops on Google Cloud micro-services with </p><p><a href="https://twitter.com/holomarked/status/1672669761669300225?s=12&amp;t=79HZhE3ChdH7091ieZLL1A">https://twitter.com/holomarked/status/1672669761669300225?s=12&amp;t=79HZhE3ChdH7091ieZLL1A</a></p></li><li><p>Langchain Ecosystem by Lance Martin</p><p><a href="https://twitter.com/RLanceMartin/status/16722906706381660">https://twitter.com/RLanceMartin/status/16722906706381660</a></p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!f_7u!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!f_7u!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg 424w, https://substackcdn.com/image/fetch/$s_!f_7u!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg 848w, https://substackcdn.com/image/fetch/$s_!f_7u!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!f_7u!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!f_7u!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg" width="1200" height="718" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:718,&quot;width&quot;:1200,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Image&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Image" title="Image" srcset="https://substackcdn.com/image/fetch/$s_!f_7u!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg 424w, https://substackcdn.com/image/fetch/$s_!f_7u!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg 848w, https://substackcdn.com/image/fetch/$s_!f_7u!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!f_7u!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe9b9a057-1d9f-4a86-9bb1-566f0eb47202_1200x718.jpeg 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2>Other News</h2><p>Check out a16z's article on "<a href="https://a16z.com/2023/06/20/emerging-architectures-for-llm-applications/">Emerging Architectures for LLM Applications</a>."</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!QIQO!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!QIQO!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png 424w, https://substackcdn.com/image/fetch/$s_!QIQO!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png 848w, https://substackcdn.com/image/fetch/$s_!QIQO!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png 1272w, https://substackcdn.com/image/fetch/$s_!QIQO!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!QIQO!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png" width="1024" height="717" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:717,&quot;width&quot;:1024,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!QIQO!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png 424w, https://substackcdn.com/image/fetch/$s_!QIQO!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png 848w, https://substackcdn.com/image/fetch/$s_!QIQO!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png 1272w, https://substackcdn.com/image/fetch/$s_!QIQO!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c2f1ea-6993-421d-a58f-57f105b2b13a_1024x717.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2>That's All for Now!</h2><p>That's it for this week!</p><p>As always, we want to thank you for being a part of this exhilarating journey with us. The vibrancy of the LangChain community is a testament to each of you. If you found this week's digest helpful, we encourage you to share it. More voices lead to richer and more varied content.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomelangchain.substack.com/?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share&quot;,&quot;text&quot;:&quot;Share Awesome Langchain&quot;,&quot;action&quot;:null,&quot;class&quot;:&quot;button-wrapper&quot;}" data-component-name="ButtonCreateButton"><a class="button primary button-wrapper" href="https://awesomelangchain.substack.com/?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share"><span>Share Awesome Langchain</span></a></p><p>We cherish your feedback. If you believe we missed something or want to suggest a project, feel free to create a PR or an issue on our GitHub repository or drop us a line at awesomelangchain[at]kyrolabs.com.</p><p>Stay curious, stay awesome, and see you next week!</p><p>This newsletter is crafted with love by the <a href="https://kyrolabs.com/">Kyrolabs</a> team.</p><p>PS: At Kyrolabs, we always seek individuals passionate about AI Agents and LangChain. If you're interested in joining us on this exciting journey, drop us a message at contact[at]kyrolabs.com and tell us about your interest in AI Agents and your background.</p>]]></content:encoded></item><item><title><![CDATA[Awesome Langchain Weekly Digest - w25/2023]]></title><description><![CDATA[Big Open AI Update, 16k Model and Functions]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w252023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w252023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Fri, 16 Jun 2023 22:59:08 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!scnj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello LangChain Enthusiasts!</p><p>This week, we had a big OpenAI update bringing functions and 16k models. As usual, Langchain was quickly updated, and we already have some interesting content to start using them.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><p>Quick highlight on some Langchain updates:</p><h3>Document loaders</h3><ul><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/airtable.html">Airtable</a></p></li><li><p>Unstructured <a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/xml.html">XML</a></p></li></ul><h3>Integration</h3><p>On the same day OpenAI released new models and features, Langchain introduced <a href="https://github.com/hwchase17/langchain/blob/master/docs/modules/agents/tools/tools_as_openai_functions.ipynb">OpenAI Functions in LangChain</a>. Besides empowering agents, it also allows extracting structured information from unstructured docs.</p><h3>Changelog</h3><p>This is a curated list of updates. For a comprehensive look at all updates on both Python and JS, review here:</p><p><a href="https://github.com/hwchase17/langchain/releases">Langchain Python Changelog</a></p><p><a href="https://github.com/hwchase17/langchainjs">Langchain JS/TS Changelog</a></p><h2>Awesome Projects</h2><p>Checkout those awesome projects showcasing the versatility of LangChain:</p><p><a href="https://github.com/vercel-labs/ai">Vercel AI SDK</a>: Build AI-powered applications with React and Svelte</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!scnj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!scnj!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png 424w, https://substackcdn.com/image/fetch/$s_!scnj!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png 848w, https://substackcdn.com/image/fetch/$s_!scnj!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png 1272w, https://substackcdn.com/image/fetch/$s_!scnj!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!scnj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png" width="1456" height="713" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:713,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!scnj!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png 424w, https://substackcdn.com/image/fetch/$s_!scnj!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png 848w, https://substackcdn.com/image/fetch/$s_!scnj!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png 1272w, https://substackcdn.com/image/fetch/$s_!scnj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff001a252-572f-4558-8e55-42e5ded05d97_3840x1880.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p><a href="https://github.com/yvann-hub/Robby-chatbot">Robby Chatbot</a>: AI chatbot &#129302; for chatting with CSV, PDF, TXT files &#128196; and YTB videos&#127909;, powered by Langchain, OpenAI, PyTube, and Streamlit. </p><p><a href="https://github.com/vgulerianb/DocNavigator">DocNavigator</a>: AI-powered chatbot builder that is designed to improve the user experience on product documentation/support websites</p><p><a href="https://github.com/steamship-packages/langchain-agent-production-starter">Multi-Modal LangChain agents in Production</a>: Deploy LangChain Agents and connect them to Telegram</p><h3>Alternatives</h3><p><a href="https://github.com/bentoml/OpenLLM">OpenLLM</a>: An open platform for operating large language models (LLMs) in production. Fine-tune, serve, deploy, and monitor any LLMs with ease.</p><p><a href="https://github.com/FlagAI-Open/FlagAI">FlagAI</a>: FlagAI (Fast LArge-scale General AI models) is a fast, easy-to-use, and extensible toolkit for large-scale models.</p><h2>Articles &amp; Videos</h2><p>Sam Witteveen Videos</p><ul><li><p>What can you do with 16K tokens in LangChain?</p></li></ul><div id="youtube2-z2aCZBAtWXs" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;z2aCZBAtWXs&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/z2aCZBAtWXs?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><ul><li><p>OpenAI Functions + LangChain: Building a Multi-Tool Agent</p></li></ul><div id="youtube2-4KXK6c6TVXQ" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;4KXK6c6TVXQ&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/4KXK6c6TVXQ?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><p>Greg Kamradt LangChain cookbook part 2 Use cases:</p><div id="youtube2-vGP4pQdCocw" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;vGP4pQdCocw&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/vGP4pQdCocw?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><ul><li><p>From <a href="https://www.sequoiacap.com/article/llm-stack-perspective/">Sequoia article giving an overview of LLMs stack usage in their portfolio</a>: </p><p>&#8220;Nearly every company in the Sequoia network is building language models into their products.&#8220;<br>&#8220;Every practitioner we spoke with said AI is moving too quickly to have high confidence in the end-state stack, but there was consensus that LLM APIs will remain a key pillar, followed in popularity by retrieval mechanisms and development frameworks like <strong>LangChain</strong>.&#8220;</p><p>Note: Sequoia led the LangChain funding round.</p></li></ul><h3>From Twitter</h3><ul><li><p><a href="https://twitter.com/n4ze3m/status/1668208861663354882">Deploy your bot platform using Dialoqbase, Railway, and Supabase</a>.</p></li></ul><h2>Other News</h2><p>Check out the week program with over $850k in credits from Vercel and top AI platforms like LangChain. <a href="https://vercel.com/blog/vercel-ai-accelerator">https://vercel.com/blog/vercel-ai-accelerator</a></p><h2>That's All for Now!</h2><p>Thank you for being part of this exciting journey with us. The LangChain ecosystem wouldn't be the same without its vibrant community. If you enjoyed this week's digest, please consider sharing it with others. With more people involved, our content becomes richer and more diverse.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomelangchain.substack.com/?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share&quot;,&quot;text&quot;:&quot;Share Awesome Langchain&quot;,&quot;action&quot;:null,&quot;class&quot;:&quot;button-wrapper&quot;}" data-component-name="ButtonCreateButton"><a class="button primary button-wrapper" href="https://awesomelangchain.substack.com/?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share"><span>Share Awesome Langchain</span></a></p><p>Your input is invaluable to us. If we missed something or you'd like to suggest a project, please make a PR, add an issue on our GitHub repository, or email us at awesomelangchain[at]kyrolabs.com. We can't wait to hear from you!</p><p>Stay curious, stay awesome, and see you next week!</p><p>The team at <a href="https://kyrolabs.com/">Kyrolabs</a> lovingly curates this newsletter.</p><p><strong>PS: Looking for an opportunity to work with AI Agents and LangChain? </strong>At Kyrolabs we are looking for passionate people to join the journey, if you are interested, drop us a message at contact[at]kyrolabs.com and share with us your interest in AI Agents and background.</p>]]></content:encoded></item><item><title><![CDATA[Awesome Langchain Weekly Digest - w24/2023]]></title><description><![CDATA[Personal use cases week with articles and video about Quivr, AnythingLLM, OpenDAN]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w242023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w242023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Mon, 12 Jun 2023 20:09:06 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello LangChain Enthusiasts!</p><p>This week, we're delving into personal use cases of LangChain with insightful articles and intriguing videos about Quivr, AnythingLLM, and OpenDAN.</p><h2>Langchain Updates</h2><p>Quick highlight on some Langchain updates:</p><ul><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/snowflake.html">Snowflake</a>: Load data from your Snowflake into document objects. This will allow you to split, embed, and eventually query it with a semantic search.</p></li><li><p>Unstructured <a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/csv.html#specify-a-column-to-identify-the-document-source">CSV Loader</a>: </p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/retrievers/examples/merger_retriever.html">Lord of the Retrievers</a>: Merger Retriever allows for an easy combination of MULTIPLE retrievers.</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/chains/examples/graph_cypher_qa.html#limit-the-number-of-results">Update for GraphCypherQAChain</a>: Limit the number of results, Return intermediate, and Return Direct results.</p></li></ul><h3>Changelog</h3><p>This is a curated list of updates. For a comprehensive look at all updates on both Python and JS, review here:</p><p><a href="https://github.com/hwchase17/langchain/releases">Langchain Python Changelog</a></p><p><a href="https://github.com/hwchase17/langchainjs">Langchain JS/TS Changelog</a></p><h2>Awesome Projects</h2><p>Checkout those awesome projects showcasing the versatility of LangChain:</p><ul><li><p><a href="https://github.com/parker84/GoT-chat-bot">GoT Chatbot</a>: Repo for creating GoT Chatbots (ex: talk with Tyrion Lannister)</p></li><li><p><a href="https://github.com/Mintplex-Labs/anything-llm">Anything LLM</a>: A full-stack application that turns any document into an intelligent chatbot with a sleek UI and an easier way to manage your workspaces.</p></li><li><p><a href="https://github.com/LevanKvirkvelia/salute">Salute</a>: A simple and declarative way to control LLMs</p></li><li><p><a href="https://github.com/fiatrete/OpenDAN-Personal-AI-OS">OpenDAN</a>: open source Personal AI OS consolidates various AI modules in one place for your personal use.</p></li><li><p><a href="https://github.com/r2d4/rellm">ReLLM</a>: Regular Expressions for Language Model Completions.</p></li><li><p><a href="https://github.com/n4ze3m/dialoqbase">Dialoqbase</a>: a web application that allows you to create custom chatbots with your knowledge base</p></li><li><p><a href="https://github.com/Safiullah-Rahu/CSV-AI">CSV AI</a>: Ultimate app powered by LangChain that allows you to unlock hidden insights in your CSV files</p></li></ul><h2>Articles &amp; Videos</h2><ul><li><p><a href="https://medium.com/@avra42/multilingual-chat-bot-for-personal-documents-using-coheres-multilingual-models-langchain-2b4e1c8cdab">Multilingual Chat Bot for Personal Documents</a> (medium article)</p></li><li><p>Langchain Video, Quivr Deepdive, Your second brain with Langchain</p></li></ul><div id="youtube2-1hZ7svDRA0o" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;1hZ7svDRA0o&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/1hZ7svDRA0o?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><p>3 episodes by Sam Witteveen</p><ul><li><p>Output Parser</p></li></ul><div id="youtube2-UVn2NroKQCw" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;UVn2NroKQCw&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/UVn2NroKQCw?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><ul><li><p>Custom Medical Agent with Memory</p></li></ul><div id="youtube2-6UFtRwWnHws" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;6UFtRwWnHws&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/6UFtRwWnHws?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><ul><li><p>Understanding ReACT</p></li></ul><div id="youtube2-Eug2clsLtFs" class="youtube-wrap" data-attrs="{&quot;videoId&quot;:&quot;Eug2clsLtFs&quot;,&quot;startTime&quot;:null,&quot;endTime&quot;:null}" data-component-name="Youtube2ToDOM"><div class="youtube-inner"><iframe src="https://www.youtube-nocookie.com/embed/Eug2clsLtFs?rel=0&amp;autoplay=0&amp;showinfo=0&amp;enablejsapi=0" frameborder="0" loading="lazy" gesture="media" allow="autoplay; fullscreen" allowautoplay="true" allowfullscreen="true" width="728" height="409"></iframe></div></div><h3>From Twitter</h3><ul><li><p><a href="https://twitter.com/alexxubyte/status/1666827033173958657">Overview of VectorDBs</a></p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!YirX!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!YirX!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg 424w, https://substackcdn.com/image/fetch/$s_!YirX!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg 848w, https://substackcdn.com/image/fetch/$s_!YirX!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!YirX!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!YirX!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg" width="1456" height="1833" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1833,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Image&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Image" title="Image" srcset="https://substackcdn.com/image/fetch/$s_!YirX!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg 424w, https://substackcdn.com/image/fetch/$s_!YirX!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg 848w, https://substackcdn.com/image/fetch/$s_!YirX!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!YirX!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8516850a-ca28-40ac-9fb7-dd44f49adc86_1627x2048.jpeg 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><ul><li><p>A thread about <a href="https://twitter.com/EdenEmarco177/status/1667555367314751488">Managing LLM limitations</a></p></li></ul><h2>Other News</h2><p>Over the weekend, prominent scientists Andrew Ng and Geoffrey Hinton reached out to the scientific community, urging for a unified agreement on potential risks similar to the stance maintained by climate scientists. This crucial discussion, happening amidst a climate of differing opinions, has also drawn the interest of Yann LeCun:</p><ul><li><p><strong><a href="https://twitter.com/AndrewYNg/status/1668106522717728768">Andrew Ng's tweet</a></strong></p></li></ul><p>Regarding our favorite framework, Andrew Ng wrote: "As for making LLMs plan, OpenAI's process supervision, ReAct-style prompting, and 'wild west' stuff like LangChain agents feels like tons of people are experimenting with different ideas."</p><h2>That's All for Now!</h2><p>Thank you for being part of this exciting journey with us. The LangChain ecosystem wouldn't be the same without its vibrant community. If you enjoyed this week's digest, please consider sharing it with others. With more people involved, our content becomes richer and more diverse.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomelangchain.substack.com/?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share&quot;,&quot;text&quot;:&quot;Share Awesome Langchain&quot;,&quot;action&quot;:null,&quot;class&quot;:&quot;button-wrapper&quot;}" data-component-name="ButtonCreateButton"><a class="button primary button-wrapper" href="https://awesomelangchain.substack.com/?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share"><span>Share Awesome Langchain</span></a></p><p>Your input is invaluable to us. If we missed something or you'd like to suggest a project, please make a PR, add an issue on our GitHub repository, or email us at awesomelangchain[at]kyrolabs.com. We can't wait to hear from you!</p><p>Stay curious, stay awesome, and see you next week!</p><p>The team at <a href="https://kyrolabs.com/">Kyrolabs</a> lovingly curates this newsletter.</p><p></p>]]></content:encoded></item><item><title><![CDATA[Awesome Langchain Weekly Digest - w23/2023]]></title><description><![CDATA[Gorilla, Voyager, Andrej Karpathy at Microsoft Build, Tips, and more...]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w232023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w232023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Fri, 02 Jun 2023 23:05:37 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F247fb28f-c4d3-4165-a871-47ea1ea41b34_1024x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Welcome to another bustling week in the LangChain ecosystem! It's truly inspiring to witness the continuous advancements and the rise of Open Source LLM. This week, we have many new features, improvements, and resources to share, including an insightful overview of GPT from Andrej Karpathy and resources in the growing `No OpenAI` trend. Let's dive right in!</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Awesome Langchain! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><h2>Langchain Updates</h2><h3>Document loaders</h3><ul><li><p>NotionDB ported to JS/TS</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/pyspark_dataframe.html">Spark DataFrame</a></p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/trello.html">Trello</a></p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/github.html">Github</a> issues and PRs</p></li></ul><h3>Integrations</h3><ul><li><p><a href="https://python.langchain.com/en/latest/integrations/momento.html">Momento</a> Cache, to reduce costs</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/agents/tools/examples/twilio.html">Twilio</a> to send SMS, make sure that your agent does not start chatting with its peers! And an article demoing <a href="https://www.twilio.com/blog/basketball-sms-chatbot-with-langchain-prompt-templates">Build a Basketball SMS Chatbot with LangChain Prompt Templates in Python</a>.</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/models/llms/integrations/ctransformers.html">C Transformer</a> Interface opens the door to connect LLMs ported by Georgi Gerganov running on lower-cost machines (like llama.cpp).</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/retrievers/examples/qdrant_self_query.html">Qdrant improvements</a>: Richer filtering support, Self-querying retrieval, Batched upserts</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/agents/tools/examples/brave_search.html?highlight=brave">Brave private search API integration</a></p></li><li><p><a href="https://python.langchain.com/en/latest/modules/models/llms/integrations/bedrock.html">Amazon Bedrock Models</a>: now has LLM and embedding model wrappers for Amazon's new Bedrock service, which serves both Amazon's own Titan models and 3rd party models like Anthropic's Claude.</p></li><li><p><a href="https://python.langchain.com/en/latest/integrations/argilla.html">Arguilla</a> open-source data curation platform for LLMs, empowering data teams from data labeling to model monitoring.</p></li></ul><h3>Output Parsers</h3><ul><li><p><a href="https://python.langchain.com/en/latest/modules/prompts/output_parsers/examples/enum.html">Enum</a> and <a href="https://python.langchain.com/en/latest/modules/prompts/output_parsers/examples/datetime.html">Datetime</a></p></li></ul><h3>Agents</h3><p><a href="https://python.langchain.com/en/latest/modules/agents/toolkits/examples/csv.html?highlight=csv#multi-csv-example">Multi-dataframe agents</a> shows how the agent can interact with multiple csv files passed in as a list.</p><p><a href="https://js.langchain.com/docs/use_cases/agent_simulations/generative_agents">Generative Agents</a> This script implements a generative agent based on the paper Generative Agents: Interactive Simulacra of Human Behavior by Park, et. al.</p><h3>Changelog</h3><p>This is a curated list of updates. For a comprehensive look at all updates on both Python and JS, review here:</p><p><a href="https://github.com/hwchase17/langchain/releases">Langchain Python Changelog</a></p><p><a href="https://github.com/hwchase17/langchainjs">Langchain JS/TS Changelog</a></p><h2>Awesome Projects</h2><p>Checkout those awesome projects showcasing the versatility of LangChain:</p><p><a href="https://github.com/ShishirPatil/gorilla">Gorilla</a>: An API store for LLMs. Enables LLMs to use tools by invoking APIs. Given a natural language query, Gorilla comes up with the semantically- and syntactically- correct API to invoke. </p><p><a href="https://github.com/MineDojo/Voyager">Voyager</a>: An LLM-powered embodied lifelong learning agent in Minecraft that continuously explores the world, acquires diverse skills and makes novel discoveries without human intervention. </p><p><a href="https://github.com/e-johnstonn/wingmanAI">WingmainAI</a>: A tool for interacting with real-time transcription of both system and microphone audio.</p><p><a href="https://github.com/PromtEngineer/localGPT">Local GPT</a>: Inspired by Private GPT with the GPT4ALL model replaced with the Vicuna-7B model and using the InstructorEmbeddings instead of LlamaEmbeddings</p><h2>Articles &amp; Videos</h2><p>This week's picks include articles on implementing GPT4All with LangChain, training your own LLM using privateGPT, and LangChain Autonomous Agent - BabyAGI. Don't miss the collection of videos, including a comprehensive course on LangChain and an overview of the state of GPT by Andrej Karpathy.</p><ul><li><p><a href="https://medium.datadriveninvestor.com/offline-ai-magic-implementing-gpt4all-locally-with-python-b51971ce80af">Implementing GPT4All Locally with Python and Langchain</a></p></li><li><p><a href="https://levelup.gitconnected.com/training-your-own-llm-using-privategpt-f36f0c4f01ec">Training Your Own LLM using privateGPT</a>: Learn how to train your own language model without exposing your private data to the provider</p></li><li><p><a href="https://medium.com/@avra42/langchain-autonomous-agent-baby-agi-integrated-as-web-app-7a826fefad7d">LangChain Autonomous Agent</a> &#8212; BabyAGI , integrated as Web App</p></li><li><p><a href="https://rlancemartin.notion.site/rlancemartin/Auto-Evaluation-of-Metadata-Filtering-18502448c85240828f33716740f9574b">Auto-Evaluation of Metadata Filtering</a> by Lance Martin looks at how to improve retrieval using metadata filtering.</p></li><li><p>Interesting thread from Harisson on condensing chat history to improve performances and reduce cost using 2 models: <a href="https://twitter.com/hwchase17/status/1663576081918742530">https://twitter.com/hwchase17/status/1663576081918742530</a></p></li><li><p>And a visual overview of LangChain retrievers:</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!1FXS!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!1FXS!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg 424w, https://substackcdn.com/image/fetch/$s_!1FXS!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg 848w, https://substackcdn.com/image/fetch/$s_!1FXS!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!1FXS!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!1FXS!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg" width="1456" height="545" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:545,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Image&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Image" title="Image" srcset="https://substackcdn.com/image/fetch/$s_!1FXS!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg 424w, https://substackcdn.com/image/fetch/$s_!1FXS!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg 848w, https://substackcdn.com/image/fetch/$s_!1FXS!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!1FXS!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe6450e5c-54e5-42bf-94a9-cba4c77d7a7f_2509x940.jpeg 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">LangChain Retrievers</figcaption></figure></div><p>source: <a href="https://twitter.com/pwang_szn/status/1663123050097946624">https://twitter.com/pwang_szn/status/166312305009794662</a></p><h3>New LangChain course</h3><p>When Harrisson collaborates with Andrew Ng, we get another awesome piece of content with this 1-hour course on LangChain. Check it out:</p><p>&#127909; <a href="https://www.deeplearning.ai/short-courses/langchain-for-llm-application-development/">LangChain for LLM Application Development</a></p><h3>State of GPT</h3><p>One of the more comprehensive videos of this year about LLMs and prompt engineering. Summarize so many notions and concepts developed recently and a good overview and understanding of building LLMs. Andrej Karpathy is, as usual, very good at sharing his knowledge.</p><p>&#127909; <a href="https://youtu.be/bZQun8Y4L2A">link to the video</a></p><h3><strong>Converting a LangChain App from OpenAI to OpenSource</strong></h3><p>Another great video from Sam Witteven walks us through building a retrieval QA application with Chroma and OpenAI, then converting it to open source models.</p><p>&#127909; <a href="https://www.youtube.com/watch?v=KUDn7bVyIfc">link to the video</a></p><h3>Testing LLM with GPT4All</h3><p>&#127909; <a href="https://www.youtube.com/watch?v=5JpPo-NOq9s">Testing Free Large Language Models with Steaminlit, LangChain and GPT4All</a> by Nicholas Renotte</p><h2>Other News</h2><p>Is LangChain the new LAMP stack? THENEWSTACK takes on the incredible growth of langChain: <a href="https://thenewstack.io/langchain-the-trendiest-web-framework-of-2023-thanks-to-ai/">LangChain: The Trendiest Web Framework of 2023, Thanks to AI</a></p><p>The open source Vector Toolkit for Postgres, Use the Supabase client libraries to store, index, and query your vector embeddings at scale. <a href="https://supabase.com/vector">https://supabase.com/vector</a></p><h2>That's All for Now!</h2><p>Thank you for being a part of this exciting journey with us. The LangChain ecosystem wouldn't be the same without its vibrant community. If you enjoyed this week's digest, please consider sharing it with others. With more people involved, our content becomes richer and more diverse.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomelangchain.substack.com/?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share&quot;,&quot;text&quot;:&quot;Share Awesome Langchain&quot;,&quot;action&quot;:null,&quot;class&quot;:&quot;button-wrapper&quot;}" data-component-name="ButtonCreateButton"><a class="button primary button-wrapper" href="https://awesomelangchain.substack.com/?utm_source=substack&amp;utm_medium=email&amp;utm_content=share&amp;action=share"><span>Share Awesome Langchain</span></a></p><p>Your input is invaluable to us. If we missed something or you'd like to suggest a project, please make a PR, add an issue on our GitHub repository, or email us at awesomelangchain[at]kyrolabs.com. We can't wait to hear from you!</p><p>Stay curious, stay awesome, and see you next week!</p><p>The team at <a href="https://kyrolabs.com/">Kyrolabs</a> lovingly curates this newsletter.</p>]]></content:encoded></item><item><title><![CDATA[Awesome Langchain Weekly Digest - w22/2023]]></title><description><![CDATA[Neo4j meets Langchain, Weaviate transforms LLM queries, and a chat with Snowflake awaits! Discover these and more in your Langchain weekly digest!]]></description><link>https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w222023</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/awesome-langchain-weekly-digest-w222023</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Fri, 26 May 2023 22:48:41 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F247fb28f-c4d3-4165-a871-47ea1ea41b34_1024x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello, and welcome to the first ever Awesome Langchain newsletter! It's fantastic to have over 500 of you already on board - thank you for joining us.</p><p>We've closely followed Langchain for months while working on our AI LLM project. We've found ourselves resonating with its vision and progress, so we've decided to keep track of Langchain's ecosystem and share it with all of you.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Awesome Langchain! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>In this newsletter, we're bringing you updates about Langchain, spotlighting new projects, and sharing other content that showcases how Langchain is being used. We aim to help you stay in the loop with all the exciting developments.</p><p>We're planning to send these updates to your inbox every week. Your feedback matters greatly to us, so feel free to share your thoughts.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><p>Here's to an exciting journey through Langchain!</p><h2>Langchain Updates</h2><p>Dive into the latest developments in Langchain:</p><h3>New Integrations</h3><ul><li><p><a href="https://python.langchain.com/en/latest/modules/chains/examples/graph_cypher_qa.html">Neo4j Integration</a> and GraphCypherQAChain</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/models/llms/integrations/openlm.html?highlight=openlm">OpenLM API</a>: a lightweight package that lets you interface with multiple model providers using the OpenAI API (no streaming yet)</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/vectorstores/examples/typesense.html">Typesense Vector store</a>: <a href="https://typesense.org/">Typesense</a>&nbsp;is an open-source, in-memory search engine supporting full-text and semantic search</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/models/llms/integrations/mosaicml.html">Add support for Open Source models through MosaicML API</a></p></li><li><p><a href="https://python.langchain.com/en/latest/integrations/whylabs_profiling.html?highlight=whylabs">Monitoring with Whylabs</a></p></li><li><p><a href="https://github.com/hwchase17/langchain/blob/master/docs/integrations/psychic.md">Psychic</a> as a data loader (an open-source universal document loader)</p></li></ul><h3>New Loaders</h3><ul><li><p><a href="https://twitter.com/hwchase17/status/1661756592025649152">Vertex AI Support</a>: Google AI service</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/iugu.html">Iugu Document Loader</a>: <a href="https://www.iugu.com/">Iugu</a>&nbsp;is a Brazilian service and software as a service (SaaS) company</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/joplin.html">Joplin Document Loader</a>: open-source note-taking app</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/bibtex.html">Bibtex Document Loader</a>: file format and reference management system</p></li><li><p><a href="https://python.langchain.com/en/latest/modules/indexes/document_loaders/examples/mastodon.html">Mastodon loader</a></p></li></ul><h3>Toolkits</h3><p>And a list of new powerful toolkits:</p><p><a href="https://python.langchain.com/en/latest/modules/agents/toolkits/examples/azure_cognitive_services.html">Create multi-modal agents powered by Azure Cognitive Services</a></p><p><a href="https://python.langchain.com/en/latest/modules/indexes/retrievers/examples/weaviate_self_query.html">Weaviate Self-Query Retriever: let an LLM turn questions into structured queries against a DB</a></p><p><a href="https://python.langchain.com/en/latest/modules/models/llms/integrations/gpt4all.html">Use GPT4all again</a>: how to use LangChain to interact with <code>GPT4All</code> models.</p><p><a href="https://js.langchain.com/docs/modules/agents/agents/action/structured_chat">Chat Agent for Structured Tools</a>: work with tools that take an input conforming to an arbitrary object schema</p><p>This is a curated list of updates. For a comprehensive look at all updates on both Python and JS, review here:</p><p><a href="https://github.com/hwchase17/langchain/releases">Langchain Python Changelog</a></p><p><a href="https://github.com/hwchase17/langchainjs">Langchain JS/TS Changelog</a></p><h2>Articles</h2><p>Deepen your Langchain knowledge with these insightful articles:</p><ul><li><p><a href="https://www.elastic.co/blog/privacy-first-ai-search-langchain-elasticsearch">Privacy-first AI search using LangChain and Elasticsearch</a></p></li><li><p><a href="https://towardsdatascience.com/deploy-a-voice-based-chatbot-with-bentoml-langchain-and-gradio-7f25af3e45df">Deploy a Voice-Based Chatbot with BentoML, LangChain, and Gradio</a></p></li><li><p><a href="https://dylancastillo.co/code-interpreter-chatbot-pyodide-langchain-openai/">Create a Code Interpreter Chatbot with Pyodide, LangChain, and OpenAI</a></p></li><li><p><a href="https://towardsdatascience.com/langchain-has-added-cypher-search-cb9d821120d5">LangChain has added Cypher Search</a></p></li><li><p><a href="https://promptchap.com/">LangChain tutorial at PromptChap</a></p></li></ul><h2>Videos</h2><ul><li><p><a href="https://www.youtube.com/watch?v=VrL7AbrY438">Langchain Retrieval Webinar</a></p></li><li><p>Sam Witteveen videos (Highly recommended channel)</p><ul><li><p><a href="https://www.youtube.com/watch?v=SW1ZdqH0rRQ">Information Extraction with LangChain &amp; Kor</a></p></li><li><p><a href="https://www.youtube.com/watch?v=GldMMK6-_-g">Camel + LangChain for Synthetic Data &amp; Market Research</a></p></li></ul></li></ul><ul><li><p><a href="https://www.youtube.com/watch?v=DXpk9K7DgMo">Using NEW MPT-7B in Hugging Face and LangChain</a> by James Briggs</p></li><li><p><a href="https://www.youtube.com/watch?v=p35GygHpxoI">The easiest way to deploy privateGPT app</a></p></li></ul><h2>Awesome Projects</h2><p>These are the awesome projects added this week to the <a href="https://github.com/kyrolabs/awesome-langchain">list</a>:</p><ul><li><p><a href="https://github.com/Chainlit/chainlit">Chainlit</a>: Build Python LLM apps in minutes &#9889;&#65039;</p></li><li><p><a href="https://github.com/ikram-shah/airtable-qna">Airtable-QnA</a> a question-answering tool for your Airtable content</p></li><li><p><a href="https://github.com/kreneskyp/ix">ix</a> Autonomous GPT-4 agent platform</p></li><li><p><a href="https://github.com/psychic-api/psychic">Psychic</a>: Universal APIs for unstructured data.</p></li><li><p><a href="https://github.com/getzep/zep">Zep</a>: Zep: A long-term memory store for LLM / Chatbot applications</p></li><li><p><a href="https://github.com/csunny/DB-GPT">DB-GPT</a>: Interact your data and environment using the local GPT</p></li><li><p><a href="https://github.com/homanp/superagent">SuperAgent</a>: Deploy LLM Agents to production</p></li><li><p><a href="https://github.com/kaarthik108/snowChat">snowChat &#10052;&#65039;</a>: Chat with you're snowflake</p></li><li><p><a href="https://github.com/rickyrobinett/langchainjs-workers">LangchainJS Worker</a>: LangchainJS worker on cloudflare</p></li><li><p><a href="https://github.com/kristoferlund/duet-gpt">DuetGPT</a>: A conversational semi-autonomous developer assistant.</p></li><li><p><a href="https://graphsignal.com/">Graphsignal Plugin</a>: Observability for AI agents and LLM-powered applications. Trace, monitor, and debug LangChain in production.</p></li></ul><h3>Alternatives</h3><ul><li><p><a href="https://github.com/e2b-dev/e2b">e2b</a>: Open-source platform for building &amp; deploying virtual developers&#8217; agents</p></li></ul><h3>Other news</h3><p>This week, <strong>Qdrant</strong> has added native support for authentication in <a href="https://github.com/qdrant/qdrant/releases/tag/v1.2.0">v1.2.0</a>. This is a fantastic addition if you aim to use this vector database in production without managing another layer of security.</p><h2>That's All for Now!</h2><p>Thank you for being part of this incredible community! Each of you helps improve Awesome Langchain, and we appreciate your contributions. If you found this newsletter helpful, please consider sharing and forwarding it. The more people we engage, the richer and more diverse our content will be.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/?utm_source=substack&utm_medium=email&utm_content=share&action=share&quot;,&quot;text&quot;:&quot;Share Awesome Langchain&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/?utm_source=substack&utm_medium=email&utm_content=share&action=share"><span>Share Awesome Langchain</span></a></p><p>Missed some content or want to suggest a project? Don't hesitate to make a PR, add an issue on our GitHub repository, or drop us a line at awesomelangchain[at]kyrolabs.com. We'd love to hear from you! Stay curious, stay awesome!</p><p>The team at <a href="https://kyrolabs.com/">Kyrolabs</a> lovingly curates this newsletter.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Awesome Langchain! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[Launching the Weekly Langchain Update]]></title><description><![CDATA[Are you trying to keep up to date with all the projects and updates in Langchain ecosystem? We do too, and we want to help the community by gathering updates in one place]]></description><link>https://awesomeagents.substack.com/p/launching-the-weekly-langchain-update</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/launching-the-weekly-langchain-update</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Sat, 20 May 2023 23:41:11 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!mD50!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1a432088-e285-4df0-aac0-74f68f1bb3a6_1024x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p></p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p><div><hr></div><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Langchain&#8217;s Substack! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p>]]></content:encoded></item><item><title><![CDATA[Coming soon]]></title><description><![CDATA[This is Awesome Agents.]]></description><link>https://awesomeagents.substack.com/p/coming-soon</link><guid isPermaLink="false">https://awesomeagents.substack.com/p/coming-soon</guid><dc:creator><![CDATA[Kyrolabs AI]]></dc:creator><pubDate>Sat, 20 May 2023 23:35:18 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!mD50!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1a432088-e285-4df0-aac0-74f68f1bb3a6_1024x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>This is Awesome Agents.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://awesomeagents.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="https://awesomeagents.substack.com/subscribe?"><span>Subscribe now</span></a></p>]]></content:encoded></item></channel></rss>