You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 20, 2025. It is now read-only.
inputTimeSeries is lo lowercase, but holoinsight-AI is uppercase
defbuild_req(self):
""" Builds and returns an AD request object based on the input body. @return: The built AD request object. """# Data processingts=self.body.get("InputTimeSeries")
print("ts:", ts)
detect_time=self.body.get("detectTime")
period=self.body.get("intervalTime")
data_by_data=self.data_process(ts, detect_time, period, detect_length=self.period_mapper(period))
# Detect informationalgorithm_type=self.body.get("algorithmConfig").get("algorithmType")
detect_info=DetectInfo(sensitive=self.body.get("algorithmConfig").get("sensitivity", "mid"),
algorithm_type=algorithm_type
)
# Rule informationifself.body.get("ruleConfig") isNone: