Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public object OllamaModels {
*
* @see <a href="https://ollama.com/library/llama4">
*/
public val LLAMA_4_SCOUT: LLModel = LLModel(
public val LLAMA_4_LATEST: LLModel = LLModel(
provider = LLMProvider.Ollama,
id = "llama4:latest",
capabilities = listOf(
Expand All @@ -143,7 +143,26 @@ public object OllamaModels {
*
* @see <a href="https://ollama.com/library/llama4">
*/
public val LLAMA_4: LLModel = LLAMA_4_SCOUT
public val LLAMA_4_SCOUT: LLModel = LLModel(
provider = LLMProvider.Ollama,
id = "llama4:scout",
capabilities = listOf(
LLMCapability.Temperature,
LLMCapability.Schema.JSON.Basic,
LLMCapability.Tools
),
contextLength = 10_485_760,
)

/**
* Represents the LLAMA version 4 model provided by Meta.
*
* The LLAMA 4 collection of models is natively multimodal AI models that enable text and multimodal experiences.
* These two models leverage a mixture-of-experts (MoE) architecture and support native multimodality (image input).
*
* @see <a href="https://ollama.com/library/llama4">
*/
public val LLAMA_4: LLModel = LLAMA_4_LATEST

/**
* Represents the llama-guard model version3 provided by Meta.
Expand Down
Loading