mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
rename get_async_httpx_client
This commit is contained in:
parent
1e8cf9f2a6
commit
d4b9a1307d
13 changed files with 27 additions and 27 deletions
|
@ -1242,8 +1242,8 @@ class QdrantSemanticCache(BaseCache):
|
|||
import os
|
||||
|
||||
from litellm.llms.custom_httpx.http_handler import (
|
||||
_get_async_httpx_client,
|
||||
_get_httpx_client,
|
||||
get_async_httpx_client,
|
||||
)
|
||||
|
||||
if collection_name is None:
|
||||
|
@ -1290,7 +1290,7 @@ class QdrantSemanticCache(BaseCache):
|
|||
self.headers = headers
|
||||
|
||||
self.sync_client = _get_httpx_client()
|
||||
self.async_client = _get_async_httpx_client()
|
||||
self.async_client = get_async_httpx_client()
|
||||
|
||||
if quantization_config is None:
|
||||
print_verbose(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue