Files
presentator/imagesGeneration.py

7 lines
224 B
Python
Raw Normal View History

2023-01-12 21:44:14 +01:00
import requests
import os
async def generate(prompt,path):
r = requests.get(f"http://localhost:8000/generate_image?prompt={prompt}&path={path}")
return r.json()
#print the current working directory
print(os.getcwd())