2025-04-17 11:34:42 +08:00
|
|
|
# Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
2025-04-07 16:25:55 +08:00
|
|
|
import logging
|
|
|
|
|
from typing import Annotated
|
|
|
|
|
from langchain_core.tools import tool
|
|
|
|
|
from langchain_experimental.utilities import PythonREPL
|
|
|
|
|
from .decorators import log_io
|
|
|
|
|
|
|
|
|
|
# Initialize REPL and logger
|
|
|
|
|
repl = PythonREPL()
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@tool
|
|
|
|
|
@log_io
|
|
|
|
|
def python_repl_tool(
|
|
|
|
|
code: Annotated[
|
|
|
|
|
str, "The python code to execute to do further analysis or calculation."
|
|
|
|
|
],
|
|
|
|
|
):
|
|
|
|
|
"""Use this to execute python code and do data analysis or calculation. If you want to see the output of a value,
|
|
|
|
|
you should print it out with `print(...)`. This is visible to the user."""
|
|
|
|
|
if not isinstance(code, str):
|
|
|
|
|
error_msg = f"Invalid input: code must be a string, got {type(code)}"
|
|
|
|
|
logger.error(error_msg)
|
|
|
|
|
return f"Error executing code:\n```python\n{code}\n```\nError: {error_msg}"
|
|
|
|
|
|
|
|
|
|
logger.info("Executing Python code")
|
|
|
|
|
try:
|
|
|
|
|
result = repl.run(code)
|
|
|
|
|
# Check if the result is an error message by looking for typical error patterns
|
|
|
|
|
if isinstance(result, str) and ("Error" in result or "Exception" in result):
|
|
|
|
|
logger.error(result)
|
|
|
|
|
return f"Error executing code:\n```python\n{code}\n```\nError: {result}"
|
|
|
|
|
logger.info("Code execution successful")
|
|
|
|
|
except BaseException as e:
|
|
|
|
|
error_msg = repr(e)
|
|
|
|
|
logger.error(error_msg)
|
|
|
|
|
return f"Error executing code:\n```python\n{code}\n```\nError: {error_msg}"
|
|
|
|
|
|
|
|
|
|
result_str = f"Successfully executed:\n```python\n{code}\n```\nStdout: {result}"
|
|
|
|
|
return result_str
|