Spaces:
Runtime error
Runtime error
Update run.py
Browse files
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, "
|
| 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()
|