AnyLlmClearResults

Clears the current search results.

python · Anything LLM

Details

IDAnyLlmClearResults
Languagepython
From Version6.10.0
Docker Imagedemisto/python3:3.12.8.3296088

README

Clears the current search results

Script Data


Name Description
Script Type python3

Inputs


There are no inputs for this script.

Outputs


There are no outputs for this script.

import demistomock as demisto  # noqa: F401
from CommonServerPython import *  # noqa: F401


def main():
    try:
        execute_command("setIncident", {"customFields": {"anythingllmsearchresults": ""}})
    except Exception as ex:
        demisto.error(traceback.format_exc())
        return_error(f"AnyLlmClearResults: error is - {ex}")


if __name__ in ("__main__", "__builtin__", "builtins"):
    main()