You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment we use the context chat engine which forces Reginald to always search through our database to find relevant information and answer based on that.
In llama-index, there is also a ReAct chat engine which takes your question and then uses an LLM to decide whether to search the database or just use existing 'knowledge' (i.e. data it was trained on). We think this decision is made based on the question only (i.e. nothing to with the contents of the database).
We tried the ReAct chat engine with llama2 but weren't super happy with its decision-making on whether to search/not search. See #64 .
We think it would be nice to re-explore the agent-based chat engines and/or using both database and prior knowledge. In particular, it would be good to have a set up of:
query database,
formulate answer,
check if answer answers question and make decision of whehter to reply, query again or use knowledge,
reformulate answer
check if answer answers question,
reply or say 'i dont know'
Potential options are:
Re-explore ReAct chat engine
Create our own chat engine and potentially PR to llama-index
The text was updated successfully, but these errors were encountered:
At the moment we use the context chat engine which forces Reginald to always search through our database to find relevant information and answer based on that.
In llama-index, there is also a ReAct chat engine which takes your question and then uses an LLM to decide whether to search the database or just use existing 'knowledge' (i.e. data it was trained on). We think this decision is made based on the question only (i.e. nothing to with the contents of the database).
We tried the ReAct chat engine with llama2 but weren't super happy with its decision-making on whether to search/not search. See #64 .
We think it would be nice to re-explore the agent-based chat engines and/or using both database and prior knowledge. In particular, it would be good to have a set up of:
Potential options are:
The text was updated successfully, but these errors were encountered: