docs : readme image

This commit is contained in:
martin legrand 2025-03-27 12:46:47 +01:00
parent 2f78d033ab
commit a7d2beabe0
7 changed files with 6 additions and 10 deletions

View File

@ -10,22 +10,18 @@
![alt text](./media/whale_readme.jpg)
> *Do a web search to find tech startup in Japan working on cutting edge AI research*
> *Do a deep search of AI startup in Osaka and Tokyo, find at least 5, then save in the research_japan.txt file*
> *Can you make a tetris game in C ?*
> *Can you find where is contract.pdf*?
> *I would like to setup a new project file index as mark2.*
### Browse the web
### Do a deep web search
![alt text](./media/exemples/search_startup.png)
![alt text](./media/exemples/startup_search.png)
### Code hand free
![alt text](./media/exemples/matmul_golang.png)
### Plan and execute with agents (Experimental)
### Make a weather app
![alt text](./media/exemples/plan_weather_app.png)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 520 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 366 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

View File

@ -227,7 +227,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)[:20] # 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: