We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c94ad commit cb76a0cCopy full SHA for cb76a0c
conjure-aas.js
@@ -39,6 +39,10 @@ function submitHandler(req, res) {
39
// create directory
40
fs.mkdirSync(`conjure-output/${thisJobId}`, { recursive: true });
41
42
+ if (req.body.metadata !== undefined) {
43
+ fs.writeFileSync(`conjure-output/${thisJobId}/metadata.json`, req.body.metadata);
44
+ }
45
+
46
// we cache the essence + eprime in a model-cache to avoid rerunning conjure-modelling
47
let cacheKey = md5(req.body.model.trim());
48
let cacheHit = false;
0 commit comments