refactor: Refactor proxy LLM (#1064)

This commit is contained in:
Fangyin Cheng
2024-01-14 21:01:37 +08:00
committed by GitHub
parent a035433170
commit 22bfd01c4b
95 changed files with 2049 additions and 1294 deletions

View File

@@ -10,10 +10,10 @@ if pydantic.VERSION.startswith("1."):
NonNegativeInt,
PositiveFloat,
PositiveInt,
PrivateAttr,
ValidationError,
root_validator,
validator,
PrivateAttr,
)
else:
PYDANTIC_VERSION = 2
@@ -26,10 +26,10 @@ else:
NonNegativeInt,
PositiveFloat,
PositiveInt,
PrivateAttr,
ValidationError,
root_validator,
validator,
PrivateAttr,
)