docs(set_keys.md): adds validate_environment function to docs

This commit is contained in:
Krrish Dholakia 2023-10-08 10:00:56 -07:00
parent a833e3f929
commit c48c6e9358

View file

@ -149,3 +149,13 @@ assert(valid_models == expected_models)
# reset replicate env key
os.environ = old_environ
```
### `validate_environment(model: str)`
This helper tells you if you have all the required environment variables for a model, and if not - what's missing.
```python
import litellm
print(litellm.validate_environment("openai/gpt-3.5-turbo"))
```