Skip to content

Commit

Permalink
Increase version number
Browse files Browse the repository at this point in the history
  • Loading branch information
basicthinker committed May 27, 2023
1 parent f631677 commit b68a842
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion devchat/openai/openai_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class OpenAIChatConfig(BaseModel):
frequency_penalty: Optional[float] = Field(None, ge=-2.0, le=2.0)
logit_bias: Optional[Dict[int, float]] = Field(None)
user: Optional[str] = Field(None)
request_timeout: Optional[int] = Field(12, ge=3)
request_timeout: Optional[int] = Field(15, ge=3)

class Config:
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def read_file(file_path):

setup(
name="devchat",
version="0.1.8",
version="0.1.9",
packages=find_packages(),
install_requires=requirements,
entry_points={
Expand Down

0 comments on commit b68a842

Please sign in to comment.