Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ensure save_conversation_path ends with a slash and add tests for conversation logging #570

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions browser_use/agent/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ def __init__(
self.use_vision = use_vision
self.llm = llm
self.save_conversation_path = save_conversation_path
if self.save_conversation_path and '/' not in self.save_conversation_path:
self.save_conversation_path = f'{self.save_conversation_path}/'
self.save_conversation_path_encoding = save_conversation_path_encoding
self._last_result = None
self.include_attributes = include_attributes
Expand Down
2 changes: 1 addition & 1 deletion docs/customize/agent-settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ agent = Agent(
llm=llm,
controller=custom_controller, # For custom tool calling
use_vision=True, # Enable vision capabilities
save_conversation_path="logs/conversation.json" # Save chat logs
save_conversation_path="logs/conversation" # Save chat logs
)
```

Expand Down
83 changes: 83 additions & 0 deletions tests/test_save_conversation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
"""
Simple try of the agent.

@dev You need to add OPENAI_API_KEY to your environment variables.
"""

import os
import shutil
import sys

from browser_use.browser.browser import Browser, BrowserConfig
from browser_use.browser.context import BrowserContext

sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

from langchain_openai import ChatOpenAI

from browser_use import Agent, AgentHistoryList

llm = ChatOpenAI(model='gpt-4o')


async def test_save_conversation_contains_slash():
if os.path.exists('./logs'):
shutil.rmtree('./logs')

agent = Agent(
task=('go to google.com and search for text "hi there"'),
llm=llm,
browser_context=BrowserContext(
browser=Browser(config=BrowserConfig(headless=False, disable_security=True)),
),
save_conversation_path='logs/conversation',
)
history: AgentHistoryList = await agent.run(20)

result = history.final_result()
assert result is not None

assert os.path.exists('./logs'), 'logs directory was not created'
assert os.path.exists('./logs/conversation_2.txt'), 'logs file was not created'


async def test_save_conversation_not_contains_slash():
if os.path.exists('./logs'):
shutil.rmtree('./logs')

agent = Agent(
task=('go to google.com and search for text "hi there"'),
llm=llm,
browser_context=BrowserContext(
browser=Browser(config=BrowserConfig(headless=False, disable_security=True)),
),
save_conversation_path='logs',
)
history: AgentHistoryList = await agent.run(20)

result = history.final_result()
assert result is not None

assert os.path.exists('./logs'), 'logs directory was not created'
assert os.path.exists('./logs/_2.txt'), 'logs file was not created'


async def test_save_conversation_deep_directory():
if os.path.exists('./logs'):
shutil.rmtree('./logs')

agent = Agent(
task=('go to google.com and search for text "hi there"'),
llm=llm,
browser_context=BrowserContext(
browser=Browser(config=BrowserConfig(headless=False, disable_security=True)),
),
save_conversation_path='logs/deep/directory/conversation',
)
history: AgentHistoryList = await agent.run(20)

result = history.final_result()
assert result is not None

assert os.path.exists('./logs/deep/directory'), 'logs directory was not created'
assert os.path.exists('./logs/deep/directory/conversation_2.txt'), 'logs file was not created'