We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf240a2 commit a59a198Copy full SHA for a59a198
frontend/src/App.tsx
@@ -54,9 +54,9 @@ export default function App() {
54
title: "Reflection",
55
data: event.reflection.is_sufficient
56
? "Search successful, generating final answer."
57
- : `Need more information, searching for ${event.reflection.follow_up_queries.join(
+ : `Need more information, searching for ${event.reflection.follow_up_queries?.join(
58
", "
59
- )}`,
+ ) || "additional information"}`,
60
};
61
} else if (event.finalize_answer) {
62
processedEvent = {
0 commit comments