Skip to content

Commit

Permalink
bump to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
IBMC265 committed Oct 4, 2024
1 parent 5343475 commit fd6c5aa
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/atomic/WebAgent.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main():

web_agent = agent_manager.get_agent(web_agent_config)

task = "search dining table on google"
task = "search dining table, and scrape the search result page"
result = web_agent.execute(task)
print("Web Agent Result:", result)

Expand Down
2 changes: 1 addition & 1 deletion examples/composite/research/WebBrowsingResearchAgent.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def main():
agent = agent_manager.get_agent(agent_config)

# # # Example usage
task = "first search dining table from google home page, then summarize what you did into summary.md"
task = "first search dining table from google home page, then summarize the search result into summary.md"
result = agent.execute(task)
print("Agent Result:", result)

Expand Down
4 changes: 2 additions & 2 deletions litemultiagent/tools/web_agent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from litewebagent.agents.webagent import setup_function_calling_web_agent
from litewebagent.core.agent_factory import setup_function_calling_web_agent

from litemultiagent.tools.registry import Tool

Expand All @@ -13,7 +13,7 @@ def call_webagent(starting_url, goal):
storage_state = None

agent = setup_function_calling_web_agent(starting_url, goal, model_name=model, agent_type=agent_type, features=features,
tool_names=["navigation", "select_option", "upload_file"], branching_factor=branching_factor, log_folder=log_folder, storage_state=storage_state)
tool_names=["navigation", "select_option", "upload_file", "webscraping"], branching_factor=branching_factor, log_folder=log_folder, storage_state=storage_state)
response = agent.send_prompt(plan)
print(response)
print(agent.messages)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ sqlalchemy==2.0.30
pypdf==4.3.1
litellm==1.42.1
langchain-community==0.2.7
litewebagent==0.1.6
litewebagent==0.1.7
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='litemultiagent',
version='0.1.4',
version='0.1.5',
packages=find_packages(),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit fd6c5aa

Please sign in to comment.