Compare commits

...

3 Commits

Author SHA1 Message Date
openhands 51d1a993fb Revert "Add RecallActions and observations for retrieval of prompt extensions (#6909)"
This reverts commit cc45f5d9c3.
2025-03-16 02:51:57 +00:00
Engel Nyst cc45f5d9c3 Add RecallActions and observations for retrieval of prompt extensions (#6909)
Co-authored-by: openhands <openhands@all-hands.dev>
Co-authored-by: Calvin Smith <email@cjsmith.io>
2025-03-15 21:48:37 +01:00
tofarr e34a771e66 Fix for issue where initial command fails (#7254) 2025-03-14 14:49:57 -06:00
2 changed files with 2 additions and 2 deletions
@@ -1,6 +1,6 @@
{% if repository_info %}
<REPOSITORY_INFO>
At the user's request, repository {{ repository_info.repo_name }} has been cloned to directory {{ repository_info.repo_directory }}.
At the user's request, repository {{ repository_info.repo_name }} has been cloned to the current working directory {{ repository_info.repo_directory }}.
</REPOSITORY_INFO>
{% endif %}
{% if repository_instructions -%}
+1 -1
View File
@@ -117,7 +117,7 @@ def test_prompt_manager_template_rendering(prompt_dir):
msg_content: str = initial_msg.content[0].text
assert '<REPOSITORY_INFO>' in msg_content
assert (
"At the user's request, repository owner/repo has been cloned to directory /workspace/repo."
"At the user's request, repository owner/repo has been cloned to the current working directory /workspace/repo."
in msg_content
)
assert '</REPOSITORY_INFO>' in msg_content