Module: Legion::Extensions::Llm::Mlx
- Extended by:
- Core
- Defined in:
- lib/legion/extensions/llm/mlx.rb,
lib/legion/extensions/llm/mlx/version.rb,
lib/legion/extensions/llm/mlx/provider_settings.rb
Overview
Mlx provider extension namespace.
Defined Under Namespace
Modules: ProviderSettings
Constant Summary collapse
- PROVIDER_FAMILY =
:mlx- VERSION =
'0.1.0'
Class Method Summary collapse
Class Method Details
.default_settings ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/legion/extensions/llm/mlx.rb', line 16 def self.default_settings ProviderSettings.build( family: PROVIDER_FAMILY, instance: { endpoint: nil, tier: :local, transport: :local, usage: { inference: true, embedding: false }, limits: { concurrency: 1 } } ) end |