davidberenstein1957 HF staff commited on
Commit
b6646ba
1 Parent(s): 4892ee6

fix non-existent import

Browse files
app.py CHANGED
@@ -1,8 +1,3 @@
1
- import os
2
-
3
  from synthetic_dataset_generator import launch
4
 
5
- os.environ["BASE_URL"] = "http://localhost:11434"
6
- os.environ["MODEL"] = "llama3.1"
7
-
8
  launch()
 
 
 
1
  from synthetic_dataset_generator import launch
2
 
 
 
 
3
  launch()
src/synthetic_dataset_generator/__init__.py CHANGED
@@ -4,7 +4,6 @@ from gradio import TabbedInterface
4
 
5
  from synthetic_dataset_generator import ( # noqa
6
  _distiset,
7
- _inference_client,
8
  _inference_endpoints,
9
  )
10
 
 
4
 
5
  from synthetic_dataset_generator import ( # noqa
6
  _distiset,
 
7
  _inference_endpoints,
8
  )
9