@@ -439,7 +439,7 @@ response = ml.classifiers.tags.detail('[MODEL_ID]', TAG_ID)
439
439
440
440
441
441
``` python
442
- def MonkeyLearn.classifiers.tags.create(model_id, name, parent_id = None , retry_if_throttled = True )
442
+ def MonkeyLearn.classifiers.tags.create(model_id, name, retry_if_throttled = True )
443
443
```
444
444
445
445
Parameters:
@@ -448,7 +448,6 @@ Parameters:
448
448
| --------------------| -------------------| -----------------------------------------------------------|
449
449
| * model_id* | ` str ` | Classifier ID. It always starts with ` 'cl' ` , for example, ` 'cl_oJNMkt2V' ` . |
450
450
| * name* | ` str ` | The name of the new tag. |
451
- | * parent_id* | ` int ` | ** DEPRECATED** (only for v2 models). The ID of the parent tag. |
452
451
| * retry_if_throttled* | ` bool ` | If a request is [ throttled] ( https://monkeylearn.com/api/v3/#query-limits ) , sleep and retry the request. |
453
452
454
453
Example:
@@ -463,7 +462,7 @@ response = ml.classifiers.tags.create('[MODEL_ID]', 'Positive')
463
462
464
463
465
464
``` python
466
- def MonkeyLearn.classifiers.tags.edit(model_id, tag_id, name = None , parent_id = None ,
465
+ def MonkeyLearn.classifiers.tags.edit(model_id, tag_id, name = None ,
467
466
retry_if_throttled = True )
468
467
```
469
468
@@ -474,7 +473,6 @@ Parameters:
474
473
| * model_id* | ` str ` | Classifier ID. It always starts with ` 'cl' ` , for example, ` 'cl_oJNMkt2V' ` . |
475
474
| * tag_id* | ` int ` | Tag ID. |
476
475
| * name* | ` str ` | The new name of the tag. |
477
- | * parent_id* | ` int ` | ** DEPRECATED** (only for v2 models). The new parent tag ID. |
478
476
| * retry_if_throttled* | ` bool ` | If a request is [ throttled] ( https://monkeylearn.com/api/v3/#query-limits ) , sleep and retry the request. |
479
477
480
478
Example:
0 commit comments