Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Futuresony
/
Mr.Events
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Futuresony
commited on
16 days ago
Commit
0946874
·
verified
·
1 Parent(s):
9c0f969
Create api py
Browse files
Files changed (1)
hide
show
api py
+8
-0
api py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
from gradio_client import Client
2
+
3
+
client = Client("Futuresony/Mr.Events")
4
+
result = client.predict(
5
+
query="Hello!!",
6
+
api_name="/chat"
7
+
)
8
+
print(result)