Skip to content

Commit

Permalink
🐛 Bug: Fix the bug where httpx.AsyncClient still passes in proxies wh…
Browse files Browse the repository at this point in the history
…en no proxy exists.
  • Loading branch information
yym68686 committed Dec 3, 2024
1 parent c60d75a commit bb7a44d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="modelmerge",
version="0.11.63",
version="1.0.0",
description="modelmerge is a multi-large language model API aggregator.",
long_description=Path.open(Path("README.md"), encoding="utf-8").read(),
long_description_content_type="text/markdown",
Expand Down
1 change: 0 additions & 1 deletion src/ModelMerge/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ def __init__(
else:
self.aclient = httpx.AsyncClient(
follow_redirects=True,
proxies=proxy,
timeout=timeout,
)

Expand Down

0 comments on commit bb7a44d

Please sign in to comment.