Skip to content

Commit 2b6e286

Browse files
authoredOct 17, 2024
Merge pull request #73 from caramdache/patch-1
Add support for proxy servers
2 parents a136b4f + b187384 commit 2b6e286

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tokencost/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async def fetch_costs():
3434
Raises:
3535
Exception: If the request fails.
3636
"""
37-
async with aiohttp.ClientSession() as session:
37+
async with aiohttp.ClientSession(trust_env=True) as session:
3838
async with session.get(PRICES_URL) as response:
3939
if response.status == 200:
4040
return await response.json(content_type=None)

0 commit comments

Comments
 (0)