mirrored a few seconds ago
0
yuanmengqifeat: enhance run_coact.py with logging and configuration options - Added logging configuration to capture runtime logs in both file and console with adjustable log levels. - Introduced new command-line arguments for provider name, region, and client password to improve flexibility and security. - Updated process_task function to accommodate new parameters, ensuring compatibility with existing logic. - Modified prompt templates in coding_agent.py and cua_agent.py to use the client password placeholder for enhanced security. 84f407a
from typing import Any, Callable, Optional
from desktop_env.desktop_env import DesktopEnv

from .autogen.llm_config import LLMConfig
from .autogen.code_utils import PYTHON_VARIANTS
from .autogen.agentchat.contrib.multimodal_conversable_agent import MultimodalConversableAgent


CODER_SYSTEM_MESSAGE = """# Your role
You are a coding assistant, you need to solve a task step-by-step given by the user. 
You can write code in ```bash...``` code blocks for bash scripts, and ```python...``` code blocks for python code. 

# Important notes
- Once you complete the task, reply ONLY with "TERMINATE" to end the task.
- DO NOT mix the TERMINATE with any other words or code blocks in your reply.
- When you write code, you must identify the language (whether it is python or bash) of the code.
- Your linux username is "user".
- Wrap all your code in ONE code block. DO NOT let user save the code as a file and execute it for you.
- If you want to use sudo, follow the format: "echo {CLIENT_PASSWORD} | sudo -S [YOUR COMMANDS]" (no quotes for the word "{CLIENT_PASSWORD}").
- Ignore the error: "sudo: /etc/sudoers.d is world writable".
- Your python code will be sent line-by-line into a interactive python terminal. Do not include __main__ in your code.
- When import a package, you need to check if the package is installed. If not, you need to install it yourself.
- You need to print the progressive and final result.
- If you met execution error, you need to analyze the error message and try to fix the error.
- IMPORTANT: If you modified a file like spreadsheet, you should close and reopen the file by operating the GUI, so that I can see what you changed.
"""

class TerminalProxyAgent(MultimodalConversableAgent):
    def __init__(
            self, 
        name: str, 
        env: DesktopEnv,
        llm_config: LLMConfig = False, 
        system_message: str = "",
        human_input_mode: str = "NEVER",
        code_execution_config = {},
        is_termination_msg: Optional[Callable[[dict[str, Any]], bool]] = None,
        max_consecutive_auto_reply: Optional[int] = None,
        default_auto_reply: Optional[str] = None,
        description: Optional[str] = None,
    ):
        super().__init__(
            name=name,
            system_message=system_message,
            is_termination_msg=is_termination_msg,
            max_consecutive_auto_reply=max_consecutive_auto_reply,
            human_input_mode=human_input_mode,
            code_execution_config=code_execution_config,
            llm_config=llm_config,
            default_auto_reply=default_auto_reply,
            description=description
        )
        self.env = env

    def run_code(self, code: str, lang: str = "python", **kwargs):
        exitcode = 1
        logs = ""
        image = None
        if lang in ["bash", "shell", "sh"]:
            output_dict = self.env.controller.run_bash_script(code)
            if output_dict["status"] == "success":
                exitcode = 0
                logs = output_dict["output"]
            else:
                exitcode = -1
                logs = output_dict["output"]
        elif lang in PYTHON_VARIANTS:
            output_dict = self.env.controller.run_python_script(code)
            if output_dict["status"] == "error":
                exitcode = -1
                logs = output_dict["output"]
            else:
                exitcode = -1
                logs = output_dict["message"]
        else:
            exitcode = -1
            logs = f"unknown language {lang}"
        return exitcode, logs, image