Spaces:
Sleeping
Sleeping
import time | |
import argparse | |
import utils | |
import pipeline | |
parser = argparse.ArgumentParser() | |
parser.add_argument('-f', '--full', action='store_true', help='Go through the full process') | |
parser.add_argument('--input-text', type=str, default='', help='input text or text file') | |
parser.add_argument('--session-id', type=str, default='', help='session id, if set to empty, system will allocate an id') | |
args = parser.parse_args() | |
if args.full: | |
input_text = args.input_text | |
start_time = time.time() | |
session_id = pipeline.init_session(args.session_id) | |
api_key = utils.get_api_key() | |
assert api_key != None, "Please set your openai_key in the environment variable." | |
print(f"Session {session_id} is created.") | |
pipeline.full_steps(session_id, input_text, api_key) | |
end_time = time.time() | |
print(f"WavJourney took {end_time - start_time:.2f} seconds to complete.") | |