mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
Merge pull request #4187 from BerriAI/litellm_drop_params_env
feat(__init__.py): allow setting drop_params as an env
This commit is contained in:
commit
4366b0e553
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ token: Optional[str] = (
|
|||
)
|
||||
telemetry = True
|
||||
max_tokens = 256 # OpenAI Defaults
|
||||
drop_params = False
|
||||
drop_params = bool(os.getenv("LITELLM_DROP_PARAMS", False))
|
||||
modify_params = False
|
||||
retry = True
|
||||
### AUTH ###
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue