Class: SkillBench::Clients::Providers::NullClient

Inherits:
BaseClient
  • Object
show all
Defined in:
lib/skill_bench/clients/providers/null_client.rb

Overview

Null Object implementation for unsupported LLM providers. Extends BaseClient for interface consistency.

Instance Attribute Summary

Attributes inherited from BaseClient

#api_key, #messages, #model, #options, #system_prompt, #tools

Instance Method Summary collapse

Methods inherited from BaseClient

call, #call, #initialize

Constructor Details

This class inherits a constructor from SkillBench::Clients::BaseClient

Instance Method Details

#provider_nameSymbol

Returns the provider identifier.

Returns:

  • (Symbol)


14
15
16
# File 'lib/skill_bench/clients/providers/null_client.rb', line 14

def provider_name
  :null
end