mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
fix: specify type for extra_body in CometAPIConfig
This commit is contained in:
parent
c9b334fcd1
commit
ea0f768122
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue