📦 deps(thirdparty): update snapshots
This commit is contained in:
@@ -89,7 +89,10 @@ const REPORT_SCHEMA = {
|
||||
|
||||
// ─── Phase 0: Scope — decompose question into search angles ───
|
||||
phase("Scope")
|
||||
const QUESTION = (typeof args === "string" ? args.trim() : args?.query?.trim()) || ""
|
||||
const RAW_QUESTION = typeof args === "string"
|
||||
? args
|
||||
: (typeof args === "object" && args !== null && !Array.isArray(args) ? args.query : "")
|
||||
const QUESTION = typeof RAW_QUESTION === "string" ? RAW_QUESTION.trim() : ""
|
||||
if (!QUESTION) {
|
||||
return { error: "No research question provided. Pass it as args: Workflow({name: 'go-in-depth', args: '<question>'})." }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user