You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: prompt/prompt-executor/prompt-executor-clients/prompt-executor-openrouter-client/src/commonMain/kotlin/ai/koog/prompt/executor/clients/openrouter/OpenRouterModels.kt
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,20 @@ public object OpenRouterModels : LLModelDefinitions {
62
62
maxOutputTokens =4_096,
63
63
)
64
64
65
+
/**
66
+
* Represents a predefined language model configuration for the "Claude 3 Sonnet" model.
67
+
*
68
+
* This variable defines an instance of the `LLModel` class using the `OpenRouter` provider.
69
+
* The model is identified with the ID "anthropic/claude-3-sonnet" and supports multimodal capabilities.
70
+
*/
71
+
publicvalClaude3Sonnet:LLModel=LLModel(
72
+
provider =LLMProvider.OpenRouter,
73
+
id ="anthropic/claude-3-sonnet",
74
+
capabilities = multimodalCapabilities,
75
+
contextLength =200_000,
76
+
maxOutputTokens =4_096,
77
+
)
78
+
65
79
/**
66
80
* Represents the Claude v3 Haiku model provided through the OpenRouter platform.
0 commit comments