mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 17:02:15 +01:00
7 lines
192 B
PHP
7 lines
192 B
PHP
<?php
|
|
|
|
$Client = PyCore::import('gradio_client')->Client;
|
|
$client = $Client("http://192.168.1.146:8088/");
|
|
$result = $client->predict("Hello!!", api_name: "/predict");
|
|
PyCore::print($result);
|