mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
add petals to init and main
This commit is contained in:
parent
ac8c0fe8a2
commit
934deab1f7
2 changed files with 33 additions and 0 deletions
|
@ -34,6 +34,7 @@ from .llms import baseten
|
|||
from .llms import vllm
|
||||
from .llms import ollama
|
||||
from .llms import cohere
|
||||
from .llms import petals
|
||||
import tiktoken
|
||||
from concurrent.futures import ThreadPoolExecutor
|
||||
from typing import Callable, List, Optional, Dict
|
||||
|
@ -953,6 +954,32 @@ def completion(
|
|||
)
|
||||
return response
|
||||
response = model_response
|
||||
elif (
|
||||
custom_llm_provider == "petals"
|
||||
or custom_llm_provider == "petals-team"
|
||||
or model in litellm.petals_models
|
||||
):
|
||||
custom_llm_provider = "baseten"
|
||||
|
||||
model_response = petals.completion(
|
||||
model=model,
|
||||
messages=messages,
|
||||
model_response=model_response,
|
||||
print_verbose=print_verbose,
|
||||
optional_params=optional_params,
|
||||
litellm_params=litellm_params,
|
||||
logger_fn=logger_fn,
|
||||
encoding=encoding,
|
||||
api_key=baseten_key,
|
||||
logging_obj=logging
|
||||
)
|
||||
if inspect.isgenerator(model_response) or (stream == True):
|
||||
# don't try to access stream object,
|
||||
response = CustomStreamWrapper(
|
||||
model_response, model, custom_llm_provider="petals", logging_obj=logging
|
||||
)
|
||||
return response
|
||||
response = model_response
|
||||
elif (
|
||||
custom_llm_provider == "custom"
|
||||
):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue