mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
fix(vector-stores): import assert_never from typing_extensions for Python 3.10
This commit is contained in:
parent
f823d9ae0d
commit
6499ca349f
1 changed files with 3 additions and 1 deletions
|
|
@ -7,7 +7,9 @@ It searches the vector store for relevant context and appends it to the messages
|
|||
|
||||
from collections.abc import Awaitable, Callable, Mapping, Sequence
|
||||
from dataclasses import dataclass
|
||||
from typing import TYPE_CHECKING, Any, Final, Protocol, assert_never, cast
|
||||
from typing import TYPE_CHECKING, Any, Final, Protocol, cast
|
||||
|
||||
from typing_extensions import assert_never
|
||||
|
||||
import litellm
|
||||
import litellm.vector_stores
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue