You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the code that reproduces this issue or a replay of the bug
const{ Midjourney }=require("midjourney");asyncfunctionmain(){constclient=newMidjourney({ServerId: '<>',ChannelId: '<>',SalaiToken: '<>',Ws: true,});constprompt1="A red boat --version 5.2 --turbo --stylize 250";constprompt2="A red boat with a big sail --version 5.2 --turbo --stylize 250";try{awaitclient.init();console.log("Imagine");constimagineResult=awaitclient.Imagine(prompt1);console.log("Upscale");constupscaleResult=awaitclient.Upscale({index: 1,msgId: imagineResult.id,hash: imagineResult.hash,flags: imagineResult.flags,})for(constlabelof["Vary (Strong)","Vary (Subtle)"]){constcustom=upscaleResult.options.find(option=>option.label===label);console.log(label);awaitclient.Custom({msgId: upscaleResult.id,content: prompt2,flags: upscaleResult.flags,customId: custom.custom,});}}catch(err){console.error(err);}finally{client.Close();}}main().then(()=>console.log("done")).catch(err=>console.error(err));
Describe the bug
Describe the bug
Variation+Remix using Custom API only works on Vary (Strong) action and hangs on the Vary (Subtle) action.
Expected behavior
Should work on either actions.
Additional Information
When executing the client.init function, discord opens the settings form an I see that the "High Variation Mode" is selected. It might be the reason. If so, how can we overcome this?
error log
None, just hangs.
The text was updated successfully, but these errors were encountered:
the code that reproduces this issue or a replay of the bug
Describe the bug
Describe the bug
Variation+Remix using Custom API only works on
Vary (Strong)
action and hangs on theVary (Subtle)
action.Expected behavior
Should work on either actions.
Additional Information
When executing the
client.init
function, discord opens the settings form an I see that the "High Variation Mode" is selected. It might be the reason. If so, how can we overcome this?error log
None, just hangs.
The text was updated successfully, but these errors were encountered: