Riezebos commited on
Commit
b46ce58
·
unverified ·
1 Parent(s): 03003a2

Add launch cli

Browse files
pyproject.toml CHANGED
@@ -5,7 +5,7 @@ description = "Build datasets using natural language"
5
  authors = [
6
  {name = "davidberenstein1957", email = "[email protected]"},
7
  ]
8
- tags = [
9
  "gradio",
10
  "synthetic-data",
11
  "huggingface",
 
5
  authors = [
6
  {name = "davidberenstein1957", email = "[email protected]"},
7
  ]
8
+ keywords = [
9
  "gradio",
10
  "synthetic-data",
11
  "huggingface",
src/synthetic_dataset_generator/__main__.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ if __name__ == "__main__":
2
+ from synthetic_dataset_generator import launch
3
+
4
+ launch()