Skip to content
Draft
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: 1 addition & 3 deletions extensions/cli/src/configLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function determineConfigSource(
} else {
// In headless, user assistant fallback behavior isn't supported
if (isHeadless) {
return { type: "remote-default-config" };
return { type: "no-config" };
}
// Authenticated: try user assistants first
return { type: "user-assistant", slug: "" }; // Empty slug means "first available"
Expand Down Expand Up @@ -194,8 +194,6 @@ async function loadFromSource(
injectBlocks,
);

// TODO this is currently skipped because we are forcing default config
// Because models add on won't work for injected blocks e.g. default model, (only default config)
case "no-config":
return await unrollPackageIdentifiersAsConfigYaml(
injectBlocks,
Expand Down
Loading