mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
cfd27b1786
# Description: _python-lint_ This agent writes Python code that is formatted and linted using `black`, `ruff`, and `mypy`, but does not execute the code. It writes the code to a temporary file and then runs the linters. Once these checks pass, the code is returned. # Dependencies - black - ruff - mypy # Demo The functionality can be seen here: https://huggingface.co/spaces/joshuasundance/langchain-streamlit-demo
4 lines
84 B
Python
4 lines
84 B
Python
from python_lint.agent_executor import agent_executor
|
|
|
|
__all__ = ["agent_executor"]
|