### What problem does this PR solve? Added delete_dataset method and test for it. ### Type of change - [x] New Feature (non-breaking change which adds functionality)tags/v0.8.0
| @@ -25,3 +25,5 @@ class RAGFLow(ABC): | |||
| def create_dataset(self, name): | |||
| return name | |||
| def delete_dataset(self, name): | |||
| return name | |||
| @@ -10,3 +10,6 @@ class TestCase(TestSdk): | |||
| def test_create_dataset(self): | |||
| assert ragflow.ragflow.RAGFLow('123', 'url').create_dataset('abc') == 'abc' | |||
| def test_delete_dataset(self): | |||
| assert ragflow.ragflow.RAGFLow('123', 'url').delete_dataset('abc') == 'abc' | |||