Module: gpt_llm

Expand source code
# Copyright (C) 2023-present The Project Contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from dataclasses import dataclass
from typing import ClassVar
from openai import OpenAI
from cl.convince.llms.llm import Llm
from cl.convince.settings.openai_settings import OpenaiSettings


@dataclass(slots=True, kw_only=True)
class GptLlm(Llm):
    """Implements GPT LLM API."""

    model_name: str | None = None
    """Model name in OpenAI format including version if any, defaults to 'llm_id'."""

    _client: ClassVar[OpenAI] = None
    """OpenAI client instance."""

    def uncached_completion(self, request_id: str, query: str) -> str:
        """Perform completion without CompletionCache lookup, call completion instead."""

        # Prefix a unique RequestID to the model for audit log purposes and
        # to stop model provider from caching the results
        query_with_request_id = f"RequestID: {request_id}nn{query}"

        model_name = self.model_name if self.model_name is not None else self.llm_id
        messages = [{"role": "user", "content": query_with_request_id}]

        client = self._get_client()
        response = client.chat.completions.create(model=model_name, messages=messages)

        result = response.choices[0].message.content
        return result

    @classmethod
    def _get_client(cls) -> OpenAI:
        """Instantiate and cache the OpenAI client instance."""
        if cls._client is None:
            cls._client = OpenAI(
                api_key=OpenaiSettings.instance().api_key,
            )
        return cls._client

Classes

class GptLlm (*, llm_id: str = None, model_name: str | None = None)

Implements GPT LLM API.

Expand source code
@dataclass(slots=True, kw_only=True)
class GptLlm(Llm):
    """Implements GPT LLM API."""

    model_name: str | None = None
    """Model name in OpenAI format including version if any, defaults to 'llm_id'."""

    _client: ClassVar[OpenAI] = None
    """OpenAI client instance."""

    def uncached_completion(self, request_id: str, query: str) -> str:
        """Perform completion without CompletionCache lookup, call completion instead."""

        # Prefix a unique RequestID to the model for audit log purposes and
        # to stop model provider from caching the results
        query_with_request_id = f"RequestID: {request_id}nn{query}"

        model_name = self.model_name if self.model_name is not None else self.llm_id
        messages = [{"role": "user", "content": query_with_request_id}]

        client = self._get_client()
        response = client.chat.completions.create(model=model_name, messages=messages)

        result = response.choices[0].message.content
        return result

    @classmethod
    def _get_client(cls) -> OpenAI:
        """Instantiate and cache the OpenAI client instance."""
        if cls._client is None:
            cls._client = OpenAI(
                api_key=OpenaiSettings.instance().api_key,
            )
        return cls._client

Ancestors

Static methods

def get_key_type() -> Type

Inherited from: Llm.get_key_type

Return key type even when called from a record.

Fields

var llm_id -> str

Inherited from: Llm.llm_id

Unique LLM identifier.

var model_name -> str | None

Model name in OpenAI format including version if any, defaults to ‘llm_id’.

Methods

def completion(self, query: str, *, trial_id: str | int | None = None) -> str

Inherited from: Llm.completion

Text-in, text-out single query completion without model-specific tags (uses response caching).

def get_key(self) -> LlmKey

Inherited from: Llm.get_key

Return a new key object whose fields populated from self, do not return self.

def init_all(self) -> None

Inherited from: Llm.init_all

Invoke ‘init’ for each class in the order from base to derived, then validate against schema.

def uncached_completion(self, request_id: str, query: str) -> str

Inherited from: Llm.uncached_completion

Perform completion without CompletionCache lookup, call completion instead.