gpt4 book ai didi

Python规则引擎: Durable Rules JSON Rule Format to Support NOT operator

转载 作者:太空宇宙 更新时间:2023-11-03 20:26:44 35 4
gpt4 key购买 nike

我正在利用 engine.Host 类创建自己的规则引擎实例,并通过 JSON 文件加载规则并调用 set_rulesets() 方法。这一切都运行良好。

持久规则:https://pypi.org/project/durable-rules/

但是,对于我的规则之一,我需要进行否定。我不确定语法。否定另一个子句的正确方法是什么?例如,考虑以下规则:

"r_1": {
"all": [
{"first": {"condition": "foo"}},
{"second": {
"$and": [
{"id": {"first": "id"}},
{"condition": "bar"}
]
}},
{"third": {
"$and": [
{"id": {"second": "id"}},
{"condition": "cat"}
]
}}
],
"run": "rule_fired"
}

我如何取条件的 NOT(第三个),例如,

第一和第二而不是第三

谢谢鲍登

最佳答案

durable-rules 不支持一元逻辑运算符。要否定第三个表达式,您可以使用 &neq$or

{
"r_0": {
"all": [
{ "first": { "condition": "foo" }},
{ "second": {
"$and": [
{ "id": { "first": "id"}},
{ "condition": "bar"}
]
}
},
{ "third": {
"$or": [
{ "$neq": {"id": {"second": "id"}}},
{ "$neq": {"condition": "cat"}}
]
}
}
]
}
}

关于Python规则引擎: Durable Rules JSON Rule Format to Support NOT operator,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57762604/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com