Uses of Interface
dev.langchain4j.model.chat.StreamingChatModel
Packages that use StreamingChatModel
Package
Description
-
Uses of StreamingChatModel in dev.langchain4j.model.anthropic
Classes in dev.langchain4j.model.anthropic that implement StreamingChatModelModifier and TypeClassDescriptionclass
Represents an Anthropic language model with a Messages (chat) API. -
Uses of StreamingChatModel in dev.langchain4j.model.azure
Classes in dev.langchain4j.model.azure that implement StreamingChatModelModifier and TypeClassDescriptionclass
Represents an OpenAI language model, hosted on Azure, that has a chat completion interface, such as gpt-3.5-turbo. -
Uses of StreamingChatModel in dev.langchain4j.model.bedrock
Classes in dev.langchain4j.model.bedrock that implement StreamingChatModelModifier and TypeClassDescriptionclass
Deprecated, for removal: This API element is subject to removal in a future version.class
BedrockStreamingChatModel uses the Bedrock ConverseAPI. -
Uses of StreamingChatModel in dev.langchain4j.model.bedrock.internal
Classes in dev.langchain4j.model.bedrock.internal that implement StreamingChatModelModifier and TypeClassDescriptionclass
Bedrock Streaming chat model -
Uses of StreamingChatModel in dev.langchain4j.model.chat
Classes in dev.langchain4j.model.chat that implement StreamingChatModelModifier and TypeClassDescriptionclass
AStreamingChatModel
which throws aModelDisabledException
for all of its methods -
Uses of StreamingChatModel in dev.langchain4j.model.github
Classes in dev.langchain4j.model.github that implement StreamingChatModelModifier and TypeClassDescriptionclass
Represents a language model, hosted on GitHub Models, that has a chat completion interface, such as gpt-4o. -
Uses of StreamingChatModel in dev.langchain4j.model.googleai
Classes in dev.langchain4j.model.googleai that implement StreamingChatModel -
Uses of StreamingChatModel in dev.langchain4j.model.jlama
Classes in dev.langchain4j.model.jlama that implement StreamingChatModel -
Uses of StreamingChatModel in dev.langchain4j.model.localai
Classes in dev.langchain4j.model.localai that implement StreamingChatModel -
Uses of StreamingChatModel in dev.langchain4j.model.mistralai
Classes in dev.langchain4j.model.mistralai that implement StreamingChatModelModifier and TypeClassDescriptionclass
Represents a Mistral AI Chat Model with a chat completion interface, such as mistral-tiny and mistral-small. -
Uses of StreamingChatModel in dev.langchain4j.model.ollama
Classes in dev.langchain4j.model.ollama that implement StreamingChatModelModifier and TypeClassDescriptionclass
-
Uses of StreamingChatModel in dev.langchain4j.model.openai
Classes in dev.langchain4j.model.openai that implement StreamingChatModelModifier and TypeClassDescriptionclass
Represents an OpenAI language model with a chat completion interface, such as gpt-4o-mini and o3. -
Uses of StreamingChatModel in dev.langchain4j.model.openaiofficial
Classes in dev.langchain4j.model.openaiofficial that implement StreamingChatModel -
Uses of StreamingChatModel in dev.langchain4j.model.vertexai
Classes in dev.langchain4j.model.vertexai that implement StreamingChatModelModifier and TypeClassDescriptionclass
Represents a Google Vertex AI Gemini language model with a stream chat completion interface, such as gemini-pro. -
Uses of StreamingChatModel in dev.langchain4j.service
Fields in dev.langchain4j.service declared as StreamingChatModelMethods in dev.langchain4j.service with parameters of type StreamingChatModelModifier and TypeMethodDescriptionstatic <T> T
AiServices.create
(Class<T> aiService, StreamingChatModel streamingChatModel) Creates an AI Service (an implementation of the provided interface), that is backed by the provided streaming chat model.AiServices.streamingChatModel
(StreamingChatModel streamingChatModel) Configures streaming chat model that will be used under the hood of the AI Service.
BedrockStreamingChatModel
instead