clean out AI21 Init Client calls

This commit is contained in:
ishaan-jaff 2023-09-04 10:08:53 -07:00
parent 31ebbf5208
commit c0c499f7db
2 changed files with 94 additions and 107 deletions

View file

@ -1,4 +1,5 @@
import os, json import os
import json
from enum import Enum from enum import Enum
import requests import requests
import time import time
@ -13,43 +14,31 @@ class AI21Error(Exception):
self.message self.message
) # Call the base class constructor with the parameters it needs ) # Call the base class constructor with the parameters it needs
def validate_environment(api_key):
class AI21LLM: if api_key is None:
def __init__(
self, encoding, logging_obj, api_key=None
):
self.encoding = encoding
self.completion_url_fragment_1 = "https://api.ai21.com/studio/v1/"
self.completion_url_fragment_2 = "/complete"
self.api_key = api_key
self.logging_obj = logging_obj
self.validate_environment(api_key=api_key)
def validate_environment(
self, api_key
): # set up the environment required to run the model
# set the api key
if self.api_key == None:
raise ValueError( raise ValueError(
"Missing AI21 API Key - A call is being made to ai21 but no key is set either in the environment variables or via params" "Missing AI21 API Key - A call is being made to ai21 but no key is set either in the environment variables or via params"
) )
self.api_key = api_key headers = {
self.headers = {
"accept": "application/json", "accept": "application/json",
"content-type": "application/json", "content-type": "application/json",
"Authorization": "Bearer " + self.api_key, "Authorization": "Bearer " + api_key,
} }
return headers
def completion( def completion(
self,
model: str, model: str,
messages: list, messages: list,
model_response: ModelResponse, model_response: ModelResponse,
print_verbose: Callable, print_verbose: Callable,
encoding,
api_key,
logging_obj,
optional_params=None, optional_params=None,
litellm_params=None, litellm_params=None,
logger_fn=None, logger_fn=None,
): # logic for parsing in - calling - parsing out model completion calls ):
headers = validate_environment(api_key)
model = model model = model
prompt = "" prompt = ""
for message in messages: for message in messages:
@ -71,22 +60,22 @@ class AI21LLM:
} }
## LOGGING ## LOGGING
self.logging_obj.pre_call( logging_obj.pre_call(
input=prompt, input=prompt,
api_key=self.api_key, api_key=api_key,
additional_args={"complete_input_dict": data}, additional_args={"complete_input_dict": data},
) )
## COMPLETION CALL ## COMPLETION CALL
response = requests.post( response = requests.post(
self.completion_url_fragment_1 + model + self.completion_url_fragment_2, headers=self.headers, data=json.dumps(data) "https://api.ai21.com/studio/v1/" + model + "/complete", headers=headers, data=json.dumps(data)
) )
if "stream" in optional_params and optional_params["stream"] == True: if "stream" in optional_params and optional_params["stream"] == True:
return response.iter_lines() return response.iter_lines()
else: else:
## LOGGING ## LOGGING
self.logging_obj.post_call( logging_obj.post_call(
input=prompt, input=prompt,
api_key=self.api_key, api_key=api_key,
original_response=response.text, original_response=response.text,
additional_args={"complete_input_dict": data}, additional_args={"complete_input_dict": data},
) )
@ -106,10 +95,10 @@ class AI21LLM:
## CALCULATING USAGE - baseten charges on time, not tokens - have some mapping of cost here. ## CALCULATING USAGE - baseten charges on time, not tokens - have some mapping of cost here.
prompt_tokens = len( prompt_tokens = len(
self.encoding.encode(prompt) encoding.encode(prompt)
) )
completion_tokens = len( completion_tokens = len(
self.encoding.encode(model_response["choices"][0]["message"]["content"]) encoding.encode(model_response["choices"][0]["message"]["content"])
) )
model_response["created"] = time.time() model_response["created"] = time.time()
@ -121,7 +110,6 @@ class AI21LLM:
} }
return model_response return model_response
def embedding( def embedding():
self, # logic for parsing in - calling - parsing out model embedding calls
): # logic for parsing in - calling - parsing out model embedding calls
pass pass

View file

@ -21,9 +21,9 @@ from litellm.utils import (
) )
from .llms import anthropic from .llms import anthropic
from .llms import together_ai from .llms import together_ai
from .llms import ai21
from .llms.huggingface_restapi import HuggingfaceRestAPILLM from .llms.huggingface_restapi import HuggingfaceRestAPILLM
from .llms.baseten import BasetenLLM from .llms.baseten import BasetenLLM
from .llms.ai21 import AI21LLM
from .llms.aleph_alpha import AlephAlphaLLM from .llms.aleph_alpha import AlephAlphaLLM
import tiktoken import tiktoken
from concurrent.futures import ThreadPoolExecutor from concurrent.futures import ThreadPoolExecutor
@ -658,11 +658,7 @@ def completion(
or litellm.ai21_key or litellm.ai21_key
or os.environ.get("AI21_API_KEY") or os.environ.get("AI21_API_KEY")
) )
ai21_client = AI21LLM( model_response = ai21.completion(
encoding=encoding, api_key=ai21_key, logging_obj=logging
)
model_response = ai21_client.completion(
model=model, model=model,
messages=messages, messages=messages,
model_response=model_response, model_response=model_response,
@ -670,6 +666,9 @@ def completion(
optional_params=optional_params, optional_params=optional_params,
litellm_params=litellm_params, litellm_params=litellm_params,
logger_fn=logger_fn, logger_fn=logger_fn,
encoding=encoding,
api_key=ai21_key,
logging_obj=logging
) )
if "stream" in optional_params and optional_params["stream"] == True: if "stream" in optional_params and optional_params["stream"] == True: