GPT-4 will be as big of a leap from GPT-3 as GPT-3 was to GPT-2. Early 2023 is going to be wild. I can't wait to build with it and invest in the best startups who leverage it (culture 2.0, diverse, user-first, intuitive design, strong business sense, brilliant team).
LLMS
-
LangChain Default OpenAI Model Updated to text-davinci-003
By
–
@shyamalanadkat already submitted a PR to change the default OpenAI model to `text-davinci-003` in LangChain https://
github.com/hwchase17/lang
chain/pull/215
… That was fast! -
DeepMind LLM Research at NeurIPS Discussion and Recruitment
By
–
At NeurIPS this week, reach out if you want to discuss our work around LLM at @DeepMind (Chinchilla, Retro, Flamingo), and if you're interested in working with us!
-
AI21 Labs Launches Jurassic-1 LLM on AWS SageMaker
By
–
Our Co-founder & Co-CEO @origoshen kicking off @awscloud #reInvent2022 with an exciting announcement: you can now deploy our LLM Jurassic-1 on your private SageMaker environment!
-
Contribute Memory Implementations to LangChain Core Library
By
–
If you do have a memory implementation you think is generally useful, we'd LOVE to have it contributed back into the core library! We are super excited to see what people build with this https://
github.com/hwchase17/lang
chain
… -
Create Custom Memory Modules for LangChain Chains
By
–
And here's how you can create your own custom memory module! https://
langchain.readthedocs.io/en/latest/exam
ples/memory/custom_memory.html
… This can be used to implement your own ideal memory structure and then easily plug it into any chain. -
Expanding Memory Types in LangChain With Community Contributions
By
–
There are many more types of memory we hope to add! @sjwhitmore has been pioneering this effort so far, and we hope a lot of these come from the community. Check out this idea from @BrennanErbz for inspiration
-
Getting Started with Memory in Conversation Chains
By
–
Here is a notebook for getting started with memory. It walks through maybe the most clear application of memory: a conversation chain. It showcases short term memory – remembering the conversation to date https://
langchain.readthedocs.io/en/latest/gett
ing_started/memory.html
… -
Add Memory to Any LLM Chain and Agent
By
–
But you don't just have to use the predefined conversation chain! Here's how you can add memory to any LLM chain: https://
langchain.readthedocs.io/en/latest/exam
ples/memory/adding_memory.html
… And here's how you can add memory to an agent: https://
langchain.readthedocs.io/en/latest/exam
ples/memory/agent_with_memory.html
… -
LangChain Chains Now Support Stateful Conversations and Memory
By
–
So far all the chains/agents in LangChain have been stateless, meaning each interaction is independent This is far from ideal for some real world settings (eg chatbots) where you want the chain/agent to remember previous conversations