Skip to content

Commit

Permalink
Add AccessMode.Protected
Browse files Browse the repository at this point in the history
  • Loading branch information
olokobayusuf committed Sep 24, 2023
1 parent f12d83c commit 5b80750
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## 0.0.23
*INCOMPLETE*
+ Added `AccessMode.Protected` enumeration member for working with protected predictors.
+ Added `pydantic` as an explicit dependency.

## 0.0.22
+ Added `Prediction.stream` method for creating streaming predictions.
Expand Down
1 change: 1 addition & 0 deletions fxn/api/predictor.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ class AccessMode (str, Enum):
"""
Public = "PUBLIC"
Private = "PRIVATE"
Protected = "PROTECTED"

class PredictorType (str, Enum):
"""
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ pillow
requests
rich
typer
pydantic
pytest
pytest_asyncio
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"filetype",
"numpy",
"pillow",
"pydantic",
"requests",
"rich",
"typer"
Expand Down

0 comments on commit 5b80750

Please sign in to comment.