mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-08-14 02:05:21 +02:00
Expose the metadata format option in the UI
This commit is contained in:
@ -53,6 +53,19 @@ var PARAMETERS = [
|
||||
return `<input id="${parameter.id}" name="${parameter.id}" size="30" disabled>`
|
||||
}
|
||||
},
|
||||
{
|
||||
id: "metadata_output_format",
|
||||
type: ParameterType.select,
|
||||
label: "Metadata format",
|
||||
note: "the metadata will be saved to disk in this format",
|
||||
default: "txt",
|
||||
options: [
|
||||
{
|
||||
value: "txt",
|
||||
label: "json"
|
||||
}
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "sound_toggle",
|
||||
type: ParameterType.checkbox,
|
||||
|
Reference in New Issue
Block a user