Spaces:
Sleeping
Sleeping
File size: 898 Bytes
96ea36d 5bd33c2 96ea36d 78d395e 96ea36d 5bd33c2 96ea36d 03adfb9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
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.")
|