fix: ensure save_conversation_path ends with a slash and add tests for conversation logging #570
+86
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fix: #305
This pull request introduces changes to handle the
save_conversation_path
more robustly in theAgent
class and adds tests to ensure the functionality works as expected. The most important changes include modifying the initialization of thesave_conversation_path
attribute, updating the documentation to reflect the new behavior, and adding comprehensive tests.Changes to
save_conversation_path
handling:browser_use/agent/service.py
: Added logic to ensure thesave_conversation_path
ends with a slash if it is not a file path.Documentation updates:
docs/customize/agent-settings.mdx
: Updated the example to use a directory path forsave_conversation_path
instead of a file path.Added tests:
tests/test_save_conversation.py
: Added tests to verify thesave_conversation_path
functionality, including cases with and without slashes and deep directory structures.