-
Notifications
You must be signed in to change notification settings - Fork 9
Add swe-bench test - Not to run in regular PRs #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
65f0273
Add swe-bench test - Not to run in regular PRs
0xba1a ddc3995
Backup
0xba1a a6ca5f3
Revert "Add summarize_context capability for allowing LLM to maintain…
0xba1a e8abe13
Backup
0xba1a 8f97992
Add swe-bench test
0xba1a 0f6956d
Add selective swe-bench test case
0xba1a f1eb169
Update claude model name
0xba1a 00ebce6
Disable check of model name
0xba1a 2700bd0
Remove log based tests
0xba1a File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,66 @@ | ||
| openai==1.107.3 | ||
| aiohappyeyeballs==2.6.1 | ||
| aiohttp==3.12.15 | ||
| aiosignal==1.4.0 | ||
| annotated-types==0.7.0 | ||
| anthropic==0.75.0 | ||
| python-dotenv==1.1.1 | ||
| anyio==4.10.0 | ||
| attrs==25.3.0 | ||
| bashlex==0.18 | ||
| certifi==2025.8.3 | ||
| charset-normalizer==3.4.3 | ||
| click==8.3.0 | ||
| coverage==7.11.3 | ||
| datasets==4.5.0 | ||
| dill==0.4.0 | ||
| distro==1.9.0 | ||
| docker==7.1.0 | ||
| docstring_parser==0.17.0 | ||
| fastapi==0.116.1 | ||
| uvicorn==0.35.0 | ||
| filelock==3.20.3 | ||
| frozenlist==1.7.0 | ||
| fsspec==2025.10.0 | ||
| h11==0.16.0 | ||
| hf-xet==1.2.0 | ||
| httpcore==1.0.9 | ||
| httpx==0.28.1 | ||
| huggingface_hub==1.3.2 | ||
| idna==3.10 | ||
| iniconfig==2.1.0 | ||
| jiter==0.11.0 | ||
| markdown-it-py==4.0.0 | ||
| mdurl==0.1.2 | ||
| multidict==6.6.4 | ||
| multiprocess==0.70.18 | ||
| numpy==1.26.4 | ||
| openai==1.107.3 | ||
| packaging==25.0 | ||
| pandas==3.0.0 | ||
| pexpect==4.9.0 | ||
| pluggy==1.6.0 | ||
| propcache==0.3.2 | ||
| ptyprocess==0.7.0 | ||
| pyarrow==23.0.0 | ||
| pydantic==2.11.9 | ||
| pydantic_core==2.33.2 | ||
| Pygments==2.19.2 | ||
| pytest==8.4.2 | ||
| pytest-cov==7.0.0 | ||
| python-dateutil==2.9.0.post0 | ||
| python-dotenv==1.1.1 | ||
| python-multipart==0.0.20 | ||
| PyYAML==6.0.2 | ||
| requests==2.32.5 | ||
| rich==14.1.0 | ||
| shellingham==1.5.4 | ||
| six==1.17.0 | ||
| sniffio==1.3.1 | ||
| starlette==0.47.3 | ||
| swe-rex==1.4.0 | ||
| aiohttp==3.13.3 | ||
| pyyaml==6.0.2 | ||
| tqdm==4.67.1 | ||
| typer-slim==0.21.1 | ||
| typing-inspection==0.4.1 | ||
| typing_extensions==4.15.0 | ||
| urllib3==2.5.0 | ||
| uvicorn==0.35.0 | ||
| xxhash==3.6.0 | ||
| yarl==1.20.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LLMInterface.__init__was removed but_validate_llm_responsestill relies onself.retries,self.max_retries, andself.messages. This means any new subclass that forgets to manually initialize these will get an error at runtime, nothing in the interface signals they're required.Maybe its better to restore a base
__init__and have subclasses callsuper().__init__(). The only subclass-specific part is whethermessagesincludes a system prompt entry that can be handled after the super call by appending to messges in the subclass.This also removes the duplicated 3 lines in each subclass.