Skip to content

Commit d81cbdb

Browse files
authored
feat: near relace url (#716)
# Motivation <!-- Why is this change necessary? --> # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed
1 parent 90a83c6 commit d81cbdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codegen/extensions/tools/relace_edit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def apply_relace_edit(api_key: str, initial_code: str, edit_snippet: str, stream
9090
Raises:
9191
Exception: If the API request fails
9292
"""
93-
url = "https://instantapply.endpoint.relace.run/v1/code/apply"
93+
url = "https://codegen-instantapply.dev-endpoint.relace.run/v1/code/apply"
9494
headers = {"Content-Type": "application/json", "Authorization": f"Bearer {api_key}"}
9595

9696
data = {"initialCode": initial_code, "editSnippet": edit_snippet, "stream": stream}

0 commit comments

Comments
 (0)