fix(core): support gateway type metadata on Python 3.10

This commit is contained in:
John Kennedy
2026-07-11 13:53:50 -07:00
parent b667222964
commit 4f43959193

View File

@@ -2,10 +2,10 @@
import os
from collections.abc import Mapping
from typing import Final, Literal, TypedDict
from typing import Final, Literal
from urllib.parse import urlsplit, urlunsplit
from typing_extensions import NotRequired
from typing_extensions import NotRequired, TypedDict
GatewayProvider = Literal["anthropic", "fireworks", "google_genai", "openai"]