LangChain version 0.0.34 Doc cleanup from `moozilla` (if on twitter lmk!) Support for @OpenAI's moderation endpoint LLMFactChecker chain from @thepromptking, original idea by @0xjasper Some more info on the LLM fact checker chain
@langchain
-
Simple conversation buffer memory with dynamic N adjustment
By
–
it is pretty simple at the moment – just keeps a buffer of the past N conversations in memory. a pretty simple improvement would be dynamically adjusting N based on the length of the conversations
-
Improving ChatGPT’s Math Abilities with LangChain
By
–
An awesome example improving ChatGPT's much maligned math abilities!
-
Build ChatGPT-like Applications with Official APIs Now
By
–
Tired of using an "unofficial" ChatGPT api? Just use this instead! More seriously: applications like ChatGPT are very possible for anyone to develop NOW. What will you build?
-
LangChain Already Supports Conversation Summary Memory
By
–
we actually support that already! https://
langchain.readthedocs.io/en/latest/gett
ing_started/memory.html#ConversationChain-with-ConversationSummaryMemory
… -
Dynamic conversation context length determination in LangChain
By
–
excited to hear your thoughts/ideas! right now its pretty simple: just take the last N lines of conversation. but a very natural extension to determine N dynamically based on their length
-
LangChain Mid-Week Release: Community Updates and Future Discussions
By
–
Thanks to all for a surprisingly big mid-week release! Lots is happening. Check out the GitHub or Discord to stay up to date + help discuss future ideas GitHub: https://
github.com/hwchase17/lang
chain
… Discord: https://
discord.gg/6adMQxSpJS -
New Requests Chain: LLM Interaction with Web URLs
By
–
@BruceHammer helped add a requests chain This hits a given URL, and then passes the parsed response as context to the LLM. Very useful interacting with the web! See the example of doing a google search here: https://
langchain.readthedocs.io/en/latest/exam
ples/chains/llm_requests.html
… -
LangChain Adds Bash Utility and Natural Language to Command Chain
By
–
@coyotespike added a Bash utility (a wrapper on subprocess) He then also added a chain to convert natural language to a bash command. Very useful for interacting with the terminal! See the example here: https://
langchain.readthedocs.io/en/latest/exam
ples/chains/llm_bash.html
… -
LangChain 0.0.31 Release: New Agents, Bash, and Chains
By
–
LangChain version 0.0.31 @johnvmcdonnell fixed how Agents handle a missing tool (so no longer errors) Bash utility and a LLMBashChain (
@coyotespike
) a generic transformation chain (
@AkashSamant4
) a requests chain (
@BruceHammer
) on these additions:
