mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: Robert Brennan <accounts@rbren.io>
191 lines
5.8 KiB
Python
191 lines
5.8 KiB
Python
import asyncio
|
||
import logging
|
||
import sys
|
||
from typing import Type
|
||
from uuid import uuid4
|
||
|
||
from termcolor import colored
|
||
|
||
import openhands.agenthub # noqa F401 (we import this to get the agents registered)
|
||
from openhands import __version__
|
||
from openhands.controller import AgentController
|
||
from openhands.controller.agent import Agent
|
||
from openhands.core.config import (
|
||
get_parser,
|
||
load_app_config,
|
||
)
|
||
from openhands.core.logger import openhands_logger as logger
|
||
from openhands.core.loop import run_agent_until_done
|
||
from openhands.core.schema import AgentState
|
||
from openhands.events import EventSource, EventStream, EventStreamSubscriber
|
||
from openhands.events.action import (
|
||
Action,
|
||
ChangeAgentStateAction,
|
||
CmdRunAction,
|
||
FileEditAction,
|
||
MessageAction,
|
||
)
|
||
from openhands.events.event import Event
|
||
from openhands.events.observation import (
|
||
AgentStateChangedObservation,
|
||
CmdOutputObservation,
|
||
FileEditObservation,
|
||
)
|
||
from openhands.llm.llm import LLM
|
||
from openhands.runtime import get_runtime_cls
|
||
from openhands.runtime.base import Runtime
|
||
from openhands.storage import get_file_store
|
||
|
||
|
||
def display_message(message: str):
|
||
print(colored('🤖 ' + message + '\n', 'yellow'))
|
||
|
||
|
||
def display_command(command: str):
|
||
print('❯ ' + colored(command + '\n', 'green'))
|
||
|
||
|
||
def display_command_output(output: str):
|
||
lines = output.split('\n')
|
||
for line in lines:
|
||
if line.startswith('[Python Interpreter') or line.startswith('openhands@'):
|
||
# TODO: clean this up once we clean up terminal output
|
||
continue
|
||
print(colored(line, 'blue'))
|
||
print('\n')
|
||
|
||
|
||
def display_file_edit(event: FileEditAction | FileEditObservation):
|
||
print(colored(str(event), 'green'))
|
||
|
||
|
||
def display_event(event: Event):
|
||
if isinstance(event, Action):
|
||
if hasattr(event, 'thought'):
|
||
display_message(event.thought)
|
||
if isinstance(event, MessageAction):
|
||
if event.source == EventSource.AGENT:
|
||
display_message(event.content)
|
||
if isinstance(event, CmdRunAction):
|
||
display_command(event.command)
|
||
if isinstance(event, CmdOutputObservation):
|
||
display_command_output(event.content)
|
||
if isinstance(event, FileEditAction):
|
||
display_file_edit(event)
|
||
if isinstance(event, FileEditObservation):
|
||
display_file_edit(event)
|
||
|
||
|
||
async def main():
|
||
"""Runs the agent in CLI mode"""
|
||
|
||
parser = get_parser()
|
||
# Add the version argument
|
||
parser.add_argument(
|
||
'-v',
|
||
'--version',
|
||
action='version',
|
||
version=f'{__version__}',
|
||
help='Show the version number and exit',
|
||
default=None,
|
||
)
|
||
args = parser.parse_args()
|
||
|
||
if args.version:
|
||
print(f'OpenHands version: {__version__}')
|
||
return
|
||
|
||
logger.setLevel(logging.WARNING)
|
||
config = load_app_config(config_file=args.config_file)
|
||
sid = 'cli'
|
||
|
||
agent_cls: Type[Agent] = Agent.get_cls(config.default_agent)
|
||
agent_config = config.get_agent_config(config.default_agent)
|
||
llm_config = config.get_llm_config_from_agent(config.default_agent)
|
||
agent = agent_cls(
|
||
llm=LLM(config=llm_config),
|
||
config=agent_config,
|
||
)
|
||
|
||
file_store = get_file_store(config.file_store, config.file_store_path)
|
||
event_stream = EventStream(sid, file_store)
|
||
|
||
runtime_cls = get_runtime_cls(config.runtime)
|
||
runtime: Runtime = runtime_cls( # noqa: F841
|
||
config=config,
|
||
event_stream=event_stream,
|
||
sid=sid,
|
||
plugins=agent_cls.sandbox_plugins,
|
||
headless_mode=True,
|
||
)
|
||
|
||
controller = AgentController(
|
||
agent=agent,
|
||
max_iterations=config.max_iterations,
|
||
max_budget_per_task=config.max_budget_per_task,
|
||
agent_to_llm_config=config.get_agent_to_llm_config_map(),
|
||
event_stream=event_stream,
|
||
)
|
||
|
||
async def prompt_for_next_task():
|
||
# Run input() in a thread pool to avoid blocking the event loop
|
||
loop = asyncio.get_event_loop()
|
||
next_message = await loop.run_in_executor(
|
||
None, lambda: input('How can I help? >> ')
|
||
)
|
||
if not next_message.strip():
|
||
await prompt_for_next_task()
|
||
if next_message == 'exit':
|
||
event_stream.add_event(
|
||
ChangeAgentStateAction(AgentState.STOPPED), EventSource.ENVIRONMENT
|
||
)
|
||
return
|
||
action = MessageAction(content=next_message)
|
||
event_stream.add_event(action, EventSource.USER)
|
||
|
||
async def on_event(event: Event):
|
||
display_event(event)
|
||
if isinstance(event, AgentStateChangedObservation):
|
||
if event.agent_state in [
|
||
AgentState.AWAITING_USER_INPUT,
|
||
AgentState.FINISHED,
|
||
]:
|
||
await prompt_for_next_task()
|
||
|
||
event_stream.subscribe(EventStreamSubscriber.MAIN, on_event, str(uuid4()))
|
||
|
||
await runtime.connect()
|
||
|
||
asyncio.create_task(prompt_for_next_task())
|
||
|
||
await run_agent_until_done(
|
||
controller, runtime, [AgentState.STOPPED, AgentState.ERROR]
|
||
)
|
||
|
||
|
||
if __name__ == '__main__':
|
||
loop = asyncio.new_event_loop()
|
||
asyncio.set_event_loop(loop)
|
||
try:
|
||
loop.run_until_complete(main())
|
||
except KeyboardInterrupt:
|
||
print('Received keyboard interrupt, shutting down...')
|
||
except ConnectionRefusedError as e:
|
||
print(f'Connection refused: {e}')
|
||
sys.exit(1)
|
||
except Exception as e:
|
||
print(f'An error occurred: {e}')
|
||
sys.exit(1)
|
||
finally:
|
||
try:
|
||
# Cancel all running tasks
|
||
pending = asyncio.all_tasks(loop)
|
||
for task in pending:
|
||
task.cancel()
|
||
# Wait for all tasks to complete with a timeout
|
||
loop.run_until_complete(asyncio.gather(*pending, return_exceptions=True))
|
||
loop.close()
|
||
except Exception as e:
|
||
print(f'Error during cleanup: {e}')
|
||
sys.exit(1)
|