Update app.py
Browse files
app.py
CHANGED
@@ -9,8 +9,6 @@ from deep_translator import GoogleTranslator
|
|
9 |
app = Flask(__name__)
|
10 |
|
11 |
API_URL = "https://api-inference.huggingface.co/models/CompVis/stable-diffusion-v1-4"
|
12 |
-
API_TOKEN = os.getenv("HF_READ_TOKEN")
|
13 |
-
headers = {"Authorization": f"Bearer {API_TOKEN}"}
|
14 |
timeout = 300 # タイムアウトを300秒に設定
|
15 |
|
16 |
# Function to query the API and return the generated image
|
|
|
9 |
app = Flask(__name__)
|
10 |
|
11 |
API_URL = "https://api-inference.huggingface.co/models/CompVis/stable-diffusion-v1-4"
|
|
|
|
|
12 |
timeout = 300 # タイムアウトを300秒に設定
|
13 |
|
14 |
# Function to query the API and return the generated image
|