Skip to content

Commit 0a1970c

Browse files
committed
fix: version bump
Signed-off-by: Charlie Doern <cdoern@redhat.com>
1 parent d3ff740 commit 0a1970c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "llama_stack_client"
3-
version = "0.5.0-alpha.2"
3+
version = "0.6.1.dev0"
44
description = "The official Python library for the llama-stack-client API"
55
dynamic = ["readme"]
66
license = "MIT"

src/llama_stack_client/lib/cli/inference/inference.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@ def chat_completion(ctx, message: str, stream: bool, session: bool, model_id: Op
4141

4242
if not model_id:
4343
available_models = [
44-
model.id
45-
for model in client.models.list()
46-
if (model.custom_metadata or {}).get("model_type") == "llm"
44+
model.id for model in client.models.list() if (model.custom_metadata or {}).get("model_type") == "llm"
4745
]
4846
model_id = available_models[0]
4947

0 commit comments

Comments
 (0)