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
raiseContextNotAvailableError("The LLM detected that the context is required to execute the query and the filter signature allows contextualization while the context was not provided.")
raiseContextualisationNotAllowed("The LLM detected that the context is required to execute the query while the filter signature does not allow it at all.")
134
133
135
-
if_does_arg_allow_context(arg_spec):
134
+
ifnot_does_arg_allow_context(arg_spec):
135
+
print(arg_spec)
136
136
raiseContextualisationNotAllowed(f"The LLM detected that the context is required to execute the query while the filter signature does allow it for `{arg_spec.name}` argument.")
raiseContextNotAvailableError(f"The LLM detected that the context is required to execute the query and the context object was provided but it is missing the `{arg_spec.name}` field.")
0 commit comments