File size: 259 Bytes
b37c16f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from gradio_client import Client

username = "1bitchatbotdemo"
password = "hopeyoulikeit"

client = Client("xmadai/1bit-xmad-demo-wu", auth=[username, password])
result = client.predict(
    message="what is huggingface",
    api_name="/chat"
)
print(result)