typing_extensions Annotated

This commit is contained in:
Ishaan Jaff 2025-03-12 11:58:56 -07:00
parent 6702e492f5
commit c6a9e8cafe

View file

@ -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]