Class: SkillBench::Clients::Providers::Ollama

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

Overview

Ollama-specific LLM client. Extends BaseClient to interact with an Ollama server (commonly used for open‑source models such as Qwen 3.5). Ollama does not require an API key but requires a model to be configured.

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)


18
19
20
# File 'lib/skill_bench/clients/providers/ollama.rb', line 18

def provider_name
  :ollama
end