gradio-app / gradio

Build and share delightful machine learning apps, all in Python. 🌟 Star to support our work!
http://www.gradio.app
Apache License 2.0
30.56k stars 2.27k forks source link

Time out error while running gradio app #8568

Closed CharulataShelar closed 1 week ago

CharulataShelar commented 1 week ago

Describe the bug

Hi Team,

I have started getting error on gradio launch() function. which was working till last week. It has started giving timeout error now. Just to replicate the issue, I have tried the demo code and I was able to replicate the issue.

FYI, installed gradio version : 4.36.1

import gradio as gr

def greet(name, intensity):
    return "Hello, " + name + "!" * int(intensity)

demo = gr.Interface(
    fn=greet,
    inputs=["text", "slider"],
    outputs=["text"],
)

demo.launch(share=True)
Screenshot 2024-06-17 at 11 48 15 AM

Have you searched existing issues? 🔎

Reproduction

import gradio as gr

def greet(name, intensity):
    return "Hello, " + name + "!" * int(intensity)

demo = gr.Interface(
    fn=greet,
    inputs=["text", "slider"],
    outputs=["text"],
)

demo.launch(share=True)

Screenshot

No response

Logs

No response

System Info

Running above code in jupyter notebook from google colab.

Severity

Blocking usage of gradio

mzh045 commented 1 week ago

Maybe you should check if it works on the local interface, because the shareLink server is down again https://status.gradio.app/793595809

PrayushiFaldu commented 1 week ago

Yes I am also facing similar issue.

jostjerome commented 1 week ago

hello, I have same issue in my side from this morning.

universetao commented 1 week ago

I have same issue too

jostjerome commented 1 week ago

hello again, seems solved in my side .

PrayushiFaldu commented 1 week ago

Yes, resolved on my side as well.

CharulataShelar commented 1 week ago

It is working now for me as well. Thanks!