Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,6 @@
|
|
1 |
-
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
1 |
+
from huggingface_hub import InferenceClient
|
2 |
|
3 |
+
client = InferenceClient(
|
4 |
+
model="mo-thecreator/Deepfake-audio-detection",
|
5 |
+
token=os.getenv("HUGGINGFACEHUB_API_TOKEN")
|
6 |
+
)
|