Skip to content

Commit cda91ba

Browse files
committed
Modify the prompt since input_data= isn't required anymore
1 parent a4ebb66 commit cda91ba

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

patchwork/steps/ManageEngine/ManageEngineStep.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ def __init__(self, inputs: ManageEngineInputs):
2525
# Prepare system prompt with ManageEngine context
2626
system_prompt = inputs.get(
2727
"system_prompt",
28-
"""
29-
Please summarise the conversation given and provide the result in the structure that is asked of you.
30-
""",
28+
"Please summarise the conversation given and provide the result in the structure that is asked of you.",
3129
)
3230

3331
self.headers = {
@@ -60,8 +58,7 @@ def __init__(self, inputs: ManageEngineInputs):
6058
Skip the headers for the api requests as they are already provided.
6159
The base url for the ServiceDeskPlus API is https://sdpondemand.manageengine.com/app/itdesk/api/v3
6260
63-
For modifying or creating data, the data should be a json string which is prefixed with "input_data=".
64-
For example, if the data is {"example_key": "example_value"}, the data should be "input_data={\"example_key\": \"example_value\"}".
61+
For modifying or creating data, the data should be a json string.
6562
When you have the result of the information user requested, return the response of the final result tool as is.
6663
""",
6764
)

0 commit comments

Comments
 (0)