Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion extensions/cli/src/configLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,9 @@ async function loadDefaultConfig(
});

if (!resp.configResult.config) {
throw new Error("Failed to load default agent.");
throw new Error(
`Failed to load default agent. Body:\n${JSON.stringify(resp)}`,
);
}
let apiConfig = resp.configResult.config as AssistantUnrolled;
if (injectBlocks.length > 0) {
Expand Down
Loading