Files
OpenHands/opendevin/server/session.py
Yufan Song 2def49e794 add (#355)
Co-authored-by: Robert Brennan <accounts@rbren.io>
2024-03-29 15:33:02 -04:00

129 lines
5.3 KiB
Python

import asyncio
import os
from typing import Optional
from fastapi import WebSocketDisconnect
from opendevin import config
from opendevin.action import (
Action,
NullAction,
)
from opendevin.observation import NullObservation
from opendevin.agent import Agent
from opendevin.controller import AgentController
from opendevin.llm.llm import LLM
from opendevin.observation import Observation, UserMessageObservation
DEFAULT_API_KEY = config.get_or_none("LLM_API_KEY")
DEFAULT_BASE_URL = config.get_or_none("LLM_BASE_URL")
DEFAULT_WORKSPACE_DIR = config.get_or_default("WORKSPACE_DIR", os.path.join(os.getcwd(), "workspace"))
LLM_MODEL = config.get_or_default("LLM_MODEL", "gpt-4-0125-preview")
class Session:
def __init__(self, websocket):
self.websocket = websocket
self.controller: Optional[AgentController] = None
self.agent: Optional[Agent] = None
self.agent_task = None
asyncio.create_task(self.create_controller(), name="create controller") # FIXME: starting the docker container synchronously causes a websocket error...
async def send_error(self, message):
await self.send({"error": True, "message": message})
async def send_message(self, message):
await self.send({"message": message})
async def send(self, data):
if self.websocket is None:
return
try:
await self.websocket.send_json(data)
except Exception as e:
print("Error sending data to client", e)
async def start_listening(self):
try:
while True:
try:
data = await self.websocket.receive_json()
except ValueError:
await self.send_error("Invalid JSON")
continue
action = data.get("action", None)
if action is None:
await self.send_error("Invalid event")
continue
if action == "initialize":
await self.create_controller(data)
elif action == "start":
await self.start_task(data)
else:
if self.controller is None:
await self.send_error("No agent started. Please wait a second...")
elif action == "chat":
self.controller.add_history(NullAction(), UserMessageObservation(data["message"]))
else:
# TODO: we only need to implement user message for now
# since even Devin does not support having the user taking other
# actions (e.g., edit files) while the agent is running
raise NotImplementedError
except WebSocketDisconnect as e:
self.websocket = None
if self.agent_task:
self.agent_task.cancel()
print("Client websocket disconnected", e)
async def create_controller(self, start_event=None):
directory = DEFAULT_WORKSPACE_DIR
if start_event and "directory" in start_event["args"]:
directory = start_event["args"]["directory"]
agent_cls = "LangchainsAgent"
if start_event and "agent_cls" in start_event["args"]:
agent_cls = start_event["args"]["agent_cls"]
model = LLM_MODEL
if start_event and "model" in start_event["args"]:
model = start_event["args"]["model"]
api_key = DEFAULT_API_KEY
if start_event and "api_key" in start_event["args"]:
api_key = start_event["args"]["api_key"]
api_base = DEFAULT_BASE_URL
if start_event and "api_base" in start_event["args"]:
api_base = start_event["args"]["api_base"]
if not os.path.exists(directory):
print(f"Workspace directory {directory} does not exist. Creating it...")
os.makedirs(directory)
directory = os.path.relpath(directory, os.getcwd())
llm = LLM(model=model, api_key=api_key, base_url=api_base)
AgentCls = Agent.get_cls(agent_cls)
self.agent = AgentCls(llm)
try:
self.controller = AgentController(self.agent, workdir=directory, callbacks=[self.on_agent_event])
except Exception:
print("Error creating controller.")
await self.send_error("Error creating controller. Please check Docker is running using `docker ps`.")
return
await self.send({"action": "initialize", "message": "Control loop started."})
async def start_task(self, start_event):
if "task" not in start_event["args"]:
await self.send_error("No task specified")
return
await self.send_message("Starting new task...")
task = start_event["args"]["task"]
if self.controller is None:
await self.send_error("No agent started. Please wait a second...")
return
self.agent_task = asyncio.create_task(self.controller.start_loop(task), name="agent loop")
def on_agent_event(self, event: Observation | Action):
if isinstance(event, NullAction):
return
if isinstance(event, NullObservation):
return
event_dict = event.to_dict()
asyncio.create_task(self.send(event_dict), name="send event in callback")