chat / gradio_local.py
GaborToth2's picture
secret set on HF
6ea52a1
raw
history blame contribute delete
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)