File size: 3,702 Bytes
d8d14f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# Prompts
DYNAMIC_STOP_PROMPT = """

Now, when you 99% sure you have completed the task, you may follow the instructions below to escape the autonomous loop.

When you have finished the task from the Human, output a special token: <DONE>
This will enable you to leave the autonomous loop.
"""


# Make it able to handle multi input tools
DYNAMICAL_TOOL_USAGE = """
You have access to the following tools:
Output a JSON object with the following structure to use the tools

commands: {
    "tools": {
        tool1: "search_api",
        "params": {
            "query": "What is the weather in New York?",
            "description": "Get the weather in New York"
        }
        "tool2: "weather_api",
        "params": {
            "query": "What is the weather in Silicon Valley",
        }
        "tool3: "rapid_api",
        "params": {
            "query": "Use the rapid api to get the weather in Silicon Valley",
        }
    }
}

"""


########### FEW SHOT EXAMPLES ################
SCENARIOS = """
commands: {
    "tools": {
        tool1: "function",
        "params": {
            "input": "inputs",
            "tool1": "inputs"
        }
        "tool2: "tool_name",
        "params": {
            "parameter": "inputs",
            "tool1": "inputs"
        }
        "tool3: "tool_name",
        "params": {
            "tool1": "inputs",
            "tool1": "inputs"
        }
    }
}

"""


def tool_sop_prompt() -> str:
    return """


    You've been granted tools to assist users by always providing outputs in JSON format for tool usage. 
    Whenever a tool usage is required, you must output the JSON wrapped inside markdown for clarity. 
    Provide a commentary on the tool usage and the user's request and ensure that the JSON output adheres to the tool's schema.
    
    Here are some rules:
    Do not ever use tools that do not have JSON schemas attached to them.
    Do not use tools that you have not been granted access to.
    Do not use tools that are not relevant to the task at hand.
    Do not use tools that are not relevant to the user's request.
    
    
    Here are the guidelines you must follow:

    1. **Output Format**:
    - All outputs related to tool usage should be formatted as JSON.
    - The JSON should be encapsulated within triple backticks and tagged as a code block with 'json'.

    2. **Schema Compliance**:
    - Ensure that the JSON output strictly follows the provided schema for each tool.
    - Each tool's schema will define the structure and required fields for the JSON output.

    3. **Schema Example**:
    If a tool named `example_tool` with a schema requires `param1` and `param2`, your response should look like:
    ```json
    {
        "type": "function",
        "function": {
        "name": "example_tool",
        "parameters": {
            "param1": 123,
            "param2": "example_value"
        }
        }
    }
    ```

    4. **Error Handling**:
    - If there is an error or the information provided by the user is insufficient to generate a valid JSON, respond with an appropriate error message in JSON format, also encapsulated in markdown.

    Remember, clarity and adherence to the schema are paramount. Your primary goal is to ensure the user receives well-structured JSON outputs that align with the tool's requirements.

    ---

    Here is the format you should always follow for your responses involving tool usage:

    ```json
    {
    "type": "function",
    "function": {
        "name": "<tool_name>",
        "parameters": {
            "param1": "<value1>",
            "param2": "<value2>"
        }
    }
    }
    ```

    Please proceed with your task accordingly.

    """