You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs/modules
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)
1 year ago
..
agents Add asyncio support for LLM (OpenAI), Chain (LLMChain, LLMMathChain), and Agent (#841) 1 year ago
chains Add asyncio support for LLM (OpenAI), Chain (LLMChain, LLMMathChain), and Agent (#841) 1 year ago
document_loaders Harrison/obsidian (#920) 1 year ago
llms Add asyncio support for LLM (OpenAI), Chain (LLMChain, LLMMathChain), and Agent (#841) 1 year ago
memory Fix typos (#929) 1 year ago
prompts fix docs custom prompt template (#917) 1 year ago
utils Harrison/save faiss (#916) 1 year ago
agents.rst Feature: linkcheck-action (#534) (#542) 1 year ago
chains.rst Feature: linkcheck-action (#534) (#542) 1 year ago
document_loaders.rst Harrison/unstructured support (#903) 1 year ago
llms.rst Fix minor error in LLM documentation (#602) 1 year ago
memory.rst Feature: linkcheck-action (#534) (#542) 1 year ago
prompts.rst Feature: linkcheck-action (#534) (#542) 1 year ago
state_of_the_union.txt Docs refactor (#480) 1 year ago
utils.rst Feature: linkcheck-action (#534) (#542) 1 year ago