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
entities_linked_text_data="Last month director Paul Feig announced the movie will have an all-star female cast including Kristen Wiig, Melissa McCarthy, Leslie Jones and Kate McKinnon."
19
+
params=DocumentParameters()
20
+
params["content"] =entities_linked_text_data
21
+
params["genre"] ="social-media"
22
+
returnapi.entities(params, True) # entity linking is turned on
23
+
24
+
25
+
parser=argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter, description='Calls the '+os.path.splitext(os.path.basename(__file__))[0] +' endpoint')
26
+
parser.add_argument('-k', '--key', help='Rosette API Key', required=True)
27
+
parser.add_argument('-u', '--url', help="Alternative API URL", default='https://api.rosette.com/rest/v1/')
0 commit comments