File size: 665 Bytes
c8e458d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from langchain_core.tools import tool

@tool
def employee_database_access(user_info: str):
    """Access the employee database."""
    return {
        "dialog_state": ["Human_Resource"],
        "messages": [
            {
                "type": "text",
                "content": "Accessing the employee database"
            }
        ]
    }

@tool
def leave_management(user_info: str):
    """Enter the leave management department."""
    return {
        "dialog_state": ["Human_Resource"],
        "messages": [
            {
                "type": "text",
                "content": "Entering the leave management department"
            }
        ]
    }