feat(server): helpers endpoints for conversation format (#613)

* feat: add support for helpers conversation conversion endpoint

also correct schema generation for openllm client

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>

* chore: update clients to reuse `openllm-core` logics

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>

* chore: add changelog

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>

---------

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>
This commit is contained in:
Aaron Pham
2023-11-12 01:02:27 -05:00
committed by GitHub
parent 3afa204264
commit fad4186dbc
11 changed files with 160 additions and 143 deletions

View File

@@ -93,7 +93,7 @@ __all__ = ['generate_labels', 'available_devices', 'device_count']
def __dir__() -> t.Sequence[str]:
return sorted(__all__)
return sorted(__all__) + sorted(dir(openllm_core.utils))
def __getattr__(it: str) -> t.Any: