You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the sole purpose of the tool is to analyze the text I think --text isn't necessary and it should simply accept all unparsed args as text: elyzer --index myIndex --analyzer standard text to analyze
Currently, this needs to be prefixed and quotes: elyzer --index myIndex --analyzer standard --text "text to analyze"
The following will fail or behave unexpected:
... --text text to analzye => fails with unrecognized arguments: to analyze
... --text text --text to --text analyze => only analyzes the last one, silently drops the first two
The text was updated successfully, but these errors were encountered:
Since the sole purpose of the tool is to analyze the text I think
--text
isn't necessary and it should simply accept all unparsed args as text:elyzer --index myIndex --analyzer standard text to analyze
Currently, this needs to be prefixed and quotes:
elyzer --index myIndex --analyzer standard --text "text to analyze"
The following will fail or behave unexpected:
... --text text to analzye
=> fails withunrecognized arguments: to analyze
... --text text --text to --text analyze
=> only analyzes the last one, silently drops the first twoThe text was updated successfully, but these errors were encountered: