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 @@ -333,14 +333,14 @@ public object OpenRouterModels : LLModelDefinitions {

/**
* Represents the Llama3 model configuration provided by OpenRouter.
* This model is identified by the unique ID "meta/llama-3-70b" and
* This model is identified by the unique ID "meta-llama/llama-3-70b" and
* supports the standard set of language model capabilities.
*
* @see <a href="https://huggingface.co/meta-llama/Meta-Llama-3-70B">
*/
public val Llama3: LLModel = LLModel(
provider = LLMProvider.OpenRouter,
id = "meta/llama-3-70b",
id = "meta-llama/llama-3-70b",
capabilities = standardCapabilities + additionalCapabilities,
contextLength = 8_000,
)
Expand All @@ -353,7 +353,7 @@ public object OpenRouterModels : LLModelDefinitions {
*/
public val Llama3Instruct: LLModel = LLModel(
provider = LLMProvider.OpenRouter,
id = "meta/llama-3-70b-instruct",
id = "meta-llama/llama-3-70b-instruct",
capabilities = standardCapabilities + additionalCapabilities,
contextLength = 8_000,
)
Expand Down