Skip to content

Commit 3e81f25

Browse files
authored
fix (#1169)
1 parent 5dbe2bc commit 3e81f25

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

patchwork/common/tools/code_edit_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class CodeEditTool(Tool, tool_name="code_edit_tool"):
1111
def __init__(self, path: Path | str):
1212
super().__init__()
13-
self.repo_path = Path(path)
13+
self.repo_path = Path(path).resolve()
1414
self.modified_files = set()
1515

1616
@property

patchwork/steps/AgenticLLM/typed.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55

66

77
class AgenticLLMInputs(TypedDict, total=False):
8+
base_path: str
89
prompt_value: Dict[str, Any]
910
system_prompt: str
1011
user_prompt: str
1112
max_llm_calls: Annotated[int, StepTypeConfig(is_config=True)]
12-
model_args: Annotated[str, StepTypeConfig(is_config=True)]
13-
client_args: Annotated[str, StepTypeConfig(is_config=True)]
1413
openai_api_key: Annotated[
1514
str, StepTypeConfig(is_config=True, or_op=["patched_api_key", "google_api_key", "anthropic_api_key"])
1615
]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "patchwork-cli"
3-
version = "0.0.89"
3+
version = "0.0.90"
44
description = ""
55
authors = ["patched.codes"]
66
license = "AGPL"

0 commit comments

Comments
 (0)