DigiP-AI commited on
Commit
063ad80
·
verified ·
1 Parent(s): 3663604

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -16,7 +16,9 @@ from fastapi import FastAPI
16
 
17
  app = FastAPI()
18
 
19
- API_URL = "https://api-inference.huggingface.co/models/stabilityai/sdxl-turbo"
 
 
20
  API_TOKEN = os.getenv("HF_READ_TOKEN")
21
  headers = {"Authorization": f"Bearer {API_TOKEN}"}
22
  timeout = 100
 
16
 
17
  app = FastAPI()
18
 
19
+
20
+ API_URL = "https://api-inference.huggingface.co/models/stabilityai/stable-diffusion-3.5-large"
21
+
22
  API_TOKEN = os.getenv("HF_READ_TOKEN")
23
  headers = {"Authorization": f"Bearer {API_TOKEN}"}
24
  timeout = 100