diff --git a/.gitignore b/.gitignore index 5a2675b..5369222 100644 --- a/.gitignore +++ b/.gitignore @@ -9,10 +9,12 @@ test_agent.py config.ini .voices/ experimental/ +.logs/ .screenshots/*.png .screenshots/*.jpg conversations/ agentic_env/* +agentic_seek_env/* .env */.env dsk/ diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index b112ad0..5d48eb5 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -254,7 +254,7 @@ def execute_modules(self, answer: str) -> Tuple[bool, str]: ## 1. Agent selection logic
-
+
The agent selection is done in 4 steps: @@ -271,7 +271,7 @@ The agent selection is done in 4 steps: ### File/Code agents
-
+
The File and Code agents operate similarly: when a prompt is submitted, they initiate a loop between the LLM and a code interpreter. This loop continues executing commands or code until the execution is successful or the maximum number of attempts is reached. @@ -279,7 +279,7 @@ The File and Code agents operate similarly: when a prompt is submitted, they ini ### Web agent
-
+
The Web agent controls a Selenium-driven browser. Upon receiving a query, it begins by generating an optimized search prompt and executing the web_search tool. It then enters a navigation loop, during which it: diff --git a/media/technical/code_agent.png b/docs/technical/code_agent.png similarity index 100% rename from media/technical/code_agent.png rename to docs/technical/code_agent.png diff --git a/media/technical/diagram_overall.png b/docs/technical/diagram_overall.png similarity index 100% rename from media/technical/diagram_overall.png rename to docs/technical/diagram_overall.png diff --git a/media/technical/routing_system.png b/docs/technical/routing_system.png similarity index 100% rename from media/technical/routing_system.png rename to docs/technical/routing_system.png diff --git a/media/technical/web_agent.png b/docs/technical/web_agent.png similarity index 100% rename from media/technical/web_agent.png rename to docs/technical/web_agent.png diff --git a/media/examples/planner.png b/media/examples/planner.png deleted file mode 100644 index 850045d..0000000 Binary files a/media/examples/planner.png and /dev/null differ diff --git a/media/examples/pong.png b/media/examples/pong.png deleted file mode 100644 index 45860ee..0000000 Binary files a/media/examples/pong.png and /dev/null differ diff --git a/media/whale_reame_old.jpg b/media/whale_reame_old.jpg deleted file mode 100644 index fc9c507..0000000 Binary files a/media/whale_reame_old.jpg and /dev/null differ