File size: 455 Bytes
4b9b1c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## Python

from gradio_client import Client

client = Client("tensorgirl/Restaurant-Chatbot")
result = client.predict(
		"Hello!!",	# str  in 'Message' Textbox component
		api_name="/chat"
)
print(result)

## Javascript
import { client } from "@gradio/client";

const app = await client("tensorgirl/Restaurant-Chatbot");
const result = await app.predict("/chat", [		
				"Hello!!", // string  in 'Message' Textbox component
	]);

console.log(result.data);