There's been lots of exploration with Agents. But very few of them have actually made it into production. Join the next @langchain webinar with @sjwhitmore @DivGarg9 and @devstein64 to understand what it looks like to put an agent in production
@hwchase17
-
LangChain Webinars Now on YouTube with QA Demo
By
–
We just put all the @langchain webinars on Youtube! https://
youtube.com/channel/UCC-ly
oTfSrcJzA1ab3APAgw
… The best part is, this now means we can use LangChain (in 12 lines of code) to do question/answering over the LangChain webinars How circular Gist: https://
gist.github.com/hwchase17/aa78
ad6fcb43d84665bdf2cf03afbc8e
… -
Agent Architecture: Batch Tool Invocations vs Sequential Observation
By
–
Like outputs a list of tool invocations? Rather than an agent which outputs one, then observes, then another, then observes, etc
-
HumanInputLLM: LLM Wrapper for Agent Debugging
By
–
HumanInputLLM A LLM wrapper that: 1. prints out the full prompt
2. asks the user for input to use as the response Useful for stepping through and debugging complex agents/chains in a controlled manner! Thanks to Myeongseop Kim for adding Docs: https://
python.langchain.com/en/latest/modu
les/models/llms/examples/human_input_llm.html
… -
Kor: Deep Dive into Entity Parsing Tool
By
–
absolutely! id recomend checking out kor for entity parsing deep dive https://
github.com/eyurtsev/kor -
ChromaDB Self-Querying Retriever with LLM Integration
By
–
ChromaDB Self-Querying Retriever Last week we introduced the self-querying retriever Basic idea is to use an LLM to turn a user query into a "query" and a "filter" We now implemented to work with @trychroma
! Docs: https://
github.com/hwchase17/lang
chain/blob/master/docs/modules/indexes/retrievers/examples/chroma_self_query_retriever.ipynb
… -
How AI Agents Currently Select Tools via LLM Decisions
By
–
wdym by "beyond comparing description embeddings"? thats not how agents currently work. they currently work by asking the llm to pick a tool, very similar to this approach
-
LangChain Wikibase Agent Implementation and Database Examples
By
–
theres one for wikibase: https://
python.langchain.com/en/latest/use_
cases/agents/wikibase_agent.html
… got any other good example databases to implement one on? -
Advanced AI Features Coming to JavaScript
By
–
Some really cool and advanced features making their way to JS! Constitutional AI Chain Time weighted retriever LLMChain Extractor (compresses documents post retrieval)
-
MultiRetrievalQAChain: Dynamic Retrieval System Routing
By
–
MultiRetrievalQAChain This notebook demonstrates how to use the RouterChain paradigm to create a chain that dynamically selects which Retrieval system to use Can be used to route questions to the correct retriever (based on content or intent) Docs: https://
python.langchain.com/en/latest/modu
les/chains/examples/multi_retrieval_qa_router.html
…