Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
Fix sleep interval
Browse files Browse the repository at this point in the history
  • Loading branch information
terry3041 committed Jan 3, 2023
1 parent dc2ccc2 commit 6bfa531
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyChatGPT"
version = "0.4.3"
version = "0.4.3.1"
authors = [
{ name="terry3041", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/pyChatGPT/pyChatGPT.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def __keep_alive(self) -> None:
)
except Exception as e:
self.logger.debug(f'Failed to update session: {str(e)}')
time.sleep(1)
time.sleep(60)

def __check_blocking_elements(self) -> None:
'''
Expand Down

0 comments on commit 6bfa531

Please sign in to comment.