dailingx commited on
Commit
0ae46c9
Β·
verified Β·
1 Parent(s): b479e99

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +1 -1
run.py CHANGED
@@ -35,7 +35,7 @@ def fetch_parquet(u, fname):
35
  file_name_without_extension = os.path.splitext(file_name)[0]
36
  gpt_4o_0621_tag = os.path.join(directory_name, "gpt-4o", "dev-20240621", file_name_without_extension+".txt")
37
  gpt_4o_0626_tag = os.path.join(directory_name, "gpt-4o", "dev-20240626", file_name_without_extension + ".txt")
38
- gemini_0626_tag = os.path.join(directory_name, "gpt-4o", "gemini-1.5-pro-latest", file_name_without_extension + ".txt")
39
  gpt_4o_0621_tag_cache = u.fetch_file(gpt_4o_0621_tag)
40
  with open(gpt_4o_0621_tag_cache, 'r') as file:
41
  auto_tag_content = auto_tag_content + file.read()
 
35
  file_name_without_extension = os.path.splitext(file_name)[0]
36
  gpt_4o_0621_tag = os.path.join(directory_name, "gpt-4o", "dev-20240621", file_name_without_extension+".txt")
37
  gpt_4o_0626_tag = os.path.join(directory_name, "gpt-4o", "dev-20240626", file_name_without_extension + ".txt")
38
+ gemini_0626_tag = os.path.join(directory_name, "gemini-1.5-pro-latest", "dev-20240626", file_name_without_extension + ".txt")
39
  gpt_4o_0621_tag_cache = u.fetch_file(gpt_4o_0621_tag)
40
  with open(gpt_4o_0621_tag_cache, 'r') as file:
41
  auto_tag_content = auto_tag_content + file.read()