Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
Update beebot (#281)
Browse files Browse the repository at this point in the history
Co-authored-by: Silen Naihin <[email protected]>
  • Loading branch information
erik-megarad and SilenNaihin authored Aug 9, 2023
1 parent fef76b1 commit f7ea78b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ jobs:
elif [ "$AGENT_NAME" == "beebot" ]; then
poetry install
poetry run playwright install
uvicorn beebot.initiator.api:create_app --reload &
poetry run uvicorn beebot.initiator.api:create_app --reload &
prefix="poetry run "
elif [ "$AGENT_NAME" == "PolyGPT" ]; then
cp .env.template .env
Expand Down
2 changes: 1 addition & 1 deletion agent/beebot
Submodule beebot updated 43 files
+20 −20 beebot/api/routes.py
+3 −1 beebot/api/websocket.py
+75 −77 beebot/body/body.py
+6 −13 beebot/body/body_state_machine.py
+1 −0 beebot/config/config.py
+30 −29 beebot/config/database_file_manager.py
+19 −13 beebot/decider/decider.py
+0 −8 beebot/decider/decision.py
+3 −0 beebot/execution/__init__.py
+0 −0 beebot/execution/background_process.py
+198 −0 beebot/execution/execution_path.py
+10 −4 beebot/execution/executor.py
+81 −0 beebot/execution/step.py
+1 −1 beebot/executor/__init__.py
+0 −8 beebot/executor/observation.py
+18 −6 beebot/function_selection/function_selection_prompt.py
+2 −1 beebot/function_selection/utils.py
+0 −3 beebot/memory/__init__.py
+0 −75 beebot/memory/memory.py
+0 −152 beebot/memory/memory_chain.py
+14 −6 beebot/models/__init__.py
+70 −22 beebot/models/database_models.py
+0 −0 beebot/overseer/__init__.py
+6 −0 beebot/overseer/overseeing_prompt.py
+52 −0 beebot/overseer/overseer.py
+0 −2 beebot/packs/__init__.py
+2 −0 beebot/packs/acquire_more_functions.py
+3 −1 beebot/packs/delegate_task.py
+0 −38 beebot/packs/encyclopedia.py
+6 −2 beebot/packs/execute_python_file.py
+3 −4 beebot/packs/execute_python_file_in_background.py
+2 −13 beebot/packs/exit.py
+3 −2 beebot/packs/install_python_package.py
+0 −7 beebot/planner/plan.py
+7 −12 beebot/planner/planner.py
+24 −38 docs/architecture.md
+48 −11 migrations/20230717_01_initial_schema.sql
+1 −3 tests/end_to_end/test_background_python.py
+1 −5 tests/end_to_end/test_capital_retrieval.py
+0 −2 tests/end_to_end/test_history.py
+2 −6 tests/end_to_end/test_revenue_lookup.py
+1 −5 tests/end_to_end/test_system_basic_cycle.py
+2 −4 tests/end_to_end/test_webserver.py

0 comments on commit f7ea78b

Please sign in to comment.