AI-academic / api_wrapper.py
Zhiming666's picture
Upload 157 files
0e072c0
raw
history blame
No virus
1.11 kB
'''
This script is used to wrap all generation methods together.
todo:
A worker keeps running on the server. Monitor the Amazon SQS. Once receive a new message, do the following:
Download the corresponding configuration files on S3.
Change Task status from Pending to Running.
Call `generator_wrapper` and wait for the outputs.
If `generator_wrapper` returns results:
evaluate the results; compile it; upload results to S3 ... Change Task status from Running to Completed.
If anything goes wrong, raise Error.
If `generator_wrapper` returns nothing or Timeout, or raise any error:
Change Task status from Running to Failed.
'''
from auto_backgrounds import generate_draft
import json
GENERATOR_MAPPING = {"draft": generate_draft}
def generator_wrapper(path_to_config_json):
# Read configuration file and call corresponding function
with open(path_to_config_json, "r", encoding='utf-8') as f:
config = json.load(f)
generator = GENERATOR_MAPPING.get(config["generator"])
if generator is None:
pass