Spaces:
Running
Running
File size: 382 Bytes
c8e458d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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}."
}
]
}
|