(docs) docstring for completion_with_retries

This commit is contained in:
ishaan-jaff 2023-10-30 14:20:09 -07:00
parent 47ac4fa58f
commit f52b36a338

View file

@ -1289,6 +1289,9 @@ def completion(
def completion_with_retries(*args, **kwargs):
"""
Executes a litellm.completion() with 3 retries
"""
try:
import tenacity
except: