Skip to content

Commit

Permalink
Merge pull request #46 from ai-forever/dev
Browse files Browse the repository at this point in the history
Prepare for new release
  • Loading branch information
labdmitriy authored Nov 15, 2024
2 parents b6b3952 + 96561fd commit 4d20a10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 = "gigachat"
version = "0.1.35"
version = "0.1.36"
description = "GigaChat. Python-library for GigaChain and LangChain"
authors = ["Konstantin Krestnikov <[email protected]>", "Sergey Malyshev <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions src/gigachat/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def _update_token(self) -> None:
password=self._settings.password,
)
)
_logger.info("UPDATE TOKEN")
_logger.debug("UPDATE TOKEN")

def get_token(self) -> AccessToken:
self._update_token()
Expand Down Expand Up @@ -347,7 +347,7 @@ async def _aupdate_token(self) -> None:
password=self._settings.password,
)
)
_logger.info("UPDATE TOKEN")
_logger.debug("UPDATE TOKEN")

async def aget_token(self) -> AccessToken:
await self._aupdate_token()
Expand Down

0 comments on commit 4d20a10

Please sign in to comment.