Spaces:
Running
on
Zero
Running
on
Zero
File size: 426 Bytes
2f9dda4 b6820a3 2f9dda4 7b68f20 2f9dda4 b6820a3 7b68f20 b6820a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import os
from gradio_client import Client, handle_file
HF_TOKEN = os.environ.get("HF_TOKEN")
# Create a client with authentication
client = Client(
"rootglitch/CarVizGradioDemo01",
hf_token=HF_TOKEN
)
result = client.predict(
input_image_path=handle_file('https://raw.githubusercontent.com/gradio-app/gradio/main/test/test_files/bus.png'),
prompt="Hello!!",
api_name="/generate_image"
)
print(result) |