Server working with agent library (#97)

* server working with agent library

* update readme

* add messages to events

* factor out steps

* fix websocket messages

* allow user to run arbitrary actions

* allow user to run commands before a task is started

* fix main.py

* check JSON

* handle errors in controller better

* fix memory issue

* better error handling and task cancellation

* fix monologue len

* fix imports

* remove server from lint check

* fix lint issues

* fix lint errors
This commit is contained in:
Robert Brennan
2024-03-24 10:24:44 -04:00
committed by GitHub
parent fb1822123a
commit 4aa24eb41d
14 changed files with 242 additions and 252 deletions

View File

@@ -29,6 +29,6 @@ jobs:
- name: Install dependencies
run: pip install ruff mypy types-requests
- name: Run ruff
run: ruff check --config dev_config/python/ruff.toml opendevin/ server/ agenthub/
run: ruff check --config dev_config/python/ruff.toml opendevin/ agenthub/
- name: Run mypy
run: mypy --config-file dev_config/python/mypy.ini opendevin/ server/ agenthub/
run: mypy --config-file dev_config/python/mypy.ini opendevin/ agenthub/