Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions packages/core/src/family.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { z } from "zod";

export const ModelFamilyValues = [
// Sapiens AI / Agnes AI
"agnes",

// Arcee
"trinity",
"trinity-mini",
Expand Down
22 changes: 22 additions & 0 deletions providers/agnes/models/agnes-1.5-flash.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name = "Agnes 1.5 Flash"
family = "agnes"
release_date = "2026-03"
last_updated = "2026-05"
attachment = true
reasoning = false
temperature = true
tool_call = true
structured_output = true
open_weights = false

[cost]
input = 0.07
output = 0.15

[limit]
context = 256_000
output = 65_536

[modalities]
input = ["text", "image"]
output = ["text"]
22 changes: 22 additions & 0 deletions providers/agnes/models/agnes-2.0-flash.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name = "Agnes 2.0 Flash"
family = "agnes"
release_date = "2026-05"
last_updated = "2026-05"
attachment = true
reasoning = false
temperature = true
tool_call = true
structured_output = true
open_weights = false

[cost]
input = 0.1
output = 0.2

[limit]
context = 256_000
output = 65_536

[modalities]
input = ["text"]
output = ["text"]
5 changes: 5 additions & 0 deletions providers/agnes/provider.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name = "Agnes AI"
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no logo?

Copy link
Copy Markdown
Author

@wold9168 wold9168 Jun 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My fault. Upload later.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Their official website does not provide images in SVG format. I will contact their staff.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LOGO Uploaded.

env = ["AGNES_API_KEY"]
npm = "@ai-sdk/openai-compatible"
doc = "https://agnes-ai.com/doc/overview"
api = "https://apihub.agnes-ai.com/v1"
Loading