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
While using this debug tool, we were not able to extract the user message and pass it to the target LLM.
Following code works fine with deployed extension; but fails with blank messages in local debug setup
let messages = [];
if (req.body && req.body.messages) {
messages = req.body.messages
.filter(({ content, name }) => content && !name)
.map(({ role, content }) => ({
role,
content
}));
}
The text was updated successfully, but these errors were encountered:
While using this debug tool, we were not able to extract the user message and pass it to the target LLM.
Following code works fine with deployed extension; but fails with blank messages in local debug setup
The text was updated successfully, but these errors were encountered: