GAIA-Langgraph / tools /code_tools.py
jash0803's picture
feat: langgraph agents
95bd81e
raw
history blame contribute delete
140 Bytes
from langchain_experimental.tools import PythonREPLTool
def get_code_tools():
python_repl = PythonREPLTool()
return [python_repl]