diff --git a/README.md b/README.md index 34cde6d..b914500 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ > *Do a web search to find tech startup in Japan working on cutting edge AI research* -> *Make a tetris game in C ?* +> *Can you make a tetris game in C ?* > *Can you find where is contract.pdf*? diff --git a/sources/agents/browser_agent.py b/sources/agents/browser_agent.py index cec1485..487f65b 100644 --- a/sources/agents/browser_agent.py +++ b/sources/agents/browser_agent.py @@ -224,7 +224,7 @@ class BrowserAgent(Agent): return ai_prompt, "" animate_thinking(f"Searching...", color="status") search_result_raw = self.tools["web_search"].execute([ai_prompt], False) - search_result = self.jsonify_search_results(search_result_raw)[:7] # until futher improvement + search_result = self.jsonify_search_results(search_result_raw)[:12] # until futher improvement prompt = self.make_newsearch_prompt(user_prompt, search_result) unvisited = [None] while not complete: