Skip to content

Commit

Permalink
Update backend/app/llms.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hwchase17 authored Feb 14, 2024
1 parent 6840c85 commit 6219e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/llms.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

@lru_cache(maxsize=4)
def get_openai_llm(gpt_4: bool = False, azure: bool = False):
proxy_url = os.environ["PROXY_URLS"]
proxy_url = os.environ["PROXY_URL"]
if proxy_url is not None or proxy_url != "":
http_client = httpx.AsyncClient(proxies=proxy_url)
else:
Expand Down

0 comments on commit 6219e8b

Please sign in to comment.