diff --git a/interpreter/interpreter.py b/interpreter/interpreter.py index b66c5af451..8fd823072d 100644 --- a/interpreter/interpreter.py +++ b/interpreter/interpreter.py @@ -114,7 +114,7 @@ def get_info_for_system_message(self): query = query[-2000:] # Use them to query Open Procedures - url = f"https://open-procedures.killianlucas1.repl.co/search/?query={query}" + url = f"https://open-procedures.replit.app/search/?query={query}" relevant_procedures = requests.get(url).json()["procedures"] info += "\n\n# Recommended Procedures\n" + "\n---\n".join(relevant_procedures) + "\nIn your plan, include steps and, if present, **EXACT CODE SNIPPETS** (especially for depracation notices, **WRITE THEM INTO YOUR PLAN -- underneath each numbered step** as they will VANISH once you execute your first line of code, so WRITE THEM DOWN NOW if you need them) from the above procedures if they are relevant to the task. Again, include **VERBATIM CODE SNIPPETS** from the procedures above if they are relevent to the task **directly in your plan.**"