How to
📄️ Async API
LangChain provides async support by leveraging the
📄️ Different call methods
All classes inherited from Chain offer a few ways of running chain
📄️ Custom chain
To implement your own custom chain you can subclass Chain and
📄️ Adding memory (state)
Chains can be initialized with a Memory object, which will persist data across calls to the chain. This makes a Chain stateful.
📄️ Using OpenAI functions
This walkthrough demonstrates how to incorporate OpenAI function-calling