Spaces:
Build error
Build error
| 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) |