Skip to content

Commit

Permalink
include confidence_threshold in submit_image_query params
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyEWood committed Dec 5, 2024
1 parent c29298a commit 9e316a5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/groundlight/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,9 @@ def submit_image_query( # noqa: PLR0913 # pylint: disable=too-many-arguments, t
if patience_time is not None:
params["patience_time"] = patience_time

if confidence_threshold is not None:
params["confidence_threshold"] = confidence_threshold

if human_review is not None:
params["human_review"] = human_review

Expand Down

0 comments on commit 9e316a5

Please sign in to comment.