Add GROQ.KEY support in LiteLLMAIHandler

This commit is contained in:
Randy, Huang
2024-04-21 15:21:45 +09:00
parent e429c5d012
commit 0a53f09a7f
2 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,8 @@ class LiteLLMAIHandler(BaseAiHandler):
litellm.anthropic_key = get_settings().anthropic.key
if get_settings().get("COHERE.KEY", None):
litellm.cohere_key = get_settings().cohere.key
if get_settings().get("GROQ.KEY", None):
litellm.api_key = get_settings().groq.key
if get_settings().get("REPLICATE.KEY", None):
litellm.replicate_key = get_settings().replicate.key
if get_settings().get("REPLICATE.KEY", None):