Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
9d2442a
feat(tools): add ApplyPatchTool implementing OpenAI cookbook apply_pa…
enyst Nov 14, 2025
c5a0836
chore(example): enable native tool calling (Responses API) for GPT-5.…
enyst Nov 14, 2025
fc86fa7
ApplyPatch: Responses API name-only tool spec; accept 'patch' alias; …
enyst Nov 14, 2025
3c429e1
ApplyPatch: accept 'patch' and expose minimal schema for Responses; f…
enyst Nov 14, 2025
772ce28
Responses: do not echo assistant function_call or reasoning items in …
enyst Nov 14, 2025
f08a048
Responses: include assistant function_call items but omit reasoning p…
enyst Nov 14, 2025
9ae743f
Docs(dev): ApplyPatch + OpenAI Responses integration notes
enyst Nov 14, 2025
02e67d3
Responses serialization: restore reasoning passthrough and keep assis…
enyst Nov 14, 2025
a00128b
Tests: add Responses pairing test for function_call and function_call…
enyst Nov 14, 2025
35e3be3
Examples+Docs: add FileEditor GPT-5.1 example and update ApplyPatch R…
enyst Nov 14, 2025
e910dbf
ApplyPatch: include text output so Responses gets function_call_outpu…
enyst Nov 14, 2025
6cd9639
Tests: add ApplyPatchExecutor tests for create/append/delete and path…
enyst Nov 14, 2025
e772cbb
Docs: update ApplyPatch Responses notes with paired tool output examp…
enyst Nov 14, 2025
0149040
Remove mistakenly committed FACTS.txt test artifact.
enyst Nov 14, 2025
e8978ad
ApplyPatch: drop patch_text alias; use canonical 'patch' name only ac…
enyst Nov 14, 2025
73f7f81
Docs: update ApplyPatch notes to canonicalize on 'patch' only; remove…
enyst Nov 14, 2025
fab4f3b
Revert openhands.sdk.llm.message to main branch version (comments-onl…
enyst Nov 14, 2025
db5b177
Example: simplify tool registration; add ApplyPatch like other tools …
enyst Nov 14, 2025
74f0d15
ApplyPatch: align create() return type to Sequence; add docstrings an…
enyst Nov 15, 2025
a7eed40
Merge branch 'main' into feat/apply-patch-tool-gpt5-1
enyst Nov 22, 2025
d1ce8f3
Delete docs/dev/apply_patch_responses_notes.md
enyst Nov 22, 2025
3078a95
Update examples/01_standalone_sdk/28_apply_patch_with_gpt5_1.py
enyst Nov 22, 2025
8691cec
Restore telemetry.py from main
enyst Nov 22, 2025
1f7e0af
Add apply_patch executor fuzz and error-path tests
enyst Nov 22, 2025
f4c54d2
Harden apply_patch missing-delete handling to DiffError
enyst Nov 22, 2025
dd6c7df
Clarify delete-missing-file test comment
enyst Nov 22, 2025
9dff45e
Add apply_patch multi-hunk and multi-file success tests
enyst Nov 22, 2025
99213f1
Enrich apply_patch gpt-5.1 example with multi-file/multi-hunk flow
enyst Nov 22, 2025
e59b3c4
Delete examples/01_standalone_sdk/29_file_editor_with_gpt5_1.py
enyst Nov 22, 2025
76c21e3
test: clarify apply_patch tmp workspace comment
enyst Nov 24, 2025
7fa1aab
test: move apply_patch executor tests into subpackage
enyst Nov 24, 2025
6c89fd4
feat(preset): use apply_patch by default for GPT-5 models
enyst Nov 24, 2025
5d99105
Merge branch 'main' into feat/apply-patch-tool-gpt5-1
enyst Nov 25, 2025
53f0301
Update allowed-model-stubs.json
enyst Nov 25, 2025
24da42f
Merge branch 'main' into feat/apply-patch-tool-gpt5-1
enyst Nov 25, 2025
9362ad9
Update .github/run-eval/allowed-model-stubs.json
enyst Nov 25, 2025
bd4d338
Update examples/01_standalone_sdk/28_apply_patch_with_gpt5_1.py
enyst Nov 28, 2025
a0e1070
chore(split): keep only ApplyPatch tool, LLM Responses formatter, and…
enyst Nov 29, 2025
adcb46d
Merge branch 'main' into feat/apply-patch-tool-gpt5-1
enyst Nov 29, 2025
be8e7c7
Delete examples/01_standalone_sdk/28_apply_patch_with_gpt5_1.py
enyst Nov 30, 2025
adffe6a
Merge branch 'main' into feat/apply-patch-tool-gpt5-1
enyst Nov 30, 2025
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
4 changes: 4 additions & 0 deletions openhands-tools/openhands/tools/apply_patch/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from .definition import ApplyPatchTool


__all__ = ["ApplyPatchTool"]
Loading
Loading