Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Dec 18, 2024
1 parent 542af1b commit 5033d06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### New features

* Adds vLLM support via a new `ChatVLLM` class. (#24)

### Bug fixes

* `ChatOllama` no longer fails when a `OPENAI_API_KEY` environment variable is not set.
Expand Down
4 changes: 2 additions & 2 deletions chatlas/_vllm.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ def __init__(
self,
base_url: str,
model: str,
seed: int | None,
api_key: str | None,
seed: Optional[int],
api_key: Optional[str],
kwargs: Optional["ChatClientArgs"],
):
self.base_url = base_url
Expand Down

0 comments on commit 5033d06

Please sign in to comment.