Find answers from the community

Updated 8 months ago

Is the React Chat Engine no longer

Is the React Chat Engine no longer available? What if don't want index.as_chat_engine(chat_mode="react") but a hybrid retriver with react mode?
L
k
6 comments
its still available -- why do you think it isnt?
You can import it it directly and use it with any query engine
cause there's no ReactChatEngine class in llama_index.core.chat_engine
Or am I looking at the wrong place?
Plain Text
from llama_index.core.chat_engine.condense_plus_context import (
    CondensePlusContextChatEngine,
)
from llama_index.core.chat_engine.condense_question import (
    CondenseQuestionChatEngine,
)
from llama_index.core.chat_engine.context import ContextChatEngine
from llama_index.core.chat_engine.simple import SimpleChatEngine

__all__ = [
    "SimpleChatEngine",
    "CondenseQuestionChatEngine",
    "ContextChatEngine",
    "CondensePlusContextChatEngine",
]
this is the init.py file
from llama_index.core.agent import ReActAgent
Add a reply
Sign up and join the conversation on Discord