77 lines
2.4 KiB
Python
77 lines
2.4 KiB
Python
from __future__ import annotations
|
|
|
|
import os
|
|
|
|
import httpx
|
|
import openai
|
|
from openai.types import ReasoningEffort
|
|
|
|
from livekit.agents.llm import ToolChoice
|
|
from livekit.agents.types import (
|
|
NOT_GIVEN,
|
|
NotGivenOr,
|
|
)
|
|
from livekit.agents.utils import is_given
|
|
from livekit.plugins.openai import LLM as OpenAILLM
|
|
|
|
from .models import LLMModels
|
|
|
|
|
|
class LLM(OpenAILLM):
|
|
def __init__(
|
|
self,
|
|
*,
|
|
model: str | LLMModels = "meta-llama/Llama-4-Maverick-17B-128E-Instruct",
|
|
api_key: NotGivenOr[str] = NOT_GIVEN,
|
|
user: NotGivenOr[str] = NOT_GIVEN,
|
|
safety_identifier: NotGivenOr[str] = NOT_GIVEN,
|
|
prompt_cache_key: NotGivenOr[str] = NOT_GIVEN,
|
|
temperature: NotGivenOr[float] = NOT_GIVEN,
|
|
top_p: NotGivenOr[float] = NOT_GIVEN,
|
|
parallel_tool_calls: NotGivenOr[bool] = NOT_GIVEN,
|
|
tool_choice: NotGivenOr[ToolChoice] = NOT_GIVEN,
|
|
reasoning_effort: NotGivenOr[ReasoningEffort] = NOT_GIVEN,
|
|
base_url: NotGivenOr[str] = "https://inference.baseten.co/v1",
|
|
client: openai.AsyncClient | None = None,
|
|
timeout: httpx.Timeout | None = None,
|
|
):
|
|
"""
|
|
Create a new instance of Baseten LLM.
|
|
|
|
``api_key`` must be set to your Baseten API key, either using the argument or by setting
|
|
the ``BASETEN_API_KEY`` environmental variable.
|
|
"""
|
|
api_key = api_key if is_given(api_key) else os.environ.get("BASETEN_API_KEY", "")
|
|
if not api_key:
|
|
raise ValueError(
|
|
"BASETEN_API_KEY is required, either as argument or set BASETEN_API_KEY environmental variable" # noqa: E501
|
|
)
|
|
|
|
if not is_given(reasoning_effort):
|
|
if model == "openai/gpt-oss-120b":
|
|
reasoning_effort = "low"
|
|
|
|
super().__init__(
|
|
model=model,
|
|
api_key=api_key,
|
|
base_url=base_url,
|
|
client=client,
|
|
user=user,
|
|
safety_identifier=safety_identifier,
|
|
prompt_cache_key=prompt_cache_key,
|
|
temperature=temperature,
|
|
top_p=top_p,
|
|
parallel_tool_calls=parallel_tool_calls,
|
|
tool_choice=tool_choice,
|
|
timeout=timeout,
|
|
reasoning_effort=reasoning_effort,
|
|
)
|
|
|
|
@property
|
|
def model(self) -> str:
|
|
return self._opts.model
|
|
|
|
@property
|
|
def provider(self) -> str:
|
|
return "Baseten"
|