Skip to content

Commit 45e3fc8

Browse files
committed
Use GPT-4.1 as the default model
It seems to perform the best in accelerant, as compared to both 4o and the reasoning models. It also is the default for the OpenAI Agents SDK, probably for similar reasons.
1 parent 8acfdaa commit 45e3fc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

accelerant_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def route_optimize() -> str:
1818
filename = request.args.get("filename")
1919
lineno = request.args.get("line", type=int)
2020
perf_data_path = request.args.get("perfDataPath", type=Path)
21-
model_id = request.args.get("modelId", "o3-mini")
21+
model_id = request.args.get("modelId", "gpt-4.1")
2222

2323
if (filename is None or lineno is None) and perf_data_path is None:
2424
raise Exception(

0 commit comments

Comments
 (0)