+ {Object.entries(inputs).map(([param, input], idx) => {
+ const includedInPrompt =
+ input.metadata.includeInPrompt ?? true
+ return (
+
+
+
+ {{{param}}}
+
+ {!includedInPrompt && (
+ }>
+ This variable is not included in the current prompt
+
+ )}
+
+
+
+
+ )
+ })}
+