mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-20 00:11:50 +00:00
typing_extensions Annotated
This commit is contained in:
parent
6702e492f5
commit
c6a9e8cafe
1 changed files with 2 additions and 13 deletions
|
|
@ -1,17 +1,6 @@
|
|||
from enum import Enum
|
||||
from os import PathLike
|
||||
from typing import (
|
||||
IO,
|
||||
Annotated,
|
||||
Any,
|
||||
Iterable,
|
||||
List,
|
||||
Literal,
|
||||
Mapping,
|
||||
Optional,
|
||||
Tuple,
|
||||
Union,
|
||||
)
|
||||
from typing import IO, Any, Iterable, List, Literal, Mapping, Optional, Tuple, Union
|
||||
|
||||
import httpx
|
||||
from openai._legacy_response import (
|
||||
|
|
@ -62,7 +51,7 @@ from openai.types.responses.response_create_params import (
|
|||
ToolParam,
|
||||
)
|
||||
from pydantic import BaseModel, Discriminator, Field, PrivateAttr
|
||||
from typing_extensions import Dict, Required, TypedDict, override
|
||||
from typing_extensions import Annotated, Dict, Required, TypedDict, override
|
||||
|
||||
FileContent = Union[IO[bytes], bytes, PathLike]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue