Skip to content

Commit d99a158

Browse files
authored
Merge pull request #1435 from cantalupo555/feat/add-openrouter-elephant-alpha
feat(openrouter): add Elephant Alpha model
2 parents 7d77118 + 970a00c commit d99a158

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

packages/core/src/family.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,9 @@ export const ModelFamilyValues = [
387387

388388
// Groq
389389
"groq",
390+
391+
// Elephant
392+
"elephant",
390393
] as const;
391394

392395
export const ModelFamily = z.enum(ModelFamilyValues);
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name = "Elephant (free)"
2+
family = "elephant"
3+
release_date = "2026-04-13"
4+
last_updated = "2026-04-13"
5+
attachment = false
6+
reasoning = true
7+
temperature = true
8+
tool_call = true
9+
structured_output = true
10+
open_weights = false
11+
12+
[cost]
13+
input = 0.00
14+
output = 0.00
15+
16+
[limit]
17+
context = 262_144
18+
output = 32_768
19+
20+
[modalities]
21+
input = ["text"]
22+
output = ["text"]

0 commit comments

Comments
 (0)