Update neural.py
This commit is contained in:
parent
e402eca257
commit
ede9bb28bb
1 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@ async def Generate(prompt, channel, count=2, negativePrompt = "",size="square"):
|
||||||
"content-type":
|
"content-type":
|
||||||
"application/json",
|
"application/json",
|
||||||
"authorization":
|
"authorization":
|
||||||
os.environ['neural']
|
os.environ['NEURAL']
|
||||||
}
|
}
|
||||||
response = requests.post(url, json=payload, headers=headers)
|
response = requests.post(url, json=payload, headers=headers)
|
||||||
data = response.json()
|
data = response.json()
|
||||||
|
@ -54,7 +54,7 @@ async def Generate(prompt, channel, count=2, negativePrompt = "",size="square"):
|
||||||
"accept":
|
"accept":
|
||||||
"application/json",
|
"application/json",
|
||||||
"authorization":
|
"authorization":
|
||||||
os.environ['neural']
|
os.environ['NEURAL']
|
||||||
}
|
}
|
||||||
count = 0
|
count = 0
|
||||||
while True:
|
while True:
|
||||||
|
|
Loading…
Reference in a new issue