Skip to content

Commit d502e66

Browse files
committed
nothing
1 parent 4abf904 commit d502e66

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

script.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
load_dotenv()
1111

1212
li_models = [
13-
"anthropic:claude-3-5-sonnet-20241022",
13+
"openai:gpt-4o-mini",
14+
"anthropic:claude-3-haiku-20240307",
1415
"openai:gpt-4o",
1516
"mistral:pixtral-12b-2409",
16-
"openai:gpt-4o-mini",
1717
]
1818

1919

@@ -39,8 +39,8 @@ def main(model_1: str, model_2: str, type_1: str = "vision", type_2: str = "visi
3939

4040

4141
if __name__ == "__main__":
42-
for i in range(20):
43-
for j in range(20):
42+
for i in range(3, 20):
43+
for j in range(0, 20):
4444
model_1 = li_models[i % len(li_models)]
4545
model_2 = li_models[j % len(li_models)]
4646
main(

0 commit comments

Comments
 (0)