will depend on what tools you use with it! these serialized agents do NOT include the specific tools (yet), they're just the agent logic and rely on users to pass intools do you think it would be more useful to have agents + tools serialized together?
@langchain
-
LangChain Hub Repository for AI Agents Development
By
–
currently just using the github repo for that https://
github.com/hwchase17/lang
chain-hub/tree/master/agents
… -
LangChain Hub Makes Sharing Agents and Chains Easier
By
–
This should make it easier than ever to share your chains/agents, which we think are much more useful than just prompts! See here for how to upload agents (
https://
github.com/hwchase17/lang
chain-hub/tree/master/agents
…) and here for how to upload chains (
https://
github.com/hwchase17/lang
chain-hub/tree/master/chains
…) -
Loading LangChain Agents with Self-Ask Search Tool
By
–
To load agents: “`
from langchain.agents import initialize_agent agent = initialize_agent(tools, llm, agent="lc://agents/self-ask-with-search/agent.json")
“` Documentation: https://
langchain.readthedocs.io/en/latest/modu
les/agents/examples/load_from_hub.html
… -
LangChain SQL Agent Variants with Custom Parameters
By
–
This makes it possible upload chains/agents that are variants of existing chains/agents but with different parameters For example, here's an agent specifically instructed to interact with SQL databases that @fpingham came up with: https://
github.com/hwchase17/lang
chain-hub/tree/master/agents/zero-shot-react-sql
… -
Loading Chains with LangChain Framework
By
–
To load chains: “`
from langchain.chains import load_chain chain = load_chain('lc://chains/path/to/file.json')
“` Documentation: https://
langchain.readthedocs.io/en/latest/modu
les/chains/generic/from_hub.html
… -
LangChainHub Update: All Chains and Agents Now Available
By
–
Big update to LangChainHub With lots of help from @sjwhitmore
, all chains and agents are now on there, and loadable in a single line of code Including some chains/agents not available in the python package -
RecursiveCharacterTextSplitter Text Processing Tool Overview
By
–
RecursiveCharacterTextSplitter is my fav! https://
langchain.readthedocs.io/en/latest/modu
les/utils/combine_docs_examples/textsplitter.html#recursive-character-text-splitting
… -
LangChain v0.0.70 Release with Major Contributions
By
–
Lot's of contributions in the 0.0.70 release! Too many to list in this tweet Full release log: https://
github.com/hwchase17/lang
chain/releases/tag/v0.0.70
… Featuring: @fpingham @amosjyng @YirenLu @samhogan @shanginn Feynman Liang @LukawskiKacper @nickscamara_ Scott Leibrand -
Open-source LangChain bot deployment examples for messaging platforms
By
–
Anyone have any good open-source examples of deploying a LangChain bot on discord, telegram, WhatsApp, Slack, etc? Want to add some examples to the gallery & deployment pages for this!