Files
NexQuant/rdagent/oai/backend/litellm.py
T
Xu Yang 89a39b9396 fix: merge datascience v3 and v2 (#974)
* add coder version

* merge cooder and feedback prompts

* align v2 and v3 proposal prompts

* fix a small bug

* fix a bug

* fix another bug

* support both function calling and json mode in v2 proposal

* fix minor bug

* reformat

* remove proposal v3

* fix a small bug in json mode

* fix CI

* remove tmp file

* remove v3 check

---------

Co-authored-by: Xu Yang <xuyang1@microsoft.com>
2025-06-19 13:25:10 +08:00

199 lines
7.6 KiB
Python

import copyreg
from typing import Any, Literal, cast
import numpy as np
from litellm import (
BadRequestError,
completion,
completion_cost,
embedding,
supports_function_calling,
supports_response_schema,
token_counter,
)
from rdagent.log import LogColors
from rdagent.log import rdagent_logger as logger
from rdagent.oai.backend.base import APIBackend
from rdagent.oai.llm_conf import LLMSettings
# NOTE: Patching! Otherwise, the exception will call the constructor and with following error:
# `BadRequestError.__init__() missing 2 required positional arguments: 'model' and 'llm_provider'`
def _reduce_no_init(exc: Exception) -> tuple:
cls = exc.__class__
return (cls.__new__, (cls,), exc.__dict__)
# suppose you want to apply this to MyError
copyreg.pickle(BadRequestError, _reduce_no_init)
class LiteLLMSettings(LLMSettings):
class Config:
env_prefix = "LITELLM_"
"""Use `LITELLM_` as prefix for environment variables"""
# Placeholder for LiteLLM specific settings, so far it's empty
LITELLM_SETTINGS = LiteLLMSettings()
logger.info(f"{LITELLM_SETTINGS}")
ACC_COST = 0.0
class LiteLLMAPIBackend(APIBackend):
"""LiteLLM implementation of APIBackend interface"""
def __init__(self, *args: Any, **kwargs: Any) -> None:
super().__init__(*args, **kwargs)
def _calculate_token_from_messages(self, messages: list[dict[str, Any]]) -> int:
"""
Calculate the token count from messages
"""
num_tokens = token_counter(
model=LITELLM_SETTINGS.chat_model,
messages=messages,
)
logger.info(f"{LogColors.CYAN}Token count: {LogColors.END} {num_tokens}", tag="debug_litellm_token")
return num_tokens
def _create_embedding_inner_function(
self, input_content_list: list[str], *args: Any, **kwargs: Any
) -> list[list[float]]: # noqa: ARG002
"""
Call the embedding function
"""
model_name = LITELLM_SETTINGS.embedding_model
logger.info(f"{LogColors.GREEN}Using emb model{LogColors.END} {model_name}", tag="debug_litellm_emb")
if LITELLM_SETTINGS.log_llm_chat_content:
logger.info(
f"{LogColors.MAGENTA}Creating embedding{LogColors.END} for: {input_content_list}",
tag="debug_litellm_emb",
)
response = embedding(
model=model_name,
input=input_content_list,
*args,
**kwargs,
)
response_list = [data["embedding"] for data in response.data]
return response_list
def _create_chat_completion_inner_function( # type: ignore[no-untyped-def] # noqa: C901, PLR0912, PLR0915
self,
messages: list[dict[str, Any]],
json_mode: bool = False,
*args,
**kwargs,
) -> tuple[str, str | None]:
"""
Call the chat completion function
"""
if json_mode and supports_response_schema(model=LITELLM_SETTINGS.chat_model):
kwargs["response_format"] = {"type": "json_object"}
elif not supports_response_schema(model=LITELLM_SETTINGS.chat_model) and "response_format" in kwargs:
logger.warning(
f"{LogColors.RED}Model {LITELLM_SETTINGS.chat_model} does not support response schema, ignoring response_format argument.{LogColors.END}",
tag="llm_messages",
)
kwargs.pop("response_format")
if LITELLM_SETTINGS.log_llm_chat_content:
logger.info(self._build_log_messages(messages), tag="llm_messages")
# Call LiteLLM completion
model = LITELLM_SETTINGS.chat_model
temperature = LITELLM_SETTINGS.chat_temperature
max_tokens = LITELLM_SETTINGS.chat_max_tokens
reasoning_effort = LITELLM_SETTINGS.reasoning_effort
if LITELLM_SETTINGS.chat_model_map:
for t, mc in LITELLM_SETTINGS.chat_model_map.items():
if t in logger._tag:
model = mc["model"]
if "temperature" in mc:
temperature = float(mc["temperature"])
if "max_tokens" in mc:
max_tokens = int(mc["max_tokens"])
if "reasoning_effort" in mc:
if mc["reasoning_effort"] in ["low", "medium", "high"]:
reasoning_effort = cast(Literal["low", "medium", "high"], mc["reasoning_effort"])
else:
reasoning_effort = None
break
response = completion(
model=model,
messages=messages,
stream=LITELLM_SETTINGS.chat_stream,
temperature=temperature,
max_tokens=max_tokens,
reasoning_effort=reasoning_effort,
max_retries=0,
**kwargs,
)
logger.info(f"{LogColors.GREEN}Using chat model{LogColors.END} {model}", tag="llm_messages")
if LITELLM_SETTINGS.chat_stream:
if LITELLM_SETTINGS.log_llm_chat_content:
logger.info(f"{LogColors.BLUE}assistant:{LogColors.END}", tag="llm_messages")
content = ""
finish_reason = None
for message in response:
if message["choices"][0]["finish_reason"]:
finish_reason = message["choices"][0]["finish_reason"]
if "content" in message["choices"][0]["delta"]:
chunk = (
message["choices"][0]["delta"]["content"] or ""
) # when finish_reason is "stop", content is None
content += chunk
if LITELLM_SETTINGS.log_llm_chat_content:
logger.info(LogColors.CYAN + chunk + LogColors.END, raw=True, tag="llm_messages")
if LITELLM_SETTINGS.log_llm_chat_content:
logger.info("\n", raw=True, tag="llm_messages")
else:
content = str(response.choices[0].message.content)
finish_reason = response.choices[0].finish_reason
finish_reason_str = (
f"({LogColors.RED}Finish reason: {finish_reason}{LogColors.END})"
if finish_reason and finish_reason != "stop"
else ""
)
if LITELLM_SETTINGS.log_llm_chat_content:
logger.info(
f"{LogColors.BLUE}assistant:{LogColors.END} {finish_reason_str}\n{content}", tag="llm_messages"
)
global ACC_COST
try:
cost = completion_cost(model=model, messages=messages, completion=content)
except Exception as e:
logger.warning(f"Cost calculation failed for model {model}: {e}. Skip cost statistics.")
cost = np.nan
else:
ACC_COST += cost
logger.info(
f"Current Cost: ${float(cost):.10f}; Accumulated Cost: ${float(ACC_COST):.10f}; {finish_reason=}",
)
prompt_tokens = token_counter(model=model, messages=messages)
completion_tokens = token_counter(model=model, text=content)
logger.log_object(
{
"model": model,
"prompt_tokens": prompt_tokens,
"completion_tokens": completion_tokens,
"cost": cost,
"accumulated_cost": ACC_COST,
},
tag="token_cost",
)
return content, finish_reason
def support_function_calling(self) -> bool:
"""
Check if the backend supports function calling
"""
return supports_function_calling(model=LITELLM_SETTINGS.chat_model) and LITELLM_SETTINGS.enable_function_call