-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update API and tool version * Update API and tool version in Tool object
- Loading branch information
1 parent
9e234cb
commit 28a69de
Showing
4 changed files
with
12 additions
and
9 deletions.
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
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
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
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 |
---|---|---|
|
@@ -12,15 +12,15 @@ def get_tool(): # noqa: E501 | |
""" | ||
tool = Tool( | ||
name="phi-deidentifier", | ||
version="1.0.0", | ||
version="1.0.1", | ||
license=License.APACHE_2_0, | ||
repository="github:nlpsandbox/phi-deidentifier", | ||
description="NLP Sandbox PHI Deidentifier", | ||
description="Example implementation of the NLP Sandbox PHI Deidentifier", # noqa: E501 | ||
author="The NLP Sandbox Team", | ||
author_email="[email protected]", | ||
url="https://github.com/nlpsandbox/phi-deidentifier", | ||
tool_type="nlpsandbox:phi-deidentifier", | ||
tool_api_version="1.0.0" | ||
tool_api_version="1.0.1" | ||
) | ||
return tool, 200 | ||
|
||
|