-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomersup-for-grabsA good issue to fix if you are trying to contribute to the projectA good issue to fix if you are trying to contribute to the project
Description
Currently, PipelineInference creates an EntryPoint JSON graph beginning with:
{'Nodes' : [{
"Name": "TextAnalytics.TextTransform",
"Inputs": {
"Column": {
"Name": "text_tf",
"Source": [
"text"
]
},
}}]}The initial 'Nodes' should have double-quotes like "Nodes". JSON spec requires double quotes on keys.
As is, this fails a JSON.parse(), which makes the created JSON difficult to work with in NodeJS.
Source of the issue:
| return new PipelineResultRow($"{{'Nodes' : [{graphDef.Graph.ToJsonString()}]}}", |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomersup-for-grabsA good issue to fix if you are trying to contribute to the projectA good issue to fix if you are trying to contribute to the project