Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
piEsposito committed Jun 5, 2024
1 parent ce2f778 commit 4a30cf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tiny-ai-client"
version = "0.0.4"
version = "0.0.5"
description = "Tiny AI client for LLMs. As simple as it gets."
authors = ["piEsposito <[email protected]>"]
license = "Apache 2.0"
Expand Down
3 changes: 2 additions & 1 deletion tiny_ai_client/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def __init__(
self.temperature: int = temperature
self.max_new_tokens: int | None = max_new_tokens
self.timeout: int = timeout
self.tools = tools or []
tools = tools or []
self.tools = tools
self.tools_dict = {tool.__name__: tool for tool in tools}

self.model_name: str = model_name
Expand Down

0 comments on commit 4a30cf7

Please sign in to comment.