Skip to content
Merged
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 src/codegen/extensions/tools/create_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def create_file(codebase: Codebase, filepath: str, content: str = "") -> CreateF
if codebase.has_file(filepath):
return CreateFileObservation(
status="error",
error=f"File already exists: {filepath}",
error=f"File already exists: {filepath}, please use view_file to see the file content or realace_edit to edit it directly",
filepath=filepath,
file_info=ViewFileObservation(
status="error",
Expand Down
Loading