Relative Content

Tag Archive for gradio

Gradio Multiple audios in sequence

I am building a gradio app to play multiple audio files in sequence with a delay of 2 seconds. I am using stop listener in a way that when one audio file ends, Stop listener gets triggered and another audio file start playing in autoplay mode.
The issue is, it stops working after second audio file and doesn’t give any error or exception. ChatGPT refers using javascript code.

How Do I properly get the correct description of an image using gradio_client? and LLaVa?

Describe the issue Issue: I’m trying to use the gradio_client python library to run LLaVa Command: from gradio_client import Client, file imagePath = “”# a path to an image on your computer, or a url to an image client = Client(“https://llava.hliu.cc/”) job = client.submit(“what image is this, file(imagePath), “Crop”, api_name=”/add_text”) return(job.result())# it returns a tuple, […]