Skip to content

Commit 990dd07

Browse files
committed
Bypass reasoner_validator for now
1 parent d43bf77 commit 990dd07

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cohd/cohd_trapi_15.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ def _check_query_input(self):
127127

128128
# Use TRAPI Reasoner Validator to validate the query
129129
try:
130-
validate_trapi(self._json_data, "Query")
130+
# For now, bypass the TRAPI validation because reasoner_validator doesn't work with TRAPI 1.5
131+
# validate_trapi(self._json_data, "Query")
131132
self.log('Query passed reasoner validator')
132133
except ValidationError as err:
133134
self._valid_query = False

0 commit comments

Comments
 (0)