ERP-system / erp_core /Tools /project_management.py
sarwarshafee8709809365's picture
deployment-1
c8e458d
raw
history blame contribute delete
382 Bytes
from langchain_core.tools import tool
@tool
def project_status_check(project_name: str, status: str) -> str:
"""Check the status of a project."""
return {
"dialog_state": ["Project_Management"],
"messages": [
{
"type": "text",
"content": f"The status of {project_name} is {status}."
}
]
}