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
I'm facing issues when using history with the score endpoint. The function provides the history for the endpoint, but the LLM can't access the information. When we test the app in multimodal mode, it works fine. The issue only occurs when we pass the history through the function.
Has anyone faced the same issue or has any ideas on how I could fix this?
JSON Sent by the Function to the Score Endpoint
{
"question": "Faça uma simulação para Jose",
"chat_history": [
{
"inputs": {
"question": "Faça uma simulação para Jose"
},
"outputs": {
"answer": "Ei, só para confirmar, está faltando: Data de nascimento ou idade e Profissão."
}
},
{
"inputs": {
"question": "Faça uma simulação para Jose que é Caminhoneiro e nasceu em 12 de jan de 88"
},
"outputs": {
"answer": "Aqui estão as informações do seu futuro seguro de vida: Perfil do Cliente e Produtos Selecionados."
}
}
],
"context": {
"usuario": {
"cpf": "XXXXXXXXXXX",
"nome": "Nome do Usuário",
"codigo": "XXXXXX"
}
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Issue: LLM Not Accessing History Through Function
I'm facing issues when using history with the score endpoint. The function provides the history for the endpoint, but the LLM can't access the information. When we test the app in multimodal mode, it works fine. The issue only occurs when we pass the history through the function.
Has anyone faced the same issue or has any ideas on how I could fix this?
JSON Sent by the Function to the Score Endpoint
Beta Was this translation helpful? Give feedback.
All reactions