Spaces:
Runtime error
Runtime error
Merge pull request #17 from Riezebos/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 |
-
|
| 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()
|