usnistgov / dioptra

Test Software for the Characterization of AI Technologies
https://pages.nist.gov/dioptra/
Other
210 stars 30 forks source link

Add plugin task type inference workflow #618

Open keithmanville opened 3 weeks ago

keithmanville commented 3 weeks ago

Add a new workflow endpoint for inferring the types of a plugin task.

POST /workflows/pluginTaskInfer {"plugin_file": "contents"}

The response should be something like:

{
  task_name: {
    "inputParams": { name: inferredType, ... } }, 
    "outputParams": [inferredType, ...] }
   }, ...
}

This feature should build off of #443

Definition of Done