morpheus.llm.services.nvfoundation_llm_service.NVFoundationLLMService

(Latest Version)
class NVFoundationLLMService(*, api_key=None, base_url=None, **model_kwargs)[source]

Bases: morpheus.llm.services.llm_service.LLMService

A service for interacting with NeMo LLM models, this class should be used to create a client for a specific model.

Parameters
api_key

The API key for the LLM service, by default None. If None the API key will be read from the NVIDIA_API_KEY environment variable. If neither are present an error will be raised, by default None

base_url

The api host url, by default None. If None the url will be read from the NVIDIA_API_BASE environment variable. If neither are present the NVIDIA default will be used, by default None

Attributes
api_key

base_url

Methods

create(service_type, *service_args, ...) Returns a service for interacting with LLM models.
get_client(*, model_name, **model_kwargs) Returns a client for interacting with a specific model.
APIKey
BaseURL
class APIKey(value=None, use_env=True)[source]

Bases: morpheus.utils.env_config_value.EnvConfigValue

Attributes
source

use_env

value

class BaseURL(value=None, use_env=True)[source]

Bases: morpheus.utils.env_config_value.EnvConfigValue

Attributes
source

use_env

value

static create(service_type, *service_args, **service_kwargs)[source]

Returns a service for interacting with LLM models.

Parameters
service_type

The type of the service to create

service_args

Additional arguments to pass to the service.

service_kwargs

Additional keyword arguments to pass to the service.

get_client(*, model_name, **model_kwargs)[source]

Returns a client for interacting with a specific model. This method is the preferred way to create a client.

Parameters
model_name

The name of the model to create a client for.

model_kwargs

Additional keyword arguments to pass to the model when generating text.

Previous morpheus.llm.services.nvfoundation_llm_service.NVFoundationLLMClient
Next morpheus.llm.services.openai_chat_service
© Copyright 2024, NVIDIA. Last updated on Jul 8, 2024.