From d2f13b85d20904ca9654568f311edb3c4257bd52 Mon Sep 17 00:00:00 2001 From: codegen-bot Date: Thu, 13 Mar 2025 01:34:12 +0000 Subject: [PATCH] Update Relace Edit Tool URL from dev-endpoint to endpoint --- src/codegen/extensions/tools/relace_edit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codegen/extensions/tools/relace_edit.py b/src/codegen/extensions/tools/relace_edit.py index 57f700845..276a4c946 100644 --- a/src/codegen/extensions/tools/relace_edit.py +++ b/src/codegen/extensions/tools/relace_edit.py @@ -90,7 +90,7 @@ def apply_relace_edit(api_key: str, initial_code: str, edit_snippet: str, stream Raises: Exception: If the API request fails """ - url = "https://codegen-instantapply.dev-endpoint.relace.run/v1/code/apply" + url = "https://codegen-instantapply.endpoint.relace.run/v1/code/apply" headers = {"Content-Type": "application/json", "Authorization": f"Bearer {api_key}"} data = {"initialCode": initial_code, "editSnippet": edit_snippet, "stream": stream}