File size: 1,260 Bytes
7dfbe6a
 
 
 
 
 
 
 
d912ffc
 
 
 
 
 
 
7dfbe6a
 
 
 
 
 
 
 
 
 
 
d912ffc
 
 
 
 
 
 
7dfbe6a
 
 
 
d912ffc
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
28
29
30
31
32
33
34
35
36
37
38
tools = [
    {
        "type": "function",
        "function": {
            "name": "transfer_call",
            "description": "Transfer call to a human, only do this if the user insists on it.",
            "parameters": {
                "type": "object",
                "properties": {
                    "reason": {
                        "type": "string",
                        "description": "Reason for transferring the call"
                    }
                },
                "required": ["reason"]
            },
            "say": "Transferring your call, please wait."
        }
    },    
    {
        "type": "function",
        "function": {
            "name": "end_call",
            "description": "End the current call but always ask for confirmation unless its a natural place in the conversation (and your intent is fullfilled) to end the call.",
            "parameters": {
                "type": "object",
                "properties": {
                    "reason": {
                        "type": "string",
                        "description": "Reason for ending the call"
                    }
                },
                "required": ["reason"]
            },
            "say": "Goodbye."
        }
    }
]