amirgame197 commited on
Commit
62f3797
·
verified ·
1 Parent(s): 145f454

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,12 +4,12 @@ import random
4
  import sys
5
  import os
6
 
7
- def process(prompt):
8
  filename = str(random.randint(111111111, 999999999)) + ".png"
9
 
10
  file_path = os.path.join(os.path.dirname(__file__), filename)
11
 
12
- response = requests.get("https://image.pollinations.ai/prompt/" + prompt + ('.' * random.randint(0, 100)))
13
 
14
  if response.status_code == 200:
15
 
 
4
  import sys
5
  import os
6
 
7
+ def process(Prompt):
8
  filename = str(random.randint(111111111, 999999999)) + ".png"
9
 
10
  file_path = os.path.join(os.path.dirname(__file__), filename)
11
 
12
+ response = requests.get("https://image.pollinations.ai/prompt/" + Prompt + ('.' * random.randint(0, 100)))
13
 
14
  if response.status_code == 200:
15