We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a136b4f + b187384 commit 2b6e286Copy full SHA for 2b6e286
tokencost/constants.py
@@ -34,7 +34,7 @@ async def fetch_costs():
34
Raises:
35
Exception: If the request fails.
36
"""
37
- async with aiohttp.ClientSession() as session:
+ async with aiohttp.ClientSession(trust_env=True) as session:
38
async with session.get(PRICES_URL) as response:
39
if response.status == 200:
40
return await response.json(content_type=None)
0 commit comments