// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type Ollama struct {
	Models        []OllamaModel `json:"models,omitempty"`
	RunningModels []OllamaModel `json:"running_models,omitempty"`
	Version       *string       `json:"version,omitempty"`
}

func (o *Ollama) GetModels() []OllamaModel {
	if o == nil {
		return nil
	}
	return o.Models
}

func (o *Ollama) GetRunningModels() []OllamaModel {
	if o == nil {
		return nil
	}
	return o.RunningModels
}

func (o *Ollama) GetVersion() *string {
	if o == nil {
		return nil
	}
	return o.Version
}
