Skip to content

Commit 46bd143

Browse files
committed
more error logging
1 parent f65215f commit 46bd143

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 = "tacho"
3-
version = "0.8.3"
3+
version = "0.8.4"
44
description = "CLI tool for measuring and comparing LLM inference speeds"
55
readme = "README.md"
66
authors = [

tacho/ai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ async def ping_model(model: str, console) -> bool:
5656
)
5757
return False
5858
except Exception as e:
59-
console.print(f"[red]✗[/red] {model} - {str(e)[:100]}")
59+
console.print(f"[red]✗[/red] {model} - {str(e)[:200]}")
6060
return False
6161

6262

0 commit comments

Comments
 (0)