Skip to content

Commit

Permalink
Changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
pziecina-nv committed May 30, 2023
1 parent 060bb4a commit b197f0c
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,25 @@ limitations under the License.

## Unreleased

- Add support for using custom HTTP/gRPC requests headers and parameters.
- This change breaks the backward compatibility of inference function signature
(now undecorated inference function accepts list of Request instances instead
of list of dictionaries - Request class contains data for inputs and parameters
for combined parameters and headers).
Current non-decorated inference function signature is:
```python
def infer_fn(requests: List[Request]) -> List[Dict[str, np.ndarray]]:
...
```
For details see [docs/infrence_callable.md](docs/infrence_callable.md).
- See [docs/custom_params.md](docs/custom_params.md) for more details.
- Display documentation link after models are loaded
-

[//]: <> (put here on external component update with short summary what change or link to changelog)

- Version of [Triton Inference Server](https://github.com/triton-inference-server/) embedded in wheel: [2.33.0](https://github.com/triton-inference-server/server/releases/tag/v2.33.0)

## 0.2.0 (2023-05-30)

- Added support for using custom HTTP/gRPC request headers and parameters.

This change breaks backward compatibility of the inference function signature.
The undecorated inference function now accepts a list of `Request` instances instead
of a list of dictionaries. The `Request` class contains data for inputs and parameters
for combined parameters and headers.

See [docs/custom_params.md](docs/custom_params.md) for further information

- Added `FuturesModelClient` which enables sending inference requests in a parallel manner.
- Added displaying documentation link after models are loaded.

[//]: <> (put here on external component update with short summary what change or link to changelog)

Expand Down

0 comments on commit b197f0c

Please sign in to comment.