chat / asd.py
GaborToth2's picture
reset to original
932ce4c
raw
history blame
246 Bytes
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)