Skip to content

Commit

Permalink
Version 9.11.0 (#242)
Browse files Browse the repository at this point in the history
* Version 9.11.0

* add app_templates support

* update CHANGELOG
  • Loading branch information
sainivedh authored Dec 11, 2023
1 parent 2ff3fb8 commit 36f1b6e
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 4 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## [[9.11.0]](https://github.com/Clarifai/clarifai-python/releases/tag/9.11.0) - [PyPI](https://pypi.org/project/clarifai/9.11.0/) - 2023-12-11

### Fixed
- CocoDetectionDataloader bug (#241)

### Changed
- Codeql Change (#241)
- Seperate tests requiring secrets (#233)
- SDK Pending tasks (#232)
- add retry for workflow predict
- add constants for max inputs count in predict
- change annotation proto to bbox
- add search to README.md
- Add CHANGELOG.md
- Updated runner logic with parallel and error catching (#238)
- Removing internal_only Training Params (#231)
- Remove pytest requirement (#225)
- Remove omegaconf requirement (#235)
- Update clarifai-grpc to 9.11.0

### Added
- Support multimodal inputs for inference (#239)
- Ensure support for Python 3.10-3.12 (#226)

## [[9.10.4]](https://github.com/Clarifai/clarifai-python/releases/tag/9.10.4) - [PyPI](https://pypi.org/project/clarifai/9.10.4/) - 2023-11-23

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.10.4
9.11.0
2 changes: 1 addition & 1 deletion clarifai/client/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def map_fn(v):
value = struct_pb2.Value(**value_map)
if key in ['created_at', 'modified_at', 'completed_at']:
value = self.convert_string_to_timestamp(value)
elif key in ['workflow_recommended']:
elif key in ['workflow_recommended', 'is_template']:
value = BoolValue(value=True)
elif key in ['fields_map', 'params']:
value_s = struct_pb2.Struct()
Expand Down
2 changes: 1 addition & 1 deletion clarifai/versions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

CLIENT_VERSION = "9.10.4"
CLIENT_VERSION = "9.11.0"
OS_VER = os.sys.platform
PYTHON_VERSION = '.'.join(
map(str, [os.sys.version_info.major, os.sys.version_info.minor, os.sys.version_info.micro]))
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
clarifai-grpc==9.10.0
clarifai-grpc==9.11.0
pandas>=1.3.5
numpy>=1.22.0
tqdm>=4.65.0
Expand Down

0 comments on commit 36f1b6e

Please sign in to comment.