932ce4c
1
2
3
4
5
6
7
8
9
10
11
12
from gradio_client import Client client = Client("GaborToth2/chat") result = client.predict( message="Hello!!", system_message="You are a friendly Chatbot.", max_tokens=4, temperature=0.7, top_p=0.95, api_name="/chat" ) print(result)