@@ -504,12 +504,6 @@ class QueryLogsByGroupQueryLog(BaseModel):
504504 itself.
505505 """
506506
507- non_triggered_deterministic_guardrail_ids : Optional [List [str ]] = None
508- """
509- UUIDs of deterministic guardrails that were checked but not triggered for this
510- query
511- """
512-
513507 original_assistant_response : Optional [str ] = None
514508 """The original assistant response that would have been displayed to the user.
515509
@@ -544,9 +538,6 @@ class QueryLogsByGroupQueryLog(BaseModel):
544538 If not provided, it is assumed no tools were provided to the LLM.
545539 """
546540
547- triggered_deterministic_guardrail_ids : Optional [List [str ]] = None
548- """UUIDs of deterministic guardrails that were triggered for this query"""
549-
550541
551542class QueryLogsByGroup (BaseModel ):
552543 query_logs : List [QueryLogsByGroupQueryLog ]
@@ -581,12 +572,6 @@ class Filters(BaseModel):
581572 needs_review : Optional [bool ] = None
582573 """Filter logs that need review"""
583574
584- non_triggered_deterministic_guardrail_ids : Optional [List [str ]] = None
585- """
586- Filter logs where ANY of these deterministic guardrail IDs were checked but not
587- triggered (OR operation)
588- """
589-
590575 passed_evals : Optional [List [str ]] = None
591576 """Filter by evals that passed"""
592577
@@ -604,12 +589,6 @@ class Filters(BaseModel):
604589 tool_call_names : Optional [List [str ]] = None
605590 """Filter by names of tools called in the assistant response"""
606591
607- triggered_deterministic_guardrail_ids : Optional [List [str ]] = None
608- """
609- Filter logs where ANY of these deterministic guardrail IDs were triggered (OR
610- operation)
611- """
612-
613592 was_cache_hit : Optional [bool ] = None
614593 """Filter by cache hit status"""
615594
0 commit comments