Skip to content

Commit 5033d06

Browse files
committed
update changelog
1 parent 542af1b commit 5033d06

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### New features
1313

14+
* Adds vLLM support via a new `ChatVLLM` class. (#24)
15+
1416
### Bug fixes
1517

1618
* `ChatOllama` no longer fails when a `OPENAI_API_KEY` environment variable is not set.

chatlas/_vllm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ def __init__(
103103
self,
104104
base_url: str,
105105
model: str,
106-
seed: int | None,
107-
api_key: str | None,
106+
seed: Optional[int],
107+
api_key: Optional[str],
108108
kwargs: Optional["ChatClientArgs"],
109109
):
110110
self.base_url = base_url

0 commit comments

Comments
 (0)