langchain/docs/modules/llms
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
..
examples Harrison/openai callback (#684) 2023-01-22 23:37:01 -08:00
integrations Fix the env variable for OpenAI Base Url (#639) 2023-01-17 22:30:29 -08:00
async_llm.ipynb Add asyncio support for LLM (OpenAI), Chain (LLMChain, LLMMathChain), and Agent (#841) 2023-02-07 21:21:57 -08:00
generic_how_to.rst Harrison/openai callback (#684) 2023-01-22 23:37:01 -08:00
getting_started.ipynb Docs refactor (#480) 2023-01-02 08:24:09 -08:00
how_to_guides.rst Add asyncio support for LLM (OpenAI), Chain (LLMChain, LLMMathChain), and Agent (#841) 2023-02-07 21:21:57 -08:00
integrations.rst Feature: linkcheck-action (#534) (#542) 2023-01-04 21:39:50 -08:00
key_concepts.md Docs refactor (#480) 2023-01-02 08:24:09 -08:00