forked from phoenix/litellm-mirror
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
|
telemetry = True
|
||||||
max_tokens = 256 # OpenAI Defaults
|
max_tokens = 256 # OpenAI Defaults
|
||||||
drop_params = False
|
drop_params = bool(os.getenv("LITELLM_DROP_PARAMS", False))
|
||||||
modify_params = False
|
modify_params = False
|
||||||
retry = True
|
retry = True
|
||||||
### AUTH ###
|
### AUTH ###
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue