mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-01 17:13:22 +00:00
docs: runnable
module description (#17966)
Added a module description. Added `batch` description.
This commit is contained in:
parent
6d0af4e805
commit
a89f007947
@ -9,7 +9,9 @@ synchronous, asynchronous, batch, and streaming operations.
|
||||
Support for **async** allows servers hosting LCEL based programs to scale better
|
||||
for higher concurrent loads.
|
||||
|
||||
**Streaming** of intermediate outputs as they're being generated allows for
|
||||
**Batch** operations allow for processing multiple inputs in parallel.
|
||||
|
||||
**Streaming** of intermediate outputs, as they're being generated, allows for
|
||||
creating more responsive UX.
|
||||
|
||||
This module contains schema and implementation of LangChain Runnables primitives.
|
||||
|
@ -0,0 +1,18 @@
|
||||
"""LangChain **Runnable** and the **LangChain Expression Language (LCEL)**.
|
||||
|
||||
The LangChain Expression Language (LCEL) offers a declarative method to build
|
||||
production-grade programs that harness the power of LLMs.
|
||||
|
||||
Programs created using LCEL and LangChain Runnables inherently support
|
||||
synchronous, asynchronous, batch, and streaming operations.
|
||||
|
||||
Support for **async** allows servers hosting the LCEL based programs
|
||||
to scale better for higher concurrent loads.
|
||||
|
||||
**Batch** operations allow for processing multiple inputs in parallel.
|
||||
|
||||
**Streaming** of intermediate outputs, as they're being generated, allows for
|
||||
creating more responsive UX.
|
||||
|
||||
This module contains non-core Runnable classes.
|
||||
"""
|
Loading…
Reference in New Issue
Block a user