Skip to content

Commit

Permalink
Removed obsolete TypeVars
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Nov 13, 2024
1 parent 5279921 commit 6322040
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions llm/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
List,
Optional,
Set,
TypeVar,
Union,
)
from .utils import mimetype_from_path, mimetype_from_string
Expand All @@ -25,13 +24,6 @@
from pydantic import BaseModel
from ulid import ULID

ModelT = TypeVar("ModelT", bound=Union["Model", "AsyncModel"])
ConversationT = TypeVar(
"ConversationT", bound=Optional[Union["Conversation", "AsyncConversation"]]
)
ResponseT = TypeVar("ResponseT")


CONVERSATION_NAME_LENGTH = 32


Expand Down

0 comments on commit 6322040

Please sign in to comment.