-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doc fix for create detector #316
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6d99b15
Doc fix caught by Avi
brandon-groundlight f63b934
Automatically reformatting code
6ebf364
Nice catch
brandon-groundlight e7565f1
Merge branch 'doc_fix' of github.com:groundlight/python-sdk into doc_fix
brandon-groundlight 6536990
Add reStructureText links to create_detector docstring
brandon-groundlight 426e147
the VScode rewrap extension failed me
brandon-groundlight 2b7d947
Merge branch 'main' into doc_fix
brandon-groundlight File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,6 +207,7 @@ def _verify_connectivity(self) -> None: | |
f"Error connecting to Groundlight using API token '{self.api_token_prefix}...'" | ||
f" at endpoint '{self.endpoint}'. Endpoint might be invalid or unreachable? " | ||
"Check https://status.groundlight.ai/ for service status." | ||
f"Original Error was: {str(e)}" | ||
) | ||
raise GroundlightClientError(msg) from e | ||
|
||
|
@@ -361,6 +362,10 @@ def create_detector( # noqa: PLR0913 | |
""" | ||
Create a new Detector with a given name and query. | ||
|
||
Counting and Multiclass detectors are in Beta, and can be created through the | ||
ExperimentalApi via the :meth:`ExperimentalApi.create_counting_detector` and | ||
:meth:`ExperimentalApi.create_multiclass_detector` methods. | ||
|
||
**Example usage**:: | ||
|
||
gl = Groundlight() | ||
|
@@ -383,8 +388,8 @@ def create_detector( # noqa: PLR0913 | |
|
||
# Create a detector in a specific group | ||
detector = gl.create_detector( | ||
name="vehicle-counter", | ||
query="How many vehicles are in the parking lot?", | ||
name="vehicle-monitor", | ||
query="Are there vehicles are in the parking lot?", | ||
group_name="parking-monitoring", | ||
patience_time=60.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we want to include patience time in the example? Probably not right? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't see why not, we make it a legal parameter on the function |
||
) | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, this was going to go into a different PR but I accidentally got it here. Tom and Tim noticed that we should immediately return the error at this point
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Good change