Robert Brennan

Results 1267 comments of Robert Brennan

> Totally, I should have specified this is for server : frontend communication. The server (or perhaps agent) should spin up a Selenium instance. The HTML is sent from Selenium...

I have a first pass at a websocket API here: https://github.com/OpenDevin/OpenDevin/pull/97 The client opens a websocket, and then client and server pass messages JSON messages back and forth. Both client...

I think we can close this one now

Partly fixed in: https://github.com/OpenDevin/OpenDevin/pull/185

This should be solved as of https://github.com/OpenDevin/OpenDevin/pull/863 If not let us know!

0.3.1 is the last known stable image. main is not stable--we are constantly merging changes there. I will try and cut a new stable release soon.

@dagelf we have an `LLM_MODEL` for running OpenDevin programatically (i.e. `python opendevin/main.py`), but we don't encourage setting that for running the full application. Which model did you choose in the...

Ah I didn't realize we were just exposing the `completion_cost` function directly from LiteLLM. What I'd suggest is adding a new function to the LLM class in llm.py: ``` def...