Skip to content
Merged
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
2 changes: 1 addition & 1 deletion patchwork/common/tools/code_edit_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class CodeEditTool(Tool, tool_name="code_edit_tool"):
def __init__(self, path: Path | str):
super().__init__()
self.repo_path = Path(path)
self.repo_path = Path(path).resolve()
self.modified_files = set()

@property
Expand Down
3 changes: 1 addition & 2 deletions patchwork/steps/AgenticLLM/typed.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@


class AgenticLLMInputs(TypedDict, total=False):
base_path: str
prompt_value: Dict[str, Any]
system_prompt: str
user_prompt: str
max_llm_calls: Annotated[int, StepTypeConfig(is_config=True)]
model_args: Annotated[str, StepTypeConfig(is_config=True)]
client_args: Annotated[str, StepTypeConfig(is_config=True)]
openai_api_key: Annotated[
str, StepTypeConfig(is_config=True, or_op=["patched_api_key", "google_api_key", "anthropic_api_key"])
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "patchwork-cli"
version = "0.0.89"
version = "0.0.90"
description = ""
authors = ["patched.codes"]
license = "AGPL"
Expand Down
Loading