mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
fix recent docs integrations file loc (#11782)
This commit is contained in:
parent
233a904f2e
commit
d6e34ca2ee
@ -1,41 +0,0 @@
|
|||||||
---
|
|
||||||
sidebar_position: 1
|
|
||||||
sidebar_class_name: hidden
|
|
||||||
---
|
|
||||||
|
|
||||||
# Chat models
|
|
||||||
|
|
||||||
import DocCardList from "@theme/DocCardList";
|
|
||||||
|
|
||||||
## Features (natively supported)
|
|
||||||
All ChatModels implement the Runnable interface, which comes with default implementations of all methods, ie. `ainvoke`, `batch`, `abatch`, `stream`, `astream`. This gives all ChatModels basic support for async, streaming and batch, which by default is implemented as below:
|
|
||||||
- *Async* support defaults to calling the respective sync method in asyncio's default thread pool executor. This lets other async functions in your application make progress while the ChatModel is being executed, by moving this call to a background thread.
|
|
||||||
- *Streaming* support defaults to returning an `Iterator` (or `AsyncIterator` in the case of async streaming) of a single value, the final result returned by the underlying ChatModel provider. This obviously doesn't give you token-by-token streaming, which requires native support from the ChatModel provider, but ensures your code that expects an iterator of tokens can work for any of our ChatModel integrations.
|
|
||||||
- *Batch* support defaults to calling the underlying ChatModel in parallel for each input by making use of a thread pool executor (in the sync batch case) or `asyncio.gather` (in the async batch case). The concurrency can be controlled with the `max_concurrency` key in `RunnableConfig`.
|
|
||||||
|
|
||||||
Each ChatModel integration can optionally provide native implementations to truly enable async or streaming.
|
|
||||||
The table shows, for each integration, which features have been implemented with native support.
|
|
||||||
|
|
||||||
Model|Invoke|Async invoke|Stream|Async stream
|
|
||||||
:-|:-:|:-:|:-:|:-:
|
|
||||||
AzureChatOpenAI|✅|✅|✅|✅
|
|
||||||
BedrockChat|✅|❌|✅|❌
|
|
||||||
ChatAnthropic|✅|✅|✅|✅
|
|
||||||
ChatAnyscale|✅|✅|✅|✅
|
|
||||||
ChatEverlyAI|✅|✅|✅|✅
|
|
||||||
ChatFireworks|✅|✅|✅|✅
|
|
||||||
ChatGooglePalm|✅|✅|❌|❌
|
|
||||||
ChatJavelinAIGateway|✅|✅|❌|❌
|
|
||||||
ChatKonko|✅|❌|❌|❌
|
|
||||||
ChatLiteLLM|✅|✅|✅|✅
|
|
||||||
ChatMLflowAIGateway|✅|❌|❌|❌
|
|
||||||
ChatOllama|✅|❌|✅|❌
|
|
||||||
ChatOpenAI|✅|✅|✅|✅
|
|
||||||
ChatVertexAI|✅|✅|✅|❌
|
|
||||||
ErnieBotChat|✅|❌|❌|❌
|
|
||||||
JinaChat|✅|✅|✅|✅
|
|
||||||
MiniMaxChat|✅|✅|❌|❌
|
|
||||||
PromptLayerChatOpenAI|✅|❌|❌|❌
|
|
||||||
QianfanChatEndpoint|✅|✅|✅|✅
|
|
||||||
|
|
||||||
<DocCardList />
|
|
@ -1,93 +0,0 @@
|
|||||||
---
|
|
||||||
sidebar_position: 0
|
|
||||||
sidebar_class_name: hidden
|
|
||||||
---
|
|
||||||
|
|
||||||
# LLMs
|
|
||||||
|
|
||||||
import DocCardList from "@theme/DocCardList";
|
|
||||||
|
|
||||||
## Features (natively supported)
|
|
||||||
All LLMs implement the Runnable interface, which comes with default implementations of all methods, ie. `ainvoke`, `batch`, `abatch`, `stream`, `astream`. This gives all LLMs basic support for async, streaming and batch, which by default is implemented as below:
|
|
||||||
- *Async* support defaults to calling the respective sync method in asyncio's default thread pool executor. This lets other async functions in your application make progress while the LLM is being executed, by moving this call to a background thread.
|
|
||||||
- *Streaming* support defaults to returning an `Iterator` (or `AsyncIterator` in the case of async streaming) of a single value, the final result returned by the underlying LLM provider. This obviously doesn't give you token-by-token streaming, which requires native support from the LLM provider, but ensures your code that expects an iterator of tokens can work for any of our LLM integrations.
|
|
||||||
- *Batch* support defaults to calling the underlying LLM in parallel for each input by making use of a thread pool executor (in the sync batch case) or `asyncio.gather` (in the async batch case). The concurrency can be controlled with the `max_concurrency` key in `RunnableConfig`.
|
|
||||||
|
|
||||||
Each LLM integration can optionally provide native implementations for async, streaming or batch, which, for providers that support it, can be more efficient. The table shows, for each integration, which features have been implemented with native support.
|
|
||||||
|
|
||||||
Model|Invoke|Async invoke|Stream|Async stream|Batch|Async batch
|
|
||||||
:-|:-:|:-:|:-:|:-:|:-:|:-:
|
|
||||||
AI21|✅|❌|❌|❌|❌|❌
|
|
||||||
AlephAlpha|✅|❌|❌|❌|❌|❌
|
|
||||||
AmazonAPIGateway|✅|❌|❌|❌|❌|❌
|
|
||||||
Anthropic|✅|✅|✅|✅|❌|❌
|
|
||||||
Anyscale|✅|❌|❌|❌|❌|❌
|
|
||||||
Aviary|✅|❌|❌|❌|❌|❌
|
|
||||||
AzureMLOnlineEndpoint|✅|❌|❌|❌|❌|❌
|
|
||||||
AzureOpenAI|✅|✅|✅|✅|✅|✅
|
|
||||||
Banana|✅|❌|❌|❌|❌|❌
|
|
||||||
Baseten|✅|❌|❌|❌|❌|❌
|
|
||||||
Beam|✅|❌|❌|❌|❌|❌
|
|
||||||
Bedrock|✅|❌|✅|❌|❌|❌
|
|
||||||
CTransformers|✅|✅|❌|❌|❌|❌
|
|
||||||
CTranslate2|✅|❌|❌|❌|✅|❌
|
|
||||||
CerebriumAI|✅|❌|❌|❌|❌|❌
|
|
||||||
ChatGLM|✅|❌|❌|❌|❌|❌
|
|
||||||
Clarifai|✅|❌|❌|❌|❌|❌
|
|
||||||
Cohere|✅|✅|❌|❌|❌|❌
|
|
||||||
Databricks|✅|❌|❌|❌|❌|❌
|
|
||||||
DeepInfra|✅|❌|❌|❌|❌|❌
|
|
||||||
DeepSparse|✅|❌|❌|❌|❌|❌
|
|
||||||
EdenAI|✅|✅|❌|❌|❌|❌
|
|
||||||
Fireworks|✅|✅|✅|✅|❌|❌
|
|
||||||
Fireworks|✅|✅|✅|✅|✅|✅
|
|
||||||
ForefrontAI|✅|❌|❌|❌|❌|❌
|
|
||||||
GPT4All|✅|❌|❌|❌|❌|❌
|
|
||||||
GooglePalm|✅|❌|❌|❌|✅|❌
|
|
||||||
GooseAI|✅|❌|❌|❌|❌|❌
|
|
||||||
GradientLLM|✅|✅|❌|❌|❌|❌
|
|
||||||
HuggingFaceEndpoint|✅|❌|❌|❌|❌|❌
|
|
||||||
HuggingFaceHub|✅|❌|❌|❌|❌|❌
|
|
||||||
HuggingFacePipeline|✅|❌|❌|❌|✅|❌
|
|
||||||
HuggingFaceTextGenInference|✅|✅|✅|✅|❌|❌
|
|
||||||
HumanInputLLM|✅|❌|❌|❌|❌|❌
|
|
||||||
JavelinAIGateway|✅|✅|❌|❌|❌|❌
|
|
||||||
KoboldApiLLM|✅|❌|❌|❌|❌|❌
|
|
||||||
LlamaCpp|✅|❌|✅|❌|❌|❌
|
|
||||||
ManifestWrapper|✅|❌|❌|❌|❌|❌
|
|
||||||
Minimax|✅|❌|❌|❌|❌|❌
|
|
||||||
MlflowAIGateway|✅|❌|❌|❌|❌|❌
|
|
||||||
Modal|✅|❌|❌|❌|❌|❌
|
|
||||||
MosaicML|✅|❌|❌|❌|❌|❌
|
|
||||||
NIBittensorLLM|✅|❌|❌|❌|❌|❌
|
|
||||||
NLPCloud|✅|❌|❌|❌|❌|❌
|
|
||||||
Nebula|✅|❌|❌|❌|❌|❌
|
|
||||||
OctoAIEndpoint|✅|❌|❌|❌|❌|❌
|
|
||||||
Ollama|✅|❌|❌|❌|❌|❌
|
|
||||||
OpaquePrompts|✅|❌|❌|❌|❌|❌
|
|
||||||
OpenAI|✅|✅|✅|✅|✅|✅
|
|
||||||
OpenLLM|✅|✅|❌|❌|❌|❌
|
|
||||||
OpenLM|✅|✅|✅|✅|✅|✅
|
|
||||||
Petals|✅|❌|❌|❌|❌|❌
|
|
||||||
PipelineAI|✅|❌|❌|❌|❌|❌
|
|
||||||
Predibase|✅|❌|❌|❌|❌|❌
|
|
||||||
PredictionGuard|✅|❌|❌|❌|❌|❌
|
|
||||||
PromptLayerOpenAI|✅|❌|❌|❌|❌|❌
|
|
||||||
QianfanLLMEndpoint|✅|✅|✅|✅|❌|❌
|
|
||||||
RWKV|✅|❌|❌|❌|❌|❌
|
|
||||||
Replicate|✅|❌|✅|❌|❌|❌
|
|
||||||
SagemakerEndpoint|✅|❌|❌|❌|❌|❌
|
|
||||||
SelfHostedHuggingFaceLLM|✅|❌|❌|❌|❌|❌
|
|
||||||
SelfHostedPipeline|✅|❌|❌|❌|❌|❌
|
|
||||||
StochasticAI|✅|❌|❌|❌|❌|❌
|
|
||||||
TextGen|✅|❌|❌|❌|❌|❌
|
|
||||||
TitanTakeoff|✅|❌|✅|❌|❌|❌
|
|
||||||
Tongyi|✅|❌|❌|❌|❌|❌
|
|
||||||
VLLM|✅|❌|❌|❌|✅|❌
|
|
||||||
VLLMOpenAI|✅|✅|✅|✅|✅|✅
|
|
||||||
VertexAI|✅|✅|✅|❌|✅|✅
|
|
||||||
VertexAIModelGarden|✅|✅|❌|❌|✅|✅
|
|
||||||
Writer|✅|❌|❌|❌|❌|❌
|
|
||||||
Xinference|✅|❌|❌|❌|❌|❌
|
|
||||||
|
|
||||||
<DocCardList />
|
|
Loading…
Reference in New Issue
Block a user