docs(set_keys.md): doc updates

This commit is contained in:
Krrish Dholakia 2023-10-08 10:01:19 -07:00
parent c48c6e9358
commit f7473638ce

View file

@ -155,7 +155,7 @@ os.environ = old_environ
This helper tells you if you have all the required environment variables for a model, and if not - what's missing.
```python
import litellm
from litellm import validate_environment
print(litellm.validate_environment("openai/gpt-3.5-turbo"))
print(validate_environment("openai/gpt-3.5-turbo"))
```