fix: specify type for extra_body in CometAPIConfig

This commit is contained in:
TensorNull
2025-08-09 10:59:23 +08:00
parent c9b334fcd1
commit ea0f768122
+1 -1
View File
@@ -41,7 +41,7 @@ class CometAPIConfig(OpenAIGPTConfig):
)
# CometAPI-specific parameters (if any)
extra_body = {}
extra_body: dict[str, Any] = {}
# TODO: Add CometAPI-specific parameter handling here
# Example:
# custom_param = non_default_params.pop("custom_param", None)