Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions evaluation/benchmarks/swe_bench/run_infer.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ def get_config(
condenser=metadata.condenser_config,
enable_prompt_extensions=False,
model_routing=model_routing_config,
system_prompt_filename=metadata.agent_config.system_prompt_filename if metadata.agent_config else 'system_prompt.j2',
)
config.set_agent_config(agent_config)

Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,11 @@ lint.pydocstyle.convention = "google"

[tool.coverage.run]
concurrency = [ "gevent" ]

[tool.pyright]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sidefix: make vscode's language servers not crash under the load of eval logs in the default location.

exclude = [
"evaluation/evaluation_outputs/**",
"**/__pycache__",
"**/.git",
"**/node_modules"
]
Loading