Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe("nickname modal flow", () => {
for (const { path, continueFn } of accountRegistrationEntries) {
const pageSource = readSource(path);

expect(pageSource).toContain(`await ${continueFn}(`);
expect(pageSource).toContain(`await ${continueFn}(onboardingPatch);`);
// The new-user registration branch no longer opens the nickname modal during registration, to avoid pushing the nickname ahead of the scan authorization step.
expect(pageSource).not.toContain('dispatch(appActions.modalChanged("nickname", true));');
}
Expand Down
4 changes: 2 additions & 2 deletions App/memmy-agent/src/config/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ export function isValidImageGenerationMaxImagesPerTurn(value: unknown): value is
}

export class ImageGenerationToolConfig extends Base {
enabled = false;
enabled = true;
provider = "openai";
model = "gpt-image-2";
apiKey = "";
Expand All @@ -851,7 +851,7 @@ export class ImageGenerationToolConfig extends Base {
throw new ValueError(`tools.imageGeneration current contract does not accept legacy model field '${legacy}'`);
}
}
this.enabled = pick(init, ["enabled"], false);
this.enabled = pick(init, ["enabled"], true);
this.profileMode = false;
this.defaultAspectRatio = pick(
init,
Expand Down
Loading
Loading