Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -7,8 +7,6 @@ from tqdm import tqdm
|
|
7 |
import time
|
8 |
import cairosvg
|
9 |
|
10 |
-
|
11 |
-
|
12 |
# Defining the repository information and the trigger word
|
13 |
repo = "artificialguybr/LineAniRedmond-LinearMangaSDXL-V2"
|
14 |
trigger_word = "lineart,LineAniAF,"
|
@@ -29,9 +27,11 @@ constraints = (
|
|
29 |
def generate_image(prompt):
|
30 |
print("Generating image with prompt:", prompt)
|
31 |
api_url = f"https://api-inference.huggingface.co/models/{repo}"
|
32 |
-
token = os.getenv("
|
|
|
|
|
33 |
headers = {
|
34 |
-
|
35 |
}
|
36 |
|
37 |
# Incorporate the hard set prompt and constraints
|
|
|
7 |
import time
|
8 |
import cairosvg
|
9 |
|
|
|
|
|
10 |
# Defining the repository information and the trigger word
|
11 |
repo = "artificialguybr/LineAniRedmond-LinearMangaSDXL-V2"
|
12 |
trigger_word = "lineart,LineAniAF,"
|
|
|
27 |
def generate_image(prompt):
|
28 |
print("Generating image with prompt:", prompt)
|
29 |
api_url = f"https://api-inference.huggingface.co/models/{repo}"
|
30 |
+
token = os.getenv("API_TOKEN") # Fetch from environment
|
31 |
+
if not token:
|
32 |
+
raise ValueError("API_TOKEN environment variable is not set.")
|
33 |
headers = {
|
34 |
+
"Authorization": f"Bearer {token}"
|
35 |
}
|
36 |
|
37 |
# Incorporate the hard set prompt and constraints
|