Skip to content

Commit 334fef0

Browse files
committed
[feature-fix] adding gpt-4o option to arguments
Signed-off-by: ltn18 <nguyentamhoanglam@gmail.com>
1 parent b441123 commit 334fef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def run(args):
4242

4343
def parse_args():
4444
args = argparse.ArgumentParser()
45-
args.add_argument('--backend', type=str, choices=['gpt-4', 'gpt-3.5-turbo'], default='gpt-4')
45+
args.add_argument('--backend', type=str, choices=['gpt-4', 'gpt-3.5-turbo', 'gpt-4o'], default='gpt-4')
4646
args.add_argument('--temperature', type=float, default=0.7)
4747

4848
args.add_argument('--task', type=str, required=True, choices=['game24', 'text', 'crosswords'])

0 commit comments

Comments
 (0)