Files
langchain-python/langchain/chains
Ankush Gola bc7e56e8df Add asyncio support for LLM (OpenAI), Chain (LLMChain, LLMMathChain), and Agent (#841)
Supporting asyncio in langchain primitives allows for users to run them
concurrently and creates more seamless integration with
asyncio-supported frameworks (FastAPI, etc.)

Summary of changes:

**LLM**
* Add `agenerate` and `_agenerate`
* Implement in OpenAI by leveraging `client.Completions.acreate`

**Chain**
* Add `arun`, `acall`, `_acall`
* Implement them in `LLMChain` and `LLMMathChain` for now

**Agent**
* Refactor and leverage async chain and llm methods
* Add ability for `Tools` to contain async coroutine
* Implement async SerpaPI `arun`

Create demo notebook.

Open questions:
* Should all the async stuff go in separate classes? I've seen both
patterns (keeping the same class and having async and sync methods vs.
having class separation)
2023-02-07 21:21:57 -08:00
..
2023-01-27 00:45:17 -08:00
2023-02-06 20:02:19 -08:00
2023-02-06 20:31:30 -08:00
2023-01-27 00:45:17 -08:00
2023-01-27 00:45:17 -08:00
2023-02-02 08:23:38 -08:00
2023-02-02 08:47:20 -08:00
2023-01-30 14:48:24 -08:00
2023-02-06 20:02:19 -08:00
2022-12-10 09:19:16 -08:00
2023-01-22 12:44:14 -08:00
2022-12-06 21:58:16 -08:00