From 9a852a073c75e1b90541ff8babb51558a5da58a8 Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 12:29:55 +0100 Subject: [PATCH 01/14] feat(edenai): add provider scaffold and logo --- providers/edenai/logo.svg | 15 +++++++++++++++ providers/edenai/provider.toml | 5 +++++ 2 files changed, 20 insertions(+) create mode 100644 providers/edenai/logo.svg create mode 100644 providers/edenai/provider.toml diff --git a/providers/edenai/logo.svg b/providers/edenai/logo.svg new file mode 100644 index 0000000000..b45aacf1bb --- /dev/null +++ b/providers/edenai/logo.svg @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/providers/edenai/provider.toml b/providers/edenai/provider.toml new file mode 100644 index 0000000000..e07e014bfe --- /dev/null +++ b/providers/edenai/provider.toml @@ -0,0 +1,5 @@ +name = "Eden AI" +env = ["EDENAI_API_KEY"] +npm = "@ai-sdk/openai-compatible" +api = "https://api.edenai.run/v3" +doc = "https://www.edenai.co/docs" \ No newline at end of file From 826ec578c85c7676f42ae1b37685d331a2e40257 Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 13:15:32 +0100 Subject: [PATCH 02/14] feat: add Eden AI provider sync support --- packages/core/src/sync/index.ts | 4 + packages/core/src/sync/providers/edenai.ts | 324 +++++++++++++++++++++ packages/sdk/src/generated.ts | 2 + 3 files changed, 330 insertions(+) create mode 100644 packages/core/src/sync/providers/edenai.ts diff --git a/packages/core/src/sync/index.ts b/packages/core/src/sync/index.ts index a119ccbd74..bf12e4cc32 100644 --- a/packages/core/src/sync/index.ts +++ b/packages/core/src/sync/index.ts @@ -13,6 +13,7 @@ import { cloudflareWorkersAi } from "./providers/cloudflare-workers-ai.js"; import { crossmodel } from "./providers/crossmodel.js"; import { deepinfra } from "./providers/deepinfra.js"; import { digitalocean } from "./providers/digitalocean.js"; +import { edenai } from "./providers/edenai.js"; import { empiriolabs } from "./providers/empiriolabs.js"; import { google } from "./providers/google.js"; import { hyper } from "./providers/hyper.js"; @@ -117,6 +118,7 @@ export const providers: { crossmodel: SyncProvider; deepinfra: SyncProvider; digitalocean: SyncProvider; + edenai: SyncProvider; empiriolabs: SyncProvider; google: SyncProvider; hyper: SyncProvider; @@ -143,6 +145,7 @@ export const providers: { crossmodel, deepinfra, digitalocean, + edenai, empiriolabs, google, hyper, @@ -165,6 +168,7 @@ export const providers: { export const groups = { aggregators: [ "crossmodel", + "edenai", "empiriolabs", "huggingface", "kilo", diff --git a/packages/core/src/sync/providers/edenai.ts b/packages/core/src/sync/providers/edenai.ts new file mode 100644 index 0000000000..22e0d146b8 --- /dev/null +++ b/packages/core/src/sync/providers/edenai.ts @@ -0,0 +1,324 @@ +import { existsSync } from "node:fs"; +import path from "node:path"; +import { z } from "zod"; + +import { describeModel } from "../../describe.js"; +import type { + ExistingModel, + SyncProvider, + SyncedFullModel, + SyncedModel, +} from "../index.js"; +import { factorBaseModel, resolveModelMetadataBaseModel } from "./openrouter.js"; + +const API_ENDPOINT = "https://api.edenai.run/v3/models"; +const MODELS_DIR = path.join(import.meta.dirname, "..", "..", "..", "..", "..", "models"); + +// Eden's `owned_by` is a mix of cloud gateways (which proxy someone else's model) +// and direct model creators. For direct creators we can attempt `/` +// resolution; for gateways the model_name already contains the upstream prefix. +const DIRECT_METADATA_PROVIDER: Record = { + anthropic: "anthropic", + bytedance: "bytedance", + cohere: "cohere", + deepseek: "deepseek", + google: "google", + microsoft: "microsoft", + minimax: "minimax", + mistral: "mistral", + moonshot: "moonshotai", + openai: "openai", + perplexityai: "perplexity", + qwen: "alibaba", + xai: "xai", +}; + +const OPEN_WEIGHT_OWNERS = new Set([ + "bytedance", + "deepseek", + "minimax", + "mistral", + "moonshot", + "qwen", +]); + +const Pricing = z + .object({ + input_cost_per_token: z.number().optional(), + output_cost_per_token: z.number().optional(), + cache_read_input_token_cost: z.number().optional(), + cache_creation_input_token_cost: z.number().optional(), + output_cost_per_reasoning_token: z.number().optional(), + input_cost_per_audio_token: z.number().optional(), + output_cost_per_image_token: z.number().optional(), + }) + .passthrough(); + +const Capabilities = z + .object({ + input_modalities: z.array(z.string()).optional(), + output_modalities: z.array(z.string()).optional(), + supports_reasoning: z.boolean().optional(), + supports_tool_choice: z.boolean().optional(), + supports_function_calling: z.boolean().optional(), + supports_response_schema: z.boolean().optional(), + supports_prompt_caching: z.boolean().optional(), + supports_vision: z.boolean().optional(), + supports_video_input: z.boolean().optional(), + supports_audio_input: z.boolean().optional(), + supports_pdf_input: z.boolean().optional(), + }) + .passthrough(); + +export const EdenAIModel = z + .object({ + id: z.string(), + created: z.number().optional(), + owned_by: z.string(), + model_name: z.string(), + context_length: z.number().nullable().optional(), + description: z.string().nullable().optional(), + capabilities: Capabilities, + pricing: Pricing.nullable().optional(), + alias_of: z.string().nullable().optional(), + }) + .passthrough(); + +export const EdenAIResponse = z + .object({ + data: z.array(EdenAIModel), + }) + .passthrough(); + +export type EdenAIModel = z.infer; + +export const edenai = { + id: "edenai", + name: "Eden AI", + modelsDir: "providers/edenai/models", + preserveBaseModels: false, + async fetchModels() { + const key = process.env.EDENAI_API_KEY; + const response = await fetch( + API_ENDPOINT, + key ? { headers: { Authorization: `Bearer ${key}` } } : undefined, + ); + if (!response.ok) { + throw new Error( + `Eden AI request failed: ${response.status} ${response.statusText}`, + ); + } + return response.json(); + }, + parseModels(raw) { + // Aliases duplicate a canonical model under a second ID; skip them so the + // catalog stays deduped. The canonical entry still syncs. + return EdenAIResponse.parse(raw).data.filter((model) => !model.alias_of); + }, + translateModel(model, context) { + if (!isSyncable(model)) return undefined; + return { + id: model.id, + model: buildEdenAIModel(model, context.existing(model.id)), + }; + }, +} satisfies SyncProvider; + +function isSyncable(model: EdenAIModel): boolean { + // Eden's /v3/models catalog is text-output today. Guard against future entries + // (image-gen, TTS) that would need first-class categories in models.dev. + const output = model.capabilities.output_modalities; + if (output !== undefined && output.length > 0 && !output.includes("text")) { + return false; + } + if (model.context_length == null || model.context_length <= 0) return false; + return true; +} + +function baseModelExists(modelID: string): boolean { + return existsSync(path.join(MODELS_DIR, `${modelID}.toml`)); +} + +function stripRegion(value: string): string { + return value.replace(/@[a-z0-9-]+$/i, ""); +} + +function candidateBaseModels(model: EdenAIModel): string[] { + const cleanModelName = stripRegion(model.model_name); + const cleanID = stripRegion(model.id); + const suffix = cleanID.startsWith(`${model.owned_by}/`) + ? cleanID.slice(model.owned_by.length + 1) + : cleanID; + + const candidates: string[] = []; + const directMeta = DIRECT_METADATA_PROVIDER[model.owned_by]; + if (directMeta !== undefined) { + candidates.push(`${directMeta}/${cleanModelName}`); + candidates.push(`${directMeta}/${suffix}`); + } + candidates.push(cleanModelName); + candidates.push(suffix); + return [...new Set(candidates)]; +} + +function resolveEdenBaseModel( + model: EdenAIModel, + existingBase: string | undefined, +): string | undefined { + if (existingBase !== undefined && baseModelExists(existingBase)) { + return existingBase; + } + for (const candidate of candidateBaseModels(model)) { + if (baseModelExists(candidate)) return candidate; + const resolved = resolveModelMetadataBaseModel(candidate); + if (resolved !== undefined && baseModelExists(resolved)) return resolved; + } + return undefined; +} + +type Modality = "text" | "audio" | "image" | "video" | "pdf"; + +function normalizeModalities(values: string[], fallback: Modality[]): Modality[] { + const allowed = new Set(["text", "audio", "image", "video", "pdf"]); + const mapped = values + .map((value) => value.toLowerCase()) + .map((value) => (value === "file" ? "pdf" : value)) + .filter((value): value is Modality => allowed.has(value as Modality)); + return [...new Set(mapped.length > 0 ? mapped : fallback)]; +} + +function inputModalitiesFromCapabilities(caps: EdenAIModel["capabilities"]): Modality[] { + if (caps.input_modalities !== undefined && caps.input_modalities.length > 0) { + return normalizeModalities(caps.input_modalities, ["text"]); + } + const inferred: Modality[] = ["text"]; + if (caps.supports_vision) inferred.push("image"); + if (caps.supports_video_input) inferred.push("video"); + if (caps.supports_audio_input) inferred.push("audio"); + if (caps.supports_pdf_input) inferred.push("pdf"); + return [...new Set(inferred)]; +} + +function price(value: number | undefined): number | undefined { + if (value === undefined || value === null) return undefined; + if (!Number.isFinite(value) || value < 0) return undefined; + return Math.round(value * 1_000_000_000_000) / 1_000_000; +} + +function positivePrice(value: number | undefined): number | undefined { + const rounded = price(value); + return rounded !== undefined && rounded > 0 ? rounded : undefined; +} + +function dateFromTimestamp(timestamp: number | undefined): string | undefined { + if (timestamp === undefined) return undefined; + const date = new Date(timestamp * 1000); + if (Number.isNaN(date.getTime())) return undefined; + return date.toISOString().slice(0, 10); +} + +function buildCost( + model: EdenAIModel, + reasoning: boolean, + existing: ExistingModel["cost"] | undefined, +): SyncedFullModel["cost"] | undefined { + const pricing = model.pricing; + const input = price(pricing?.input_cost_per_token); + const output = price(pricing?.output_cost_per_token); + if (input === undefined || output === undefined) return existing; + return { + input, + output, + cache_read: positivePrice(pricing?.cache_read_input_token_cost), + cache_write: positivePrice(pricing?.cache_creation_input_token_cost), + reasoning: reasoning + ? positivePrice(pricing?.output_cost_per_reasoning_token) ?? existing?.reasoning + : undefined, + input_audio: positivePrice(pricing?.input_cost_per_audio_token), + }; +} + +export function buildEdenAIModel( + model: EdenAIModel, + existing: ExistingModel | undefined, + today = new Date().toISOString().slice(0, 10), +): SyncedModel { + const caps = model.capabilities; + const input = inputModalitiesFromCapabilities(caps); + const output = normalizeModalities(caps.output_modalities ?? [], ["text"]); + const reasoning = caps.supports_reasoning === true; + const toolCall = + caps.supports_function_calling === true || caps.supports_tool_choice === true; + const structuredOutput = caps.supports_response_schema === true; + const attachment = input.some((value) => value !== "text"); + const openWeights = + existing?.open_weights ?? OPEN_WEIGHT_OWNERS.has(model.owned_by); + const context = model.context_length ?? 0; + const limit = { + context, + input: existing?.limit?.input, + output: existing?.limit?.output ?? context, + }; + const releaseDate = + existing?.release_date ?? dateFromTimestamp(model.created) ?? today; + const cost = buildCost(model, reasoning, existing?.cost); + + const values: Partial = { + attachment, + modalities: { input, output }, + reasoning, + release_date: releaseDate, + last_updated: existing?.last_updated ?? today, + tool_call: toolCall, + structured_output: structuredOutput, + temperature: existing?.temperature, + knowledge: existing?.knowledge, + open_weights: openWeights, + status: existing?.status, + interleaved: existing?.interleaved, + cost, + limit, + }; + // Eden's API reports reasoning support but not the control surface + // (effort levels / budget tokens). Preserve any authored options; otherwise + // emit an empty array per AGENTS.md guidance for reasoning models with no + // verified control. + if (reasoning) { + values.reasoning_options = existing?.reasoning_options ?? []; + } + + const resolvedBase = resolveEdenBaseModel(model, existing?.base_model); + if (resolvedBase !== undefined) { + return factorBaseModel( + resolvedBase, + values, + limit, + existing?.base_model === resolvedBase ? existing.base_model_omit : undefined, + ); + } + + const name = existing?.name ?? model.model_name; + const description = + existing?.description ?? + (model.description?.trim() || + describeModel({ + id: model.id, + name, + family: existing?.family, + reasoning, + tool_call: toolCall, + structured_output: structuredOutput, + open_weights: openWeights, + limit, + modalities: { input, output }, + })); + + return { + name, + description, + family: existing?.family, + ...values, + provider: existing?.provider, + experimental: existing?.experimental, + } satisfies SyncedFullModel; +} diff --git a/packages/sdk/src/generated.ts b/packages/sdk/src/generated.ts index 9847259d1a..56917482ad 100644 --- a/packages/sdk/src/generated.ts +++ b/packages/sdk/src/generated.ts @@ -89,8 +89,10 @@ export type ModelFamily = | "kimi" | "kimi-free" | "kimi-k2" + | "kimi-k3" | "kimi-thinking" | "laguna" + | "laguna-s" | "ling" | "ling-flash-free" | "liquid" From b587f0eb397ece1f7aa3a76da4ab9c7c2730afae Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 13:50:07 +0100 Subject: [PATCH 03/14] chore(edenai): initial catalog from sync run --- .../amazon/ai21.jamba-1-5-large-v1:0.toml | 21 ++++++++++++++++ .../amazon/ai21.jamba-1-5-mini-v1:0.toml | 21 ++++++++++++++++ .../amazon/amazon.nova-2-lite-v1:0.toml | 23 ++++++++++++++++++ .../amazon/amazon.nova-2-lite-v1:0@eu.toml | 23 ++++++++++++++++++ .../amazon/amazon.nova-2-lite-v1:0@us.toml | 23 ++++++++++++++++++ .../models/amazon/amazon.nova-lite-v1:0.toml | 21 ++++++++++++++++ .../amazon/amazon.nova-lite-v1:0@us.toml | 21 ++++++++++++++++ .../models/amazon/amazon.nova-micro-v1:0.toml | 21 ++++++++++++++++ .../amazon/amazon.nova-micro-v1:0@us.toml | 21 ++++++++++++++++ .../models/amazon/amazon.nova-pro-v1:0.toml | 21 ++++++++++++++++ .../amazon/amazon.nova-pro-v1:0@us.toml | 21 ++++++++++++++++ ...nthropic.claude-3-haiku-20240307-v1:0.toml | 23 ++++++++++++++++++ ...thropic.claude-3-sonnet-20240229-v1:0.toml | 23 ++++++++++++++++++ ...hropic.claude-haiku-4-5-20251001-v1:0.toml | 24 +++++++++++++++++++ ...pic.claude-haiku-4-5-20251001-v1:0@eu.toml | 24 +++++++++++++++++++ ...pic.claude-haiku-4-5-20251001-v1:0@us.toml | 24 +++++++++++++++++++ ...thropic.claude-opus-4-1-20250805-v1:0.toml | 24 +++++++++++++++++++ ...thropic.claude-opus-4-5-20251101-v1:0.toml | 24 +++++++++++++++++++ ...opic.claude-opus-4-5-20251101-v1:0@eu.toml | 24 +++++++++++++++++++ ...opic.claude-opus-4-5-20251101-v1:0@us.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-4-6-v1.toml | 24 +++++++++++++++++++ .../anthropic.claude-opus-4-6-v1@eu.toml | 24 +++++++++++++++++++ .../anthropic.claude-opus-4-6-v1@us.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-4-7.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-4-7@eu.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-4-7@us.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-4-8.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-4-8@eu.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-4-8@us.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-5.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-5@eu.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-opus-5@us.toml | 24 +++++++++++++++++++ ...ropic.claude-sonnet-4-5-20250929-v1:0.toml | 24 +++++++++++++++++++ ...ic.claude-sonnet-4-5-20250929-v1:0@eu.toml | 24 +++++++++++++++++++ ...ic.claude-sonnet-4-5-20250929-v1:0@us.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-sonnet-4-6.toml | 24 +++++++++++++++++++ .../anthropic.claude-sonnet-4-6@eu.toml | 24 +++++++++++++++++++ .../anthropic.claude-sonnet-4-6@us.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-sonnet-5.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-sonnet-5@eu.toml | 24 +++++++++++++++++++ .../amazon/anthropic.claude-sonnet-5@us.toml | 24 +++++++++++++++++++ .../amazon/cohere.command-r-plus-v1:0.toml | 21 ++++++++++++++++ .../models/amazon/cohere.command-r-v1:0.toml | 21 ++++++++++++++++ .../models/amazon/deepseek.r1-v1:0.toml | 22 +++++++++++++++++ .../edenai/models/amazon/deepseek.v3.2.toml | 22 +++++++++++++++++ .../models/amazon/google.gemma-3-12b-it.toml | 21 ++++++++++++++++ .../amazon/google.gemma-3-12b-it@us.toml | 21 ++++++++++++++++ .../models/amazon/google.gemma-3-27b-it.toml | 21 ++++++++++++++++ .../amazon/google.gemma-3-27b-it@us.toml | 21 ++++++++++++++++ .../models/amazon/google.gemma-3-4b-it.toml | 21 ++++++++++++++++ .../amazon/google.gemma-3-4b-it@us.toml | 21 ++++++++++++++++ .../meta.llama3-1-70b-instruct-v1:0.toml | 21 ++++++++++++++++ .../meta.llama3-1-8b-instruct-v1:0.toml | 21 ++++++++++++++++ .../meta.llama3-3-70b-instruct-v1:0.toml | 21 ++++++++++++++++ .../amazon/meta.llama3-70b-instruct-v1:0.toml | 21 ++++++++++++++++ .../amazon/meta.llama3-8b-instruct-v1:0.toml | 21 ++++++++++++++++ .../models/amazon/minimax.minimax-m2.1.toml | 21 ++++++++++++++++ .../amazon/minimax.minimax-m2.1@us.toml | 21 ++++++++++++++++ .../models/amazon/minimax.minimax-m2.5.toml | 22 +++++++++++++++++ .../amazon/minimax.minimax-m2.5@us.toml | 22 +++++++++++++++++ .../models/amazon/minimax.minimax-m2.toml | 21 ++++++++++++++++ .../models/amazon/minimax.minimax-m2@us.toml | 21 ++++++++++++++++ .../amazon/mistral.devstral-2-123b.toml | 21 ++++++++++++++++ .../amazon/mistral.devstral-2-123b@us.toml | 21 ++++++++++++++++ .../amazon/mistral.magistral-small-2509.toml | 22 +++++++++++++++++ .../mistral.magistral-small-2509@us.toml | 22 +++++++++++++++++ .../mistral.ministral-3-14b-instruct.toml | 21 ++++++++++++++++ .../mistral.ministral-3-14b-instruct@us.toml | 21 ++++++++++++++++ .../mistral.ministral-3-3b-instruct.toml | 21 ++++++++++++++++ .../mistral.ministral-3-3b-instruct@us.toml | 21 ++++++++++++++++ .../mistral.ministral-3-8b-instruct.toml | 21 ++++++++++++++++ .../mistral.ministral-3-8b-instruct@us.toml | 21 ++++++++++++++++ .../mistral.mistral-7b-instruct-v0:2.toml | 21 ++++++++++++++++ .../mistral.mistral-7b-instruct-v0:2@us.toml | 21 ++++++++++++++++ .../mistral.mistral-large-2402-v1:0.toml | 21 ++++++++++++++++ .../mistral.mistral-large-2402-v1:0@us.toml | 21 ++++++++++++++++ ...mistral.mistral-large-3-675b-instruct.toml | 21 ++++++++++++++++ .../mistral.mistral-small-2402-v1:0.toml | 21 ++++++++++++++++ .../mistral.mixtral-8x7b-instruct-v0:1.toml | 21 ++++++++++++++++ ...mistral.mixtral-8x7b-instruct-v0:1@us.toml | 21 ++++++++++++++++ .../mistral.pixtral-large-2502-v1:0.toml | 21 ++++++++++++++++ .../mistral.pixtral-large-2502-v1:0@us.toml | 21 ++++++++++++++++ .../amazon/mistral.voxtral-mini-3b-2507.toml | 21 ++++++++++++++++ .../mistral.voxtral-mini-3b-2507@us.toml | 21 ++++++++++++++++ .../mistral.voxtral-small-24b-2507.toml | 21 ++++++++++++++++ .../mistral.voxtral-small-24b-2507@us.toml | 21 ++++++++++++++++ .../amazon/moonshot.kimi-k2-thinking.toml | 22 +++++++++++++++++ .../models/amazon/moonshotai.kimi-k2.5.toml | 22 +++++++++++++++++ .../amazon/nvidia.nemotron-nano-12b-v2.toml | 21 ++++++++++++++++ .../nvidia.nemotron-nano-12b-v2@us.toml | 21 ++++++++++++++++ .../amazon/nvidia.nemotron-nano-3-30b.toml | 21 ++++++++++++++++ .../amazon/nvidia.nemotron-nano-3-30b@us.toml | 21 ++++++++++++++++ .../amazon/nvidia.nemotron-nano-9b-v2.toml | 21 ++++++++++++++++ .../amazon/nvidia.nemotron-nano-9b-v2@us.toml | 21 ++++++++++++++++ .../amazon/nvidia.nemotron-super-3-120b.toml | 22 +++++++++++++++++ .../nvidia.nemotron-super-3-120b@us.toml | 22 +++++++++++++++++ .../amazon/openai.gpt-oss-120b-1:0.toml | 22 +++++++++++++++++ .../amazon/openai.gpt-oss-120b-1:0@us.toml | 22 +++++++++++++++++ .../models/amazon/openai.gpt-oss-20b-1:0.toml | 22 +++++++++++++++++ .../amazon/openai.gpt-oss-20b-1:0@us.toml | 22 +++++++++++++++++ .../amazon/openai.gpt-oss-safeguard-120b.toml | 21 ++++++++++++++++ .../openai.gpt-oss-safeguard-120b@us.toml | 21 ++++++++++++++++ .../amazon/openai.gpt-oss-safeguard-20b.toml | 21 ++++++++++++++++ .../openai.gpt-oss-safeguard-20b@us.toml | 21 ++++++++++++++++ .../models/amazon/qwen.qwen3-32b-v1:0.toml | 22 +++++++++++++++++ .../models/amazon/qwen.qwen3-32b-v1:0@us.toml | 22 +++++++++++++++++ .../amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml | 22 +++++++++++++++++ .../qwen.qwen3-coder-30b-a3b-v1:0@us.toml | 22 +++++++++++++++++ .../models/amazon/qwen.qwen3-coder-next.toml | 21 ++++++++++++++++ .../amazon/qwen.qwen3-next-80b-a3b.toml | 21 ++++++++++++++++ .../amazon/qwen.qwen3-next-80b-a3b@us.toml | 21 ++++++++++++++++ .../amazon/qwen.qwen3-vl-235b-a22b.toml | 21 ++++++++++++++++ .../amazon/qwen.qwen3-vl-235b-a22b@us.toml | 21 ++++++++++++++++ .../models/amazon/writer.palmyra-x4-v1:0.toml | 21 ++++++++++++++++ .../models/amazon/writer.palmyra-x5-v1:0.toml | 21 ++++++++++++++++ .../models/amazon/zai.glm-4.7-flash.toml | 22 +++++++++++++++++ .../models/amazon/zai.glm-4.7-flash@us.toml | 22 +++++++++++++++++ .../edenai/models/amazon/zai.glm-4.7.toml | 22 +++++++++++++++++ providers/edenai/models/amazon/zai.glm-5.toml | 22 +++++++++++++++++ .../models/anthropic/claude-fable-5.toml | 13 ++++++++++ .../anthropic/claude-haiku-4-5-20251001.toml | 13 ++++++++++ .../models/anthropic/claude-haiku-4-5.toml | 13 ++++++++++ .../anthropic/claude-opus-4-1-20250805.toml | 13 ++++++++++ .../models/anthropic/claude-opus-4-1.toml | 13 ++++++++++ .../anthropic/claude-opus-4-5-20251101.toml | 14 +++++++++++ .../models/anthropic/claude-opus-4-5.toml | 13 ++++++++++ .../models/anthropic/claude-opus-4-6.toml | 14 +++++++++++ .../models/anthropic/claude-opus-4-7.toml | 13 ++++++++++ .../models/anthropic/claude-opus-4-8.toml | 14 +++++++++++ .../models/anthropic/claude-opus-5.toml | 13 ++++++++++ .../anthropic/claude-sonnet-4-5-20250929.toml | 14 +++++++++++ .../models/anthropic/claude-sonnet-4-6.toml | 13 ++++++++++ .../models/anthropic/claude-sonnet-5.toml | 13 ++++++++++ .../edenai/models/azure/gpt-4o-mini.toml | 14 +++++++++++ .../edenai/models/azure/gpt-4o-mini@us.toml | 14 +++++++++++ providers/edenai/models/azure/gpt-4o.toml | 14 +++++++++++ providers/edenai/models/azure/gpt-4o@eu.toml | 14 +++++++++++ providers/edenai/models/azure/gpt-4o@us.toml | 14 +++++++++++ .../edenai/models/azure/gpt-5-codex.toml | 18 ++++++++++++++ providers/edenai/models/azure/gpt-5-mini.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5-mini@eu.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5-mini@us.toml | 17 +++++++++++++ providers/edenai/models/azure/gpt-5-nano.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5-nano@eu.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5-nano@us.toml | 17 +++++++++++++ providers/edenai/models/azure/gpt-5-pro.toml | 15 ++++++++++++ .../models/azure/gpt-5.1-codex-max.toml | 17 +++++++++++++ .../models/azure/gpt-5.1-codex-mini.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5.1-codex.toml | 17 +++++++++++++ providers/edenai/models/azure/gpt-5.1.toml | 17 +++++++++++++ providers/edenai/models/azure/gpt-5.1@eu.toml | 17 +++++++++++++ providers/edenai/models/azure/gpt-5.1@us.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5.2-codex.toml | 14 +++++++++++ providers/edenai/models/azure/gpt-5.2.toml | 17 +++++++++++++ providers/edenai/models/azure/gpt-5.2@us.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5.3-codex.toml | 14 +++++++++++ .../edenai/models/azure/gpt-5.4-mini.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5.4-mini@eu.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5.4-mini@us.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5.4-nano.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5.4-nano@us.toml | 17 +++++++++++++ .../edenai/models/azure/gpt-5.4-pro.toml | 15 ++++++++++++ providers/edenai/models/azure/gpt-5.4.toml | 12 ++++++++++ providers/edenai/models/azure/gpt-5.4@eu.toml | 12 ++++++++++ providers/edenai/models/azure/gpt-5.4@us.toml | 12 ++++++++++ providers/edenai/models/azure/gpt-5.5.toml | 13 ++++++++++ providers/edenai/models/azure/gpt-5.5@eu.toml | 13 ++++++++++ providers/edenai/models/azure/gpt-5.5@us.toml | 13 ++++++++++ .../edenai/models/azure/gpt-5.6-luna.toml | 13 ++++++++++ .../edenai/models/azure/gpt-5.6-luna@eu.toml | 13 ++++++++++ .../edenai/models/azure/gpt-5.6-luna@us.toml | 13 ++++++++++ .../edenai/models/azure/gpt-5.6-sol.toml | 13 ++++++++++ .../edenai/models/azure/gpt-5.6-sol@eu.toml | 13 ++++++++++ .../edenai/models/azure/gpt-5.6-sol@us.toml | 13 ++++++++++ .../edenai/models/azure/gpt-5.6-terra.toml | 13 ++++++++++ .../edenai/models/azure/gpt-5.6-terra@eu.toml | 13 ++++++++++ .../edenai/models/azure/gpt-5.6-terra@us.toml | 13 ++++++++++ providers/edenai/models/azure/gpt-5.toml | 17 +++++++++++++ providers/edenai/models/azure/gpt-5@eu.toml | 17 +++++++++++++ providers/edenai/models/azure/gpt-5@us.toml | 17 +++++++++++++ providers/edenai/models/azure/o3.toml | 15 ++++++++++++ providers/edenai/models/azure/o3@eu.toml | 15 ++++++++++++ providers/edenai/models/azure/o3@us.toml | 15 ++++++++++++ .../models/bytedance/seed-1-6-250915.toml | 22 +++++++++++++++++ .../bytedance/seed-1-6-flash-250715.toml | 22 +++++++++++++++++ .../bytedance/seed-2-0-lite-260228.toml | 23 ++++++++++++++++++ .../bytedance/seed-2-0-lite-260428.toml | 22 +++++++++++++++++ .../bytedance/seed-2-0-mini-260215.toml | 23 ++++++++++++++++++ .../bytedance/seed-2-0-mini-260428.toml | 22 +++++++++++++++++ .../edenai/models/cerebras/gpt-oss-120b.toml | 12 ++++++++++ .../edenai/models/cerebras/zai-glm-4.7.toml | 22 +++++++++++++++++ .../aisingapore/gemma-sea-lion-v4-27b-it.toml | 21 ++++++++++++++++ .../deepseek-r1-distill-qwen-32b.toml | 22 +++++++++++++++++ .../@cf/google/gemma-2b-it-lora.toml | 21 ++++++++++++++++ .../@cf/google/gemma-4-26b-a4b-it.toml | 22 +++++++++++++++++ .../@cf/google/gemma-7b-it-lora.toml | 21 ++++++++++++++++ .../@cf/ibm-granite/granite-4.0-h-micro.toml | 21 ++++++++++++++++ .../meta-llama/llama-2-7b-chat-hf-lora.toml | 21 ++++++++++++++++ .../@cf/meta/llama-3.1-8b-instruct-fp8.toml | 21 ++++++++++++++++ .../@cf/meta/llama-3.2-1b-instruct.toml | 21 ++++++++++++++++ .../@cf/meta/llama-3.2-3b-instruct.toml | 21 ++++++++++++++++ .../meta/llama-3.3-70b-instruct-fp8-fast.toml | 21 ++++++++++++++++ .../meta/llama-4-scout-17b-16e-instruct.toml | 21 ++++++++++++++++ .../cloudflare/@cf/meta/llama-guard-3-8b.toml | 21 ++++++++++++++++ .../mistral-7b-instruct-v0.2-lora.toml | 21 ++++++++++++++++ .../mistral-small-3.1-24b-instruct.toml | 21 ++++++++++++++++ .../cloudflare/@cf/moonshotai/kimi-k2.6.toml | 23 ++++++++++++++++++ .../@cf/moonshotai/kimi-k2.7-code.toml | 23 ++++++++++++++++++ .../@cf/nvidia/nemotron-3-120b-a12b.toml | 22 +++++++++++++++++ .../cloudflare/@cf/openai/gpt-oss-120b.toml | 22 +++++++++++++++++ .../cloudflare/@cf/openai/gpt-oss-20b.toml | 22 +++++++++++++++++ .../@cf/qwen/qwen2.5-coder-32b-instruct.toml | 21 ++++++++++++++++ .../@cf/qwen/qwen3-30b-a3b-fp8.toml | 22 +++++++++++++++++ .../models/cloudflare/@cf/qwen/qwq-32b.toml | 22 +++++++++++++++++ .../cloudflare/@cf/zai-org/glm-4.7-flash.toml | 22 +++++++++++++++++ .../cloudflare/@cf/zai-org/glm-5.2.toml | 23 ++++++++++++++++++ .../models/cohere/command-a-03-2025.toml | 12 ++++++++++ .../models/cohere/command-r-08-2024.toml | 11 +++++++++ .../models/cohere/command-r-plus-08-2024.toml | 11 +++++++++ .../models/cohere/command-r7b-12-2024.toml | 13 ++++++++++ .../databricks-claude-haiku-4-5.toml | 22 +++++++++++++++++ .../databricks-claude-opus-4-1.toml | 22 +++++++++++++++++ .../databricks-claude-opus-4-5.toml | 22 +++++++++++++++++ .../databricks-claude-opus-4-6.toml | 22 +++++++++++++++++ .../databricks-claude-opus-4-7.toml | 22 +++++++++++++++++ .../databricks-claude-opus-4-8.toml | 22 +++++++++++++++++ .../databricks-claude-sonnet-4-5.toml | 22 +++++++++++++++++ .../databricks-claude-sonnet-4-6.toml | 22 +++++++++++++++++ .../databricks-gemini-2-5-flash.toml | 21 ++++++++++++++++ .../databricks/databricks-gemini-2-5-pro.toml | 21 ++++++++++++++++ .../databricks/databricks-gemma-3-12b.toml | 21 ++++++++++++++++ .../models/databricks/databricks-gpt-5-1.toml | 21 ++++++++++++++++ .../databricks/databricks-gpt-5-4-mini.toml | 22 +++++++++++++++++ .../databricks/databricks-gpt-5-4-nano.toml | 22 +++++++++++++++++ .../models/databricks/databricks-gpt-5-4.toml | 22 +++++++++++++++++ .../models/databricks/databricks-gpt-5-5.toml | 22 +++++++++++++++++ .../databricks/databricks-gpt-5-6-luna.toml | 22 +++++++++++++++++ .../databricks/databricks-gpt-5-6-sol.toml | 22 +++++++++++++++++ .../databricks/databricks-gpt-5-6-terra.toml | 22 +++++++++++++++++ .../databricks/databricks-gpt-5-mini.toml | 21 ++++++++++++++++ .../databricks/databricks-gpt-5-nano.toml | 21 ++++++++++++++++ .../models/databricks/databricks-gpt-5.toml | 21 ++++++++++++++++ .../databricks/databricks-gpt-oss-120b.toml | 22 +++++++++++++++++ .../databricks/databricks-gpt-oss-20b.toml | 22 +++++++++++++++++ .../databricks-llama-4-maverick.toml | 21 ++++++++++++++++ ...databricks-meta-llama-3-1-8b-instruct.toml | 21 ++++++++++++++++ ...atabricks-meta-llama-3-3-70b-instruct.toml | 21 ++++++++++++++++ .../models/deepinfra/ByteDance/Seed-1.8.toml | 23 ++++++++++++++++++ .../deepinfra/ByteDance/Seed-2.0-code.toml | 23 ++++++++++++++++++ .../deepinfra/ByteDance/Seed-2.0-mini.toml | 23 ++++++++++++++++++ .../deepinfra/ByteDance/Seed-2.0-pro.toml | 23 ++++++++++++++++++ .../deepinfra/Gryphe/MythoMax-L2-13b.toml | 21 ++++++++++++++++ .../deepinfra/MiniMaxAI/MiniMax-M2.5.toml | 23 ++++++++++++++++++ .../MiniMaxAI/MiniMax-M2.7-Turbo.toml | 23 ++++++++++++++++++ .../deepinfra/MiniMaxAI/MiniMax-M2.7.toml | 23 ++++++++++++++++++ .../deepinfra/MiniMaxAI/MiniMax-M3.toml | 23 ++++++++++++++++++ .../NousResearch/Hermes-3-Llama-3.1-405B.toml | 21 ++++++++++++++++ .../NousResearch/Hermes-3-Llama-3.1-70B.toml | 21 ++++++++++++++++ .../edenai/models/deepinfra/Qwen/QwQ-32B.toml | 21 ++++++++++++++++ .../deepinfra/Qwen/Qwen2.5-72B-Instruct.toml | 21 ++++++++++++++++ .../deepinfra/Qwen/Qwen2.5-7B-Instruct.toml | 21 ++++++++++++++++ .../Qwen/Qwen2.5-VL-32B-Instruct.toml | 21 ++++++++++++++++ .../models/deepinfra/Qwen/Qwen3-14B.toml | 22 +++++++++++++++++ .../Qwen/Qwen3-235B-A22B-Instruct-2507.toml | 22 +++++++++++++++++ .../Qwen/Qwen3-235B-A22B-Thinking-2507.toml | 23 ++++++++++++++++++ .../deepinfra/Qwen/Qwen3-235B-A22B.toml | 14 +++++++++++ .../models/deepinfra/Qwen/Qwen3-30B-A3B.toml | 22 +++++++++++++++++ .../models/deepinfra/Qwen/Qwen3-32B.toml | 14 +++++++++++ .../Qwen3-Coder-480B-A35B-Instruct-Turbo.toml | 22 +++++++++++++++++ .../Qwen/Qwen3-Coder-480B-A35B-Instruct.toml | 12 ++++++++++ .../deepinfra/Qwen/Qwen3-Max-Thinking.toml | 23 ++++++++++++++++++ .../models/deepinfra/Qwen/Qwen3-Max.toml | 16 +++++++++++++ .../Qwen/Qwen3-Next-80B-A3B-Instruct.toml | 15 ++++++++++++ .../Qwen/Qwen3-VL-235B-A22B-Instruct.toml | 23 ++++++++++++++++++ .../Qwen/Qwen3-VL-30B-A3B-Instruct.toml | 22 +++++++++++++++++ .../deepinfra/Qwen/Qwen3.5-122B-A10B.toml | 15 ++++++++++++ .../models/deepinfra/Qwen/Qwen3.5-27B.toml | 15 ++++++++++++ .../deepinfra/Qwen/Qwen3.5-35B-A3B.toml | 17 +++++++++++++ .../deepinfra/Qwen/Qwen3.5-397B-A17B.toml | 16 +++++++++++++ .../models/deepinfra/Qwen/Qwen3.5-9B.toml | 16 +++++++++++++ .../models/deepinfra/Qwen/Qwen3.6-27B.toml | 15 ++++++++++++ .../deepinfra/Qwen/Qwen3.6-35B-A3B.toml | 15 ++++++++++++ .../models/deepinfra/Qwen/Qwen3.7-Max.toml | 15 ++++++++++++ .../Sao10K/L3-8B-Lunaris-v1-Turbo.toml | 21 ++++++++++++++++ .../Sao10K/L3.1-70B-Euryale-v2.2.toml | 21 ++++++++++++++++ .../Sao10K/L3.3-70B-Euryale-v2.3.toml | 21 ++++++++++++++++ .../deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml | 23 ++++++++++++++++++ .../deepinfra/XiaomiMiMo/MiMo-V2.5.toml | 23 ++++++++++++++++++ .../deepinfra/allenai/olmOCR-7B-0725-FP8.toml | 21 ++++++++++++++++ .../anthropic/claude-3-7-sonnet-latest.toml | 22 +++++++++++++++++ .../deepinfra/anthropic/claude-4-opus.toml | 21 ++++++++++++++++ .../deepinfra/anthropic/claude-4-sonnet.toml | 21 ++++++++++++++++ .../deepinfra/anthropic/claude-haiku-4-5.toml | 16 +++++++++++++ .../deepinfra/anthropic/claude-opus-4-7.toml | 16 +++++++++++++ .../deepinfra/anthropic/claude-opus-5.toml | 16 +++++++++++++ .../anthropic/claude-sonnet-4-6.toml | 16 +++++++++++++ .../deepreinforce-ai/Ornith-1.0-35B.toml | 23 ++++++++++++++++++ .../deepseek-ai/DeepSeek-R1-0528-Turbo.toml | 21 ++++++++++++++++ .../deepseek-ai/DeepSeek-R1-0528.toml | 23 ++++++++++++++++++ .../DeepSeek-R1-Distill-Llama-70B.toml | 22 +++++++++++++++++ .../DeepSeek-R1-Distill-Qwen-32B.toml | 21 ++++++++++++++++ .../deepseek-ai/DeepSeek-R1-Turbo.toml | 21 ++++++++++++++++ .../deepinfra/deepseek-ai/DeepSeek-R1.toml | 21 ++++++++++++++++ .../deepseek-ai/DeepSeek-V3-0324.toml | 22 +++++++++++++++++ .../deepseek-ai/DeepSeek-V3.1-Terminus.toml | 23 ++++++++++++++++++ .../deepinfra/deepseek-ai/DeepSeek-V3.1.toml | 23 ++++++++++++++++++ .../deepinfra/deepseek-ai/DeepSeek-V3.2.toml | 23 ++++++++++++++++++ .../deepinfra/deepseek-ai/DeepSeek-V3.toml | 21 ++++++++++++++++ .../deepseek-ai/DeepSeek-V4-Flash-0731.toml | 23 ++++++++++++++++++ .../deepseek-ai/DeepSeek-V4-Flash.toml | 23 ++++++++++++++++++ .../deepseek-ai/DeepSeek-V4-Pro.toml | 23 ++++++++++++++++++ .../deepinfra/google/gemini-2.5-flash.toml | 16 +++++++++++++ .../deepinfra/google/gemini-2.5-pro.toml | 16 +++++++++++++ .../google/gemini-3.1-flash-lite.toml | 17 +++++++++++++ .../deepinfra/google/gemini-3.1-pro.toml | 22 +++++++++++++++++ .../deepinfra/google/gemini-3.5-flash.toml | 17 +++++++++++++ .../deepinfra/google/gemma-3-12b-it.toml | 21 ++++++++++++++++ .../deepinfra/google/gemma-3-27b-it.toml | 21 ++++++++++++++++ .../deepinfra/google/gemma-3-4b-it.toml | 21 ++++++++++++++++ .../deepinfra/google/gemma-4-26B-A4B-it.toml | 15 ++++++++++++ .../google/gemma-4-31B-it-Ultra.toml | 22 +++++++++++++++++ .../google/gemma-4-31B-it-turbo.toml | 23 ++++++++++++++++++ .../deepinfra/google/gemma-4-31B-it.toml | 16 +++++++++++++ .../deepinfra/google/gemma-4-E4B-it.toml | 18 ++++++++++++++ .../Llama-3.2-11B-Vision-Instruct.toml | 21 ++++++++++++++++ .../meta-llama/Llama-3.2-3B-Instruct.toml | 21 ++++++++++++++++ .../Llama-3.3-70B-Instruct-Turbo.toml | 21 ++++++++++++++++ .../meta-llama/Llama-3.3-70B-Instruct.toml | 13 ++++++++++ ...lama-4-Maverick-17B-128E-Instruct-FP8.toml | 21 ++++++++++++++++ .../Llama-4-Scout-17B-16E-Instruct.toml | 21 ++++++++++++++++ .../meta-llama/Llama-Guard-3-8B.toml | 21 ++++++++++++++++ .../meta-llama/Llama-Guard-4-12B.toml | 21 ++++++++++++++++ .../meta-llama/Meta-Llama-3-8B-Instruct.toml | 21 ++++++++++++++++ .../Meta-Llama-3.1-70B-Instruct-Turbo.toml | 21 ++++++++++++++++ .../Meta-Llama-3.1-70B-Instruct.toml | 21 ++++++++++++++++ .../Meta-Llama-3.1-8B-Instruct-Turbo.toml | 21 ++++++++++++++++ .../Meta-Llama-3.1-8B-Instruct.toml | 21 ++++++++++++++++ .../deepinfra/microsoft/WizardLM-2-8x22B.toml | 21 ++++++++++++++++ .../models/deepinfra/microsoft/phi-4.toml | 21 ++++++++++++++++ .../mistralai/Mistral-Nemo-Instruct-2407.toml | 21 ++++++++++++++++ .../Mistral-Small-24B-Instruct-2501.toml | 21 ++++++++++++++++ .../Mistral-Small-3.2-24B-Instruct-2506.toml | 21 ++++++++++++++++ .../mistralai/Mixtral-8x7B-Instruct-v0.1.toml | 21 ++++++++++++++++ .../moonshotai/Kimi-K2-Instruct-0905.toml | 22 +++++++++++++++++ .../moonshotai/Kimi-K2-Instruct.toml | 21 ++++++++++++++++ .../deepinfra/moonshotai/Kimi-K2.5.toml | 13 ++++++++++ .../deepinfra/moonshotai/Kimi-K2.6.toml | 13 ++++++++++ .../deepinfra/moonshotai/Kimi-K2.7-Code.toml | 12 ++++++++++ .../deepinfra/nemotron-3-ultra-550b-a55b.toml | 14 +++++++++++ .../Llama-3.1-Nemotron-70B-Instruct.toml | 13 ++++++++++ .../Llama-3.3-Nemotron-Super-49B-v1.5.toml | 10 ++++++++ .../NVIDIA-Nemotron-3-Super-120B-A12B.toml | 22 +++++++++++++++++ ...VIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml | 23 ++++++++++++++++++ .../NVIDIA-Nemotron-3-Ultra-550B-A55B.toml | 23 ++++++++++++++++++ .../nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml | 21 ++++++++++++++++ .../nvidia/Nemotron-3-Nano-30B-A3B.toml | 11 +++++++++ ...emotron-3-Nano-Omni-30B-A3B-Reasoning.toml | 18 ++++++++++++++ .../nvidia/Nemotron-Content-Safety-3.5.toml | 21 ++++++++++++++++ .../deepinfra/openai/gpt-oss-120b-Turbo.toml | 22 +++++++++++++++++ .../deepinfra/openai/gpt-oss-120b-Ultra.toml | 22 +++++++++++++++++ .../models/deepinfra/openai/gpt-oss-120b.toml | 11 +++++++++ .../models/deepinfra/openai/gpt-oss-20b.toml | 11 +++++++++ .../deepinfra/stepfun-ai/Step-3.5-Flash.toml | 15 ++++++++++++ .../deepinfra/stepfun-ai/Step-3.7-Flash.toml | 16 +++++++++++++ .../edenai/models/deepinfra/tencent/Hy3.toml | 14 +++++++++++ .../thinkingmachines/Inkling-Small.toml | 23 ++++++++++++++++++ .../deepinfra/thinkingmachines/Inkling.toml | 16 +++++++++++++ .../models/deepinfra/zai-org/GLM-4.5.toml | 13 ++++++++++ .../models/deepinfra/zai-org/GLM-4.6.toml | 14 +++++++++++ .../deepinfra/zai-org/GLM-4.7-Flash.toml | 14 +++++++++++ .../models/deepinfra/zai-org/GLM-4.7.toml | 14 +++++++++++ .../models/deepinfra/zai-org/GLM-5.1.toml | 13 ++++++++++ .../models/deepinfra/zai-org/GLM-5.2.toml | 14 +++++++++++ .../models/deepinfra/zai-org/GLM-5.toml | 15 ++++++++++++ .../edenai/models/deepseek/deepseek-chat.toml | 14 +++++++++++ .../models/deepseek/deepseek-reasoner.toml | 16 +++++++++++++ .../models/deepseek/deepseek-v4-flash.toml | 12 ++++++++++ .../models/deepseek/deepseek-v4-pro.toml | 12 ++++++++++ .../models/deepseek-v4-flash-0731.toml | 23 ++++++++++++++++++ .../fireworks/models/deepseek-v4-flash.toml | 23 ++++++++++++++++++ .../fireworks/models/deepseek-v4-pro.toml | 23 ++++++++++++++++++ .../accounts/fireworks/models/glm-5p2.toml | 23 ++++++++++++++++++ .../fireworks/models/gpt-oss-120b.toml | 23 ++++++++++++++++++ .../fireworks/models/gpt-oss-20b.toml | 23 ++++++++++++++++++ .../accounts/fireworks/models/kimi-k2p6.toml | 23 ++++++++++++++++++ .../fireworks/models/kimi-k2p7-code.toml | 23 ++++++++++++++++++ .../accounts/fireworks/models/kimi-k3.toml | 23 ++++++++++++++++++ .../fireworks/models/minimax-m2p7.toml | 23 ++++++++++++++++++ .../accounts/fireworks/models/minimax-m3.toml | 23 ++++++++++++++++++ .../routers/kimi-k2p7-code-fast.toml | 23 ++++++++++++++++++ .../fireworks_ai/deepseek-v4-flash.toml | 13 ++++++++++ .../models/fireworks_ai/deepseek-v4-pro.toml | 14 +++++++++++ .../models/fireworks_ai/gpt-oss-120b.toml | 13 ++++++++++ .../models/fireworks_ai/gpt-oss-20b.toml | 12 ++++++++++ .../edenai/models/fireworks_ai/kimi-k3.toml | 15 ++++++++++++ .../models/google/gemini-2.5-flash-image.toml | 15 ++++++++++++ .../models/google/gemini-2.5-flash-lite.toml | 15 ++++++++++++ .../models/google/gemini-2.5-flash.toml | 14 +++++++++++ .../edenai/models/google/gemini-2.5-pro.toml | 14 +++++++++++ .../models/google/gemini-3-flash-preview.toml | 14 +++++++++++ .../google/gemini-3-pro-image-preview.toml | 15 ++++++++++++ .../models/google/gemini-3-pro-image.toml | 16 +++++++++++++ .../gemini-3.1-flash-image-preview.toml | 11 +++++++++ .../models/google/gemini-3.1-flash-image.toml | 16 +++++++++++++ .../google/gemini-3.1-flash-lite-image.toml | 12 ++++++++++ .../google/gemini-3.1-flash-lite-preview.toml | 15 ++++++++++++ .../models/google/gemini-3.1-flash-lite.toml | 14 +++++++++++ .../gemini-3.1-pro-preview-customtools.toml | 15 ++++++++++++ .../models/google/gemini-3.1-pro-preview.toml | 14 +++++++++++ .../models/google/gemini-3.5-flash-lite.toml | 14 +++++++++++ .../models/google/gemini-3.5-flash.toml | 14 +++++++++++ .../models/google/gemini-3.6-flash.toml | 14 +++++++++++ .../models/google/gemma-4-26b-a4b-it.toml | 15 ++++++++++++ .../edenai/models/google/gemma-4-31b-it.toml | 14 +++++++++++ .../models/groq/llama-3.1-8b-instant.toml | 22 +++++++++++++++++ .../models/groq/llama-3.3-70b-versatile.toml | 22 +++++++++++++++++ .../models/groq/openai/gpt-oss-120b.toml | 12 ++++++++++ .../models/groq/openai/gpt-oss-20b.toml | 12 ++++++++++ .../groq/openai/gpt-oss-safeguard-20b.toml | 23 ++++++++++++++++++ .../edenai/models/groq/qwen/qwen3.6-27b.toml | 17 +++++++++++++ .../models/lilac/google/gemma-4-31b-it.toml | 15 ++++++++++++ .../models/lilac/minimaxai/minimax-m3.toml | 23 ++++++++++++++++++ .../models/lilac/moonshotai/kimi-k2.6.toml | 13 ++++++++++ .../edenai/models/lilac/zai-org/glm-5.2.toml | 14 +++++++++++ .../models/microsoft/gpt-35-turbo-16k.toml | 21 ++++++++++++++++ .../edenai/models/microsoft/gpt-35-turbo.toml | 21 ++++++++++++++++ providers/edenai/models/microsoft/gpt-4.toml | 13 ++++++++++ .../edenai/models/microsoft/gpt-4o-mini.toml | 11 +++++++++ providers/edenai/models/microsoft/gpt-4o.toml | 10 ++++++++ .../edenai/models/microsoft/o1-mini.toml | 23 ++++++++++++++++++ .../edenai/models/microsoft/o3-mini.toml | 12 ++++++++++ .../edenai/models/minimax/MiniMax-M2.1.toml | 12 ++++++++++ .../edenai/models/minimax/MiniMax-M2.5.toml | 12 ++++++++++ .../edenai/models/minimax/MiniMax-M2.7.toml | 12 ++++++++++ .../edenai/models/minimax/MiniMax-M2.toml | 13 ++++++++++ .../edenai/models/minimax/MiniMax-M3.toml | 14 +++++++++++ .../edenai/models/minimax/minimax-m1.toml | 22 +++++++++++++++++ .../edenai/models/mistral/codestral-2405.toml | 21 ++++++++++++++++ .../edenai/models/mistral/codestral-2508.toml | 22 +++++++++++++++++ .../models/mistral/codestral-latest.toml | 11 +++++++++ .../edenai/models/mistral/devstral-2512.toml | 11 +++++++++ .../models/mistral/devstral-latest.toml | 21 ++++++++++++++++ .../mistral/devstral-medium-latest.toml | 8 +++++++ .../models/mistral/devstral-small-latest.toml | 21 ++++++++++++++++ .../mistral/labs-devstral-small-2512.toml | 21 ++++++++++++++++ .../models/mistral/magistral-medium-2509.toml | 22 +++++++++++++++++ .../mistral/magistral-medium-latest.toml | 18 ++++++++++++++ .../mistral/magistral-small-latest.toml | 22 +++++++++++++++++ .../models/mistral/ministral-14b-2512.toml | 22 +++++++++++++++++ .../models/mistral/ministral-3b-2512.toml | 22 +++++++++++++++++ .../models/mistral/ministral-8b-2512.toml | 22 +++++++++++++++++ .../models/mistral/ministral-8b-latest.toml | 21 ++++++++++++++++ .../models/mistral/mistral-large-2402.toml | 21 ++++++++++++++++ .../models/mistral/mistral-large-2407.toml | 22 +++++++++++++++++ .../models/mistral/mistral-large-2512.toml | 12 ++++++++++ .../models/mistral/mistral-large-latest.toml | 12 ++++++++++ .../models/mistral/mistral-medium-2312.toml | 21 ++++++++++++++++ .../models/mistral/mistral-medium-2505.toml | 9 +++++++ .../models/mistral/mistral-medium-2508.toml | 21 ++++++++++++++++ .../models/mistral/mistral-medium-2604.toml | 8 +++++++ .../models/mistral/mistral-medium-3-5.toml | 22 +++++++++++++++++ .../models/mistral/mistral-medium-3.5.toml | 22 +++++++++++++++++ .../models/mistral/mistral-medium-3.toml | 23 ++++++++++++++++++ .../models/mistral/mistral-medium-latest.toml | 8 +++++++ .../edenai/models/mistral/mistral-medium.toml | 22 +++++++++++++++++ .../models/mistral/mistral-small-2603.toml | 13 ++++++++++ .../models/mistral/mistral-small-latest.toml | 13 ++++++++++ .../edenai/models/mistral/mistral-small.toml | 21 ++++++++++++++++ .../models/mistral/mistral-tiny-latest.toml | 21 ++++++++++++++++ .../edenai/models/mistral/mistral-tiny.toml | 21 ++++++++++++++++ .../models/mistral/open-mistral-7b.toml | 21 ++++++++++++++++ .../mistral/open-mistral-nemo-2407.toml | 21 ++++++++++++++++ .../models/mistral/open-mistral-nemo.toml | 21 ++++++++++++++++ .../models/mistral/open-mixtral-8x22b.toml | 21 ++++++++++++++++ .../models/mistral/open-mixtral-8x7b.toml | 21 ++++++++++++++++ .../models/mistral/pixtral-12b-2409.toml | 21 ++++++++++++++++ .../edenai/models/moonshot/kimi-k2.6.toml | 12 ++++++++++ .../models/moonshot/kimi-k2.7-code.toml | 11 +++++++++ providers/edenai/models/moonshot/kimi-k3.toml | 14 +++++++++++ .../models/nebius/MiniMaxAI/MiniMax-M2.5.toml | 22 +++++++++++++++++ .../models/nebius/MiniMaxAI/MiniMax-M3.toml | 22 +++++++++++++++++ .../nebius/NousResearch/Hermes-4-405B.toml | 22 +++++++++++++++++ .../nebius/NousResearch/Hermes-4-70B.toml | 22 +++++++++++++++++ .../nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml | 21 ++++++++++++++++ .../Qwen/Qwen3-235B-A22B-Instruct-2507.toml | 21 ++++++++++++++++ .../Qwen/Qwen3-30B-A3B-Instruct-2507.toml | 21 ++++++++++++++++ .../edenai/models/nebius/Qwen/Qwen3-32B.toml | 14 +++++++++++ .../Qwen/Qwen3-Next-80B-A3B-Thinking.toml | 14 +++++++++++ .../models/nebius/Qwen/Qwen3.5-397B-A17B.toml | 16 +++++++++++++ .../models/nebius/google/gemma-3-27b-it.toml | 21 ++++++++++++++++ .../meta-llama/Llama-3.3-70B-Instruct.toml | 13 ++++++++++ .../models/nebius/moonshotai/Kimi-K2.6.toml | 12 ++++++++++ .../nebius/moonshotai/Kimi-K2.7-Code.toml | 15 ++++++++++++ .../models/nebius/moonshotai/Kimi-K3.toml | 14 +++++++++++ .../nebius/nvidia/Cosmos3-Super-Reasoner.toml | 22 +++++++++++++++++ .../Llama-3_1-Nemotron-Ultra-253B-v1.toml | 22 +++++++++++++++++ .../NVIDIA-Nemotron-3-Nano-30B-A3B.toml | 22 +++++++++++++++++ .../nebius/nvidia/Nemotron-3-Nano-Omni.toml | 22 +++++++++++++++++ .../nvidia/Nemotron-3-Ultra-550b-a55b.toml | 13 ++++++++++ .../nvidia/nemotron-3-super-120b-a12b.toml | 9 +++++++ .../models/nebius/openai/gpt-oss-120b.toml | 11 +++++++++ .../models/nebius/openbmb/MiniCPM-V-4_5.toml | 21 ++++++++++++++++ .../edenai/models/nebius/zai-org/GLM-5.1.toml | 12 ++++++++++ .../models/openai/gpt-3.5-turbo-0125.toml | 21 ++++++++++++++++ .../models/openai/gpt-3.5-turbo-1106.toml | 21 ++++++++++++++++ .../models/openai/gpt-3.5-turbo-16k.toml | 21 ++++++++++++++++ .../edenai/models/openai/gpt-3.5-turbo.toml | 12 ++++++++++ .../edenai/models/openai/gpt-4-0613.toml | 21 ++++++++++++++++ .../models/openai/gpt-4-turbo-2024-04-09.toml | 21 ++++++++++++++++ .../edenai/models/openai/gpt-4-turbo.toml | 14 +++++++++++ .../models/openai/gpt-4.1-2025-04-14.toml | 22 +++++++++++++++++ .../openai/gpt-4.1-mini-2025-04-14.toml | 22 +++++++++++++++++ .../edenai/models/openai/gpt-4.1-mini.toml | 10 ++++++++ .../openai/gpt-4.1-nano-2025-04-14.toml | 22 +++++++++++++++++ .../edenai/models/openai/gpt-4.1-nano.toml | 13 ++++++++++ providers/edenai/models/openai/gpt-4.1.toml | 10 ++++++++ providers/edenai/models/openai/gpt-4.toml | 13 ++++++++++ .../models/openai/gpt-4o-2024-08-06.toml | 14 +++++++++++ .../models/openai/gpt-4o-2024-11-20.toml | 13 ++++++++++ .../models/openai/gpt-4o-mini-2024-07-18.toml | 22 +++++++++++++++++ .../openai/gpt-4o-mini-search-preview.toml | 22 +++++++++++++++++ .../edenai/models/openai/gpt-4o-mini.toml | 10 ++++++++ .../models/openai/gpt-4o-search-preview.toml | 22 +++++++++++++++++ providers/edenai/models/openai/gpt-4o.toml | 11 +++++++++ .../models/openai/gpt-5-2025-08-07.toml | 23 ++++++++++++++++++ .../models/openai/gpt-5-mini-2025-08-07.toml | 23 ++++++++++++++++++ .../edenai/models/openai/gpt-5-mini.toml | 14 +++++++++++ .../models/openai/gpt-5-nano-2025-08-07.toml | 23 ++++++++++++++++++ .../edenai/models/openai/gpt-5-nano.toml | 14 +++++++++++ .../models/openai/gpt-5-pro-2025-10-06.toml | 22 +++++++++++++++++ providers/edenai/models/openai/gpt-5-pro.toml | 13 ++++++++++ .../openai/gpt-5-search-api-2025-10-14.toml | 22 +++++++++++++++++ .../models/openai/gpt-5-search-api.toml | 22 +++++++++++++++++ .../models/openai/gpt-5.1-2025-11-13.toml | 23 ++++++++++++++++++ providers/edenai/models/openai/gpt-5.1.toml | 14 +++++++++++ .../models/openai/gpt-5.2-2025-12-11.toml | 23 ++++++++++++++++++ .../models/openai/gpt-5.2-chat-latest.toml | 15 ++++++++++++ .../models/openai/gpt-5.2-pro-2025-12-11.toml | 22 +++++++++++++++++ .../edenai/models/openai/gpt-5.2-pro.toml | 15 ++++++++++++ providers/edenai/models/openai/gpt-5.2.toml | 15 ++++++++++++ .../models/openai/gpt-5.3-chat-latest.toml | 15 ++++++++++++ .../edenai/models/openai/gpt-5.3-codex.toml | 12 ++++++++++ .../models/openai/gpt-5.4-2026-03-05.toml | 23 ++++++++++++++++++ .../openai/gpt-5.4-mini-2026-03-17.toml | 23 ++++++++++++++++++ .../edenai/models/openai/gpt-5.4-mini.toml | 14 +++++++++++ .../openai/gpt-5.4-nano-2026-03-17.toml | 23 ++++++++++++++++++ .../edenai/models/openai/gpt-5.4-nano.toml | 14 +++++++++++ .../models/openai/gpt-5.4-pro-2026-03-05.toml | 23 ++++++++++++++++++ .../edenai/models/openai/gpt-5.4-pro.toml | 15 ++++++++++++ providers/edenai/models/openai/gpt-5.4.toml | 11 +++++++++ .../models/openai/gpt-5.5-2026-04-23.toml | 23 ++++++++++++++++++ .../models/openai/gpt-5.5-pro-2026-04-23.toml | 23 ++++++++++++++++++ .../edenai/models/openai/gpt-5.5-pro.toml | 12 ++++++++++ providers/edenai/models/openai/gpt-5.5.toml | 12 ++++++++++ .../edenai/models/openai/gpt-5.6-luna.toml | 12 ++++++++++ .../edenai/models/openai/gpt-5.6-sol.toml | 12 ++++++++++ .../edenai/models/openai/gpt-5.6-terra.toml | 12 ++++++++++ providers/edenai/models/openai/gpt-5.toml | 14 +++++++++++ .../edenai/models/openai/o1-2024-12-17.toml | 23 ++++++++++++++++++ .../models/openai/o1-pro-2025-03-19.toml | 22 +++++++++++++++++ providers/edenai/models/openai/o1-pro.toml | 13 ++++++++++ providers/edenai/models/openai/o1.toml | 12 ++++++++++ .../edenai/models/openai/o3-2025-04-16.toml | 23 ++++++++++++++++++ .../openai/o3-deep-research-2025-06-26.toml | 23 ++++++++++++++++++ .../models/openai/o3-deep-research.toml | 16 +++++++++++++ .../models/openai/o3-mini-2025-01-31.toml | 23 ++++++++++++++++++ providers/edenai/models/openai/o3-mini.toml | 16 +++++++++++++ .../models/openai/o3-pro-2025-06-10.toml | 22 +++++++++++++++++ providers/edenai/models/openai/o3-pro.toml | 13 ++++++++++ providers/edenai/models/openai/o3.toml | 11 +++++++++ .../models/openai/o4-mini-2025-04-16.toml | 23 ++++++++++++++++++ .../o4-mini-deep-research-2025-06-26.toml | 23 ++++++++++++++++++ .../models/openai/o4-mini-deep-research.toml | 16 +++++++++++++ providers/edenai/models/openai/o4-mini.toml | 14 +++++++++++ .../ovhcloud/Meta-Llama-3_3-70B-Instruct.toml | 21 ++++++++++++++++ .../ovhcloud/Mistral-7B-Instruct-v0.3.toml | 21 ++++++++++++++++ .../ovhcloud/Mistral-Nemo-Instruct-2407.toml | 21 ++++++++++++++++ .../Mistral-Small-3.2-24B-Instruct-2506.toml | 21 ++++++++++++++++ .../ovhcloud/Qwen2.5-VL-72B-Instruct.toml | 21 ++++++++++++++++ .../edenai/models/ovhcloud/Qwen3-32B.toml | 14 +++++++++++ .../Qwen3-Coder-30B-A3B-Instruct.toml | 13 ++++++++++ .../models/ovhcloud/Qwen3.5-397B-A17B.toml | 18 ++++++++++++++ .../edenai/models/ovhcloud/Qwen3.5-9B.toml | 14 +++++++++++ .../edenai/models/ovhcloud/Qwen3.6-27B.toml | 18 ++++++++++++++ .../edenai/models/ovhcloud/gpt-oss-120b.toml | 13 ++++++++++ .../edenai/models/ovhcloud/gpt-oss-20b.toml | 13 ++++++++++ .../perplexityai/sonar-deep-research.toml | 23 ++++++++++++++++++ .../edenai/models/perplexityai/sonar-pro.toml | 11 +++++++++ .../perplexityai/sonar-reasoning-pro.toml | 12 ++++++++++ .../edenai/models/perplexityai/sonar.toml | 16 +++++++++++++ .../edenai/models/qwen/deepseek-v3.2.toml | 24 +++++++++++++++++++ .../edenai/models/qwen/deepseek-v4-flash.toml | 11 +++++++++ .../edenai/models/qwen/deepseek-v4-pro.toml | 11 +++++++++ providers/edenai/models/qwen/glm-5.1.toml | 12 ++++++++++ .../models/qwen/glm-5.2-fast-preview.toml | 22 +++++++++++++++++ providers/edenai/models/qwen/glm-5.2.toml | 13 ++++++++++ .../edenai/models/qwen/kimi-k2.7-code.toml | 8 +++++++ .../models/qwen/qwen-flash-2025-07-28.toml | 22 +++++++++++++++++ .../models/qwen/qwen-flash-character.toml | 22 +++++++++++++++++ providers/edenai/models/qwen/qwen-flash.toml | 16 +++++++++++++ providers/edenai/models/qwen/qwen-max.toml | 14 +++++++++++ .../edenai/models/qwen/qwen-mt-flash.toml | 21 ++++++++++++++++ .../edenai/models/qwen/qwen-mt-lite.toml | 21 ++++++++++++++++ .../edenai/models/qwen/qwen-mt-plus.toml | 21 ++++++++++++++++ .../edenai/models/qwen/qwen-mt-turbo.toml | 21 ++++++++++++++++ .../models/qwen/qwen-plus-2025-01-25.toml | 22 +++++++++++++++++ .../models/qwen/qwen-plus-2025-04-28.toml | 23 ++++++++++++++++++ .../models/qwen/qwen-plus-2025-07-14.toml | 23 ++++++++++++++++++ .../models/qwen/qwen-plus-2025-07-28.toml | 23 ++++++++++++++++++ .../models/qwen/qwen-plus-2025-09-11.toml | 23 ++++++++++++++++++ .../models/qwen/qwen-plus-2025-12-01.toml | 23 ++++++++++++++++++ .../models/qwen/qwen-plus-character-ja.toml | 22 +++++++++++++++++ .../models/qwen/qwen-plus-character.toml | 22 +++++++++++++++++ .../edenai/models/qwen/qwen-plus-latest.toml | 23 ++++++++++++++++++ providers/edenai/models/qwen/qwen-plus.toml | 16 +++++++++++++ providers/edenai/models/qwen/qwen-turbo.toml | 17 +++++++++++++ providers/edenai/models/qwen/qwen-vl-max.toml | 18 ++++++++++++++ .../edenai/models/qwen/qwen-vl-plus.toml | 18 ++++++++++++++ providers/edenai/models/qwen/qwen3-14b.toml | 23 ++++++++++++++++++ .../qwen/qwen3-235b-a22b-instruct-2507.toml | 21 ++++++++++++++++ .../qwen/qwen3-235b-a22b-thinking-2507.toml | 22 +++++++++++++++++ .../edenai/models/qwen/qwen3-235b-a22b.toml | 13 ++++++++++ .../qwen/qwen3-30b-a3b-instruct-2507.toml | 21 ++++++++++++++++ .../qwen/qwen3-30b-a3b-thinking-2507.toml | 22 +++++++++++++++++ .../edenai/models/qwen/qwen3-30b-a3b.toml | 23 ++++++++++++++++++ providers/edenai/models/qwen/qwen3-32b.toml | 13 ++++++++++ providers/edenai/models/qwen/qwen3-8b.toml | 23 ++++++++++++++++++ .../qwen/qwen3-coder-30b-a3b-instruct.toml | 11 +++++++++ .../qwen/qwen3-coder-480b-a35b-instruct.toml | 12 ++++++++++ .../qwen/qwen3-coder-flash-2025-07-28.toml | 21 ++++++++++++++++ .../edenai/models/qwen/qwen3-coder-flash.toml | 14 +++++++++++ .../edenai/models/qwen/qwen3-coder-next.toml | 21 ++++++++++++++++ .../qwen/qwen3-coder-plus-2025-07-22.toml | 21 ++++++++++++++++ .../qwen/qwen3-coder-plus-2025-09-23.toml | 21 ++++++++++++++++ .../edenai/models/qwen/qwen3-coder-plus.toml | 15 ++++++++++++ .../models/qwen/qwen3-max-2025-09-23.toml | 21 ++++++++++++++++ .../models/qwen/qwen3-max-2026-01-23.toml | 22 +++++++++++++++++ .../edenai/models/qwen/qwen3-max-preview.toml | 23 ++++++++++++++++++ providers/edenai/models/qwen/qwen3-max.toml | 15 ++++++++++++ .../qwen/qwen3-next-80b-a3b-instruct.toml | 11 +++++++++ .../qwen/qwen3-next-80b-a3b-thinking.toml | 12 ++++++++++ .../qwen/qwen3-vl-235b-a22b-instruct.toml | 21 ++++++++++++++++ .../qwen/qwen3-vl-235b-a22b-thinking.toml | 22 +++++++++++++++++ .../qwen/qwen3-vl-30b-a3b-instruct.toml | 21 ++++++++++++++++ .../qwen/qwen3-vl-30b-a3b-thinking.toml | 22 +++++++++++++++++ .../models/qwen/qwen3-vl-32b-instruct.toml | 21 ++++++++++++++++ .../models/qwen/qwen3-vl-32b-thinking.toml | 22 +++++++++++++++++ .../models/qwen/qwen3-vl-8b-instruct.toml | 21 ++++++++++++++++ .../models/qwen/qwen3-vl-8b-thinking.toml | 22 +++++++++++++++++ .../qwen/qwen3-vl-flash-2025-10-15.toml | 22 +++++++++++++++++ .../qwen/qwen3-vl-flash-2026-01-22.toml | 21 ++++++++++++++++ .../edenai/models/qwen/qwen3-vl-flash.toml | 24 +++++++++++++++++++ .../models/qwen/qwen3-vl-plus-2025-09-23.toml | 22 +++++++++++++++++ .../models/qwen/qwen3-vl-plus-2025-12-19.toml | 22 +++++++++++++++++ .../edenai/models/qwen/qwen3-vl-plus.toml | 20 ++++++++++++++++ .../edenai/models/qwen/qwen3.5-122b-a10b.toml | 14 +++++++++++ providers/edenai/models/qwen/qwen3.5-27b.toml | 14 +++++++++++ .../edenai/models/qwen/qwen3.5-35b-a3b.toml | 14 +++++++++++ .../edenai/models/qwen/qwen3.5-397b-a17b.toml | 14 +++++++++++ .../models/qwen/qwen3.5-flash-2026-02-23.toml | 22 +++++++++++++++++ .../edenai/models/qwen/qwen3.5-flash.toml | 23 ++++++++++++++++++ .../models/qwen/qwen3.5-plus-2026-02-15.toml | 22 +++++++++++++++++ .../models/qwen/qwen3.5-plus-2026-04-20.toml | 23 ++++++++++++++++++ .../edenai/models/qwen/qwen3.5-plus.toml | 15 ++++++++++++ providers/edenai/models/qwen/qwen3.6-27b.toml | 14 +++++++++++ .../edenai/models/qwen/qwen3.6-35b-a3b.toml | 14 +++++++++++ .../models/qwen/qwen3.6-flash-2026-04-16.toml | 22 +++++++++++++++++ .../edenai/models/qwen/qwen3.6-flash.toml | 12 ++++++++++ .../models/qwen/qwen3.6-max-preview.toml | 14 +++++++++++ .../models/qwen/qwen3.6-plus-2026-04-02.toml | 22 +++++++++++++++++ .../edenai/models/qwen/qwen3.6-plus.toml | 13 ++++++++++ .../models/qwen/qwen3.7-flash-2026-07-15.toml | 24 +++++++++++++++++++ .../edenai/models/qwen/qwen3.7-flash.toml | 24 +++++++++++++++++++ .../models/qwen/qwen3.7-max-2026-05-17.toml | 22 +++++++++++++++++ .../models/qwen/qwen3.7-max-2026-05-20.toml | 23 ++++++++++++++++++ .../models/qwen/qwen3.7-max-2026-06-08.toml | 24 +++++++++++++++++++ .../models/qwen/qwen3.7-max-preview.toml | 22 +++++++++++++++++ providers/edenai/models/qwen/qwen3.7-max.toml | 14 +++++++++++ .../models/qwen/qwen3.7-plus-2026-05-26.toml | 24 +++++++++++++++++++ .../edenai/models/qwen/qwen3.7-plus.toml | 15 ++++++++++++ providers/edenai/models/qwen/qwq-plus.toml | 14 +++++++++++ .../devstral-2-123b-instruct-2512.toml | 21 ++++++++++++++++ .../models/scaleway/gemma-3-27b-it.toml | 21 ++++++++++++++++ .../models/scaleway/gemma-4-26b-a4b-it.toml | 14 +++++++++++ providers/edenai/models/scaleway/glm-5.2.toml | 14 +++++++++++ .../edenai/models/scaleway/gpt-oss-120b.toml | 14 +++++++++++ .../edenai/models/scaleway/holo2-30b-a3b.toml | 22 +++++++++++++++++ .../scaleway/llama-3.3-70b-instruct.toml | 13 ++++++++++ .../scaleway/mistral-medium-3.5-128b.toml | 22 +++++++++++++++++ .../mistral-small-3.2-24b-instruct-2506.toml | 21 ++++++++++++++++ .../models/scaleway/pixtral-12b-2409.toml | 21 ++++++++++++++++ .../qwen3-235b-a22b-instruct-2507.toml | 21 ++++++++++++++++ .../qwen3-coder-30b-a3b-instruct.toml | 13 ++++++++++ .../models/scaleway/qwen3.5-397b-a17b.toml | 17 +++++++++++++ .../models/scaleway/qwen3.6-35b-a3b.toml | 17 +++++++++++++ .../scaleway/voxtral-small-24b-2507.toml | 21 ++++++++++++++++ .../together_ai/LiquidAI/LFM2.5-8B-A1B.toml | 21 ++++++++++++++++ .../together_ai/MiniMaxAI/MiniMax-M3.toml | 23 ++++++++++++++++++ .../Qwen/Qwen2.5-7B-Instruct-Turbo.toml | 21 ++++++++++++++++ .../models/together_ai/Qwen/Qwen3.5-9B.toml | 16 +++++++++++++ .../arize-ai/qwen-2-1.5b-instruct.toml | 21 ++++++++++++++++ .../deepcogito/cogito-v2-1-671b.toml | 22 +++++++++++++++++ .../deepseek-ai/DeepSeek-V4-Pro.toml | 23 ++++++++++++++++++ .../together_ai/google/gemma-3n-E4B-it.toml | 21 ++++++++++++++++ .../together_ai/google/gemma-4-31B-it.toml | 15 ++++++++++++ .../Llama-3.3-70B-Instruct-Turbo.toml | 21 ++++++++++++++++ .../meta-llama/Llama-Guard-4-12B.toml | 21 ++++++++++++++++ .../together_ai/moonshotai/Kimi-K2.6.toml | 13 ++++++++++ .../moonshotai/Kimi-K2.7-Code.toml | 12 ++++++++++ .../together_ai/moonshotai/Kimi-K3.toml | 16 +++++++++++++ .../nvidia/nemotron-3-ultra-550b-a55b.toml | 14 +++++++++++ .../together_ai/openai/gpt-oss-120b.toml | 11 +++++++++ .../together_ai/openai/gpt-oss-20b.toml | 11 +++++++++ .../together_ai/pearl-ai/gemma-4-31b-it.toml | 22 +++++++++++++++++ .../thinkingmachines/Inkling-Small.toml | 23 ++++++++++++++++++ .../together_ai/thinkingmachines/Inkling.toml | 15 ++++++++++++ .../models/together_ai/zai-org/GLM-5.2.toml | 14 +++++++++++ .../edenai/models/vertex/claude-fable-5.toml | 13 ++++++++++ .../models/vertex/claude-fable-5@eu.toml | 13 ++++++++++ .../models/vertex/claude-haiku-4-5.toml | 13 ++++++++++ .../edenai/models/vertex/claude-opus-4-1.toml | 13 ++++++++++ .../edenai/models/vertex/claude-opus-4-5.toml | 13 ++++++++++ .../edenai/models/vertex/claude-opus-4-6.toml | 14 +++++++++++ .../edenai/models/vertex/claude-opus-4-7.toml | 13 ++++++++++ .../models/vertex/claude-opus-4-7@eu.toml | 13 ++++++++++ .../models/vertex/claude-opus-4-7@us.toml | 13 ++++++++++ .../edenai/models/vertex/claude-opus-4-8.toml | 14 +++++++++++ .../models/vertex/claude-opus-4-8@eu.toml | 14 +++++++++++ .../models/vertex/claude-opus-4-8@us.toml | 14 +++++++++++ .../models/vertex/claude-sonnet-4-5.toml | 14 +++++++++++ .../models/vertex/claude-sonnet-4-6.toml | 13 ++++++++++ .../edenai/models/vertex/claude-sonnet-5.toml | 13 ++++++++++ .../models/vertex/claude-sonnet-5@eu.toml | 13 ++++++++++ .../models/vertex/claude-sonnet-5@us.toml | 13 ++++++++++ .../deepseek-ai/deepseek-v3.2-maas.toml | 22 +++++++++++++++++ .../deepseek-ai/deepseek-v3.2-maas@eu.toml | 22 +++++++++++++++++ .../deepseek-ai/deepseek-v3.2-maas@us.toml | 22 +++++++++++++++++ .../models/vertex/gemini-2.5-flash-image.toml | 12 ++++++++++ .../models/vertex/gemini-2.5-flash-lite.toml | 15 ++++++++++++ .../models/vertex/gemini-2.5-flash.toml | 14 +++++++++++ .../edenai/models/vertex/gemini-2.5-pro.toml | 14 +++++++++++ .../models/vertex/gemini-3-flash-preview.toml | 14 +++++++++++ .../models/vertex/gemini-3-pro-image.toml | 16 +++++++++++++ .../models/vertex/gemini-3.1-flash-image.toml | 15 ++++++++++++ .../vertex/gemini-3.1-flash-lite-image.toml | 12 ++++++++++ .../models/vertex/gemini-3.1-pro-preview.toml | 14 +++++++++++ .../models/vertex/gemini-3.5-flash-lite.toml | 14 +++++++++++ .../vertex/gemini-3.5-flash-lite@eu.toml | 14 +++++++++++ .../vertex/gemini-3.5-flash-lite@us.toml | 14 +++++++++++ .../models/vertex/gemini-3.5-flash.toml | 14 +++++++++++ .../models/vertex/gemini-3.5-flash@eu.toml | 14 +++++++++++ .../models/vertex/gemini-3.5-flash@us.toml | 14 +++++++++++ .../models/vertex/gemini-3.6-flash.toml | 14 +++++++++++ .../vertex/minimaxai/minimax-m2-maas.toml | 22 +++++++++++++++++ .../moonshotai/kimi-k2-thinking-maas.toml | 22 +++++++++++++++++ .../qwen3-next-80b-a3b-instruct-maas.toml | 21 ++++++++++++++++ .../qwen3-next-80b-a3b-instruct-maas@eu.toml | 21 ++++++++++++++++ .../qwen3-next-80b-a3b-instruct-maas@us.toml | 21 ++++++++++++++++ .../qwen3-next-80b-a3b-thinking-maas.toml | 22 +++++++++++++++++ .../qwen3-next-80b-a3b-thinking-maas@eu.toml | 22 +++++++++++++++++ .../qwen3-next-80b-a3b-thinking-maas@us.toml | 22 +++++++++++++++++ .../models/vertex/zai-org/glm-4.7-maas.toml | 22 +++++++++++++++++ .../vertex/zai-org/glm-4.7-maas@eu.toml | 22 +++++++++++++++++ .../vertex/zai-org/glm-4.7-maas@us.toml | 22 +++++++++++++++++ providers/edenai/models/xai/grok-3-beta.toml | 22 +++++++++++++++++ .../edenai/models/xai/grok-3-fast-beta.toml | 22 +++++++++++++++++ .../edenai/models/xai/grok-3-fast-latest.toml | 22 +++++++++++++++++ .../edenai/models/xai/grok-3-latest.toml | 22 +++++++++++++++++ .../models/xai/grok-3-mini-fast-beta.toml | 23 ++++++++++++++++++ .../models/xai/grok-3-mini-fast-latest.toml | 23 ++++++++++++++++++ .../edenai/models/xai/grok-3-mini-fast.toml | 23 ++++++++++++++++++ .../edenai/models/xai/grok-3-mini-latest.toml | 23 ++++++++++++++++++ providers/edenai/models/xai/grok-3.toml | 22 +++++++++++++++++ providers/edenai/models/xai/grok-4-0709.toml | 21 ++++++++++++++++ .../grok-4-1-fast-non-reasoning-latest.toml | 22 +++++++++++++++++ .../xai/grok-4-1-fast-non-reasoning.toml | 22 +++++++++++++++++ .../xai/grok-4-1-fast-reasoning-latest.toml | 23 ++++++++++++++++++ .../models/xai/grok-4-1-fast-reasoning.toml | 23 ++++++++++++++++++ .../edenai/models/xai/grok-4-1-fast.toml | 23 ++++++++++++++++++ .../models/xai/grok-4-fast-non-reasoning.toml | 22 +++++++++++++++++ .../models/xai/grok-4-fast-reasoning.toml | 22 +++++++++++++++++ providers/edenai/models/xai/grok-4-fast.toml | 23 ++++++++++++++++++ .../edenai/models/xai/grok-4-latest.toml | 21 ++++++++++++++++ .../xai/grok-4.20-0309-non-reasoning.toml | 16 +++++++++++++ .../models/xai/grok-4.20-0309-reasoning.toml | 17 +++++++++++++ .../grok-4.20-beta-0309-non-reasoning.toml | 22 +++++++++++++++++ .../xai/grok-4.20-beta-0309-reasoning.toml | 23 ++++++++++++++++++ providers/edenai/models/xai/grok-4.20.toml | 23 ++++++++++++++++++ .../edenai/models/xai/grok-4.3-latest.toml | 23 ++++++++++++++++++ providers/edenai/models/xai/grok-4.3.toml | 12 ++++++++++ providers/edenai/models/xai/grok-4.5.toml | 11 +++++++++ providers/edenai/models/xai/grok-4.toml | 21 ++++++++++++++++ .../edenai/models/xai/grok-build-0.1.toml | 9 +++++++ .../models/xai/grok-code-fast-1-0825.toml | 23 ++++++++++++++++++ .../edenai/models/xai/grok-code-fast-1.toml | 23 ++++++++++++++++++ .../edenai/models/xai/grok-code-fast.toml | 23 ++++++++++++++++++ 796 files changed, 14876 insertions(+) create mode 100644 providers/edenai/models/amazon/ai21.jamba-1-5-large-v1:0.toml create mode 100644 providers/edenai/models/amazon/ai21.jamba-1-5-mini-v1:0.toml create mode 100644 providers/edenai/models/amazon/amazon.nova-2-lite-v1:0.toml create mode 100644 providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@eu.toml create mode 100644 providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/amazon.nova-lite-v1:0.toml create mode 100644 providers/edenai/models/amazon/amazon.nova-lite-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/amazon.nova-micro-v1:0.toml create mode 100644 providers/edenai/models/amazon/amazon.nova-micro-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/amazon.nova-pro-v1:0.toml create mode 100644 providers/edenai/models/amazon/amazon.nova-pro-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-3-haiku-20240307-v1:0.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-3-sonnet-20240229-v1:0.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@eu.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-1-20250805-v1:0.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@eu.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@eu.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@us.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-7.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-7@eu.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-7@us.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-8.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-8@eu.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-8@us.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-5.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-5@eu.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-5@us.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@eu.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-6.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@eu.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@us.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-5.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-5@eu.toml create mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-5@us.toml create mode 100644 providers/edenai/models/amazon/cohere.command-r-plus-v1:0.toml create mode 100644 providers/edenai/models/amazon/cohere.command-r-v1:0.toml create mode 100644 providers/edenai/models/amazon/deepseek.r1-v1:0.toml create mode 100644 providers/edenai/models/amazon/deepseek.v3.2.toml create mode 100644 providers/edenai/models/amazon/google.gemma-3-12b-it.toml create mode 100644 providers/edenai/models/amazon/google.gemma-3-12b-it@us.toml create mode 100644 providers/edenai/models/amazon/google.gemma-3-27b-it.toml create mode 100644 providers/edenai/models/amazon/google.gemma-3-27b-it@us.toml create mode 100644 providers/edenai/models/amazon/google.gemma-3-4b-it.toml create mode 100644 providers/edenai/models/amazon/google.gemma-3-4b-it@us.toml create mode 100644 providers/edenai/models/amazon/meta.llama3-1-70b-instruct-v1:0.toml create mode 100644 providers/edenai/models/amazon/meta.llama3-1-8b-instruct-v1:0.toml create mode 100644 providers/edenai/models/amazon/meta.llama3-3-70b-instruct-v1:0.toml create mode 100644 providers/edenai/models/amazon/meta.llama3-70b-instruct-v1:0.toml create mode 100644 providers/edenai/models/amazon/meta.llama3-8b-instruct-v1:0.toml create mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.1.toml create mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.1@us.toml create mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.5.toml create mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.5@us.toml create mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.toml create mode 100644 providers/edenai/models/amazon/minimax.minimax-m2@us.toml create mode 100644 providers/edenai/models/amazon/mistral.devstral-2-123b.toml create mode 100644 providers/edenai/models/amazon/mistral.devstral-2-123b@us.toml create mode 100644 providers/edenai/models/amazon/mistral.magistral-small-2509.toml create mode 100644 providers/edenai/models/amazon/mistral.magistral-small-2509@us.toml create mode 100644 providers/edenai/models/amazon/mistral.ministral-3-14b-instruct.toml create mode 100644 providers/edenai/models/amazon/mistral.ministral-3-14b-instruct@us.toml create mode 100644 providers/edenai/models/amazon/mistral.ministral-3-3b-instruct.toml create mode 100644 providers/edenai/models/amazon/mistral.ministral-3-3b-instruct@us.toml create mode 100644 providers/edenai/models/amazon/mistral.ministral-3-8b-instruct.toml create mode 100644 providers/edenai/models/amazon/mistral.ministral-3-8b-instruct@us.toml create mode 100644 providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2.toml create mode 100644 providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2@us.toml create mode 100644 providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0.toml create mode 100644 providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/mistral.mistral-large-3-675b-instruct.toml create mode 100644 providers/edenai/models/amazon/mistral.mistral-small-2402-v1:0.toml create mode 100644 providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1.toml create mode 100644 providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1@us.toml create mode 100644 providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0.toml create mode 100644 providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507.toml create mode 100644 providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507@us.toml create mode 100644 providers/edenai/models/amazon/mistral.voxtral-small-24b-2507.toml create mode 100644 providers/edenai/models/amazon/mistral.voxtral-small-24b-2507@us.toml create mode 100644 providers/edenai/models/amazon/moonshot.kimi-k2-thinking.toml create mode 100644 providers/edenai/models/amazon/moonshotai.kimi-k2.5.toml create mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2.toml create mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2@us.toml create mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b.toml create mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b@us.toml create mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2.toml create mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2@us.toml create mode 100644 providers/edenai/models/amazon/nvidia.nemotron-super-3-120b.toml create mode 100644 providers/edenai/models/amazon/nvidia.nemotron-super-3-120b@us.toml create mode 100644 providers/edenai/models/amazon/openai.gpt-oss-120b-1:0.toml create mode 100644 providers/edenai/models/amazon/openai.gpt-oss-120b-1:0@us.toml create mode 100644 providers/edenai/models/amazon/openai.gpt-oss-20b-1:0.toml create mode 100644 providers/edenai/models/amazon/openai.gpt-oss-20b-1:0@us.toml create mode 100644 providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b.toml create mode 100644 providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b@us.toml create mode 100644 providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b.toml create mode 100644 providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b@us.toml create mode 100644 providers/edenai/models/amazon/qwen.qwen3-32b-v1:0.toml create mode 100644 providers/edenai/models/amazon/qwen.qwen3-32b-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml create mode 100644 providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0@us.toml create mode 100644 providers/edenai/models/amazon/qwen.qwen3-coder-next.toml create mode 100644 providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b.toml create mode 100644 providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b@us.toml create mode 100644 providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b.toml create mode 100644 providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b@us.toml create mode 100644 providers/edenai/models/amazon/writer.palmyra-x4-v1:0.toml create mode 100644 providers/edenai/models/amazon/writer.palmyra-x5-v1:0.toml create mode 100644 providers/edenai/models/amazon/zai.glm-4.7-flash.toml create mode 100644 providers/edenai/models/amazon/zai.glm-4.7-flash@us.toml create mode 100644 providers/edenai/models/amazon/zai.glm-4.7.toml create mode 100644 providers/edenai/models/amazon/zai.glm-5.toml create mode 100644 providers/edenai/models/anthropic/claude-fable-5.toml create mode 100644 providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml create mode 100644 providers/edenai/models/anthropic/claude-haiku-4-5.toml create mode 100644 providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml create mode 100644 providers/edenai/models/anthropic/claude-opus-4-1.toml create mode 100644 providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml create mode 100644 providers/edenai/models/anthropic/claude-opus-4-5.toml create mode 100644 providers/edenai/models/anthropic/claude-opus-4-6.toml create mode 100644 providers/edenai/models/anthropic/claude-opus-4-7.toml create mode 100644 providers/edenai/models/anthropic/claude-opus-4-8.toml create mode 100644 providers/edenai/models/anthropic/claude-opus-5.toml create mode 100644 providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml create mode 100644 providers/edenai/models/anthropic/claude-sonnet-4-6.toml create mode 100644 providers/edenai/models/anthropic/claude-sonnet-5.toml create mode 100644 providers/edenai/models/azure/gpt-4o-mini.toml create mode 100644 providers/edenai/models/azure/gpt-4o-mini@us.toml create mode 100644 providers/edenai/models/azure/gpt-4o.toml create mode 100644 providers/edenai/models/azure/gpt-4o@eu.toml create mode 100644 providers/edenai/models/azure/gpt-4o@us.toml create mode 100644 providers/edenai/models/azure/gpt-5-codex.toml create mode 100644 providers/edenai/models/azure/gpt-5-mini.toml create mode 100644 providers/edenai/models/azure/gpt-5-mini@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5-mini@us.toml create mode 100644 providers/edenai/models/azure/gpt-5-nano.toml create mode 100644 providers/edenai/models/azure/gpt-5-nano@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5-nano@us.toml create mode 100644 providers/edenai/models/azure/gpt-5-pro.toml create mode 100644 providers/edenai/models/azure/gpt-5.1-codex-max.toml create mode 100644 providers/edenai/models/azure/gpt-5.1-codex-mini.toml create mode 100644 providers/edenai/models/azure/gpt-5.1-codex.toml create mode 100644 providers/edenai/models/azure/gpt-5.1.toml create mode 100644 providers/edenai/models/azure/gpt-5.1@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5.1@us.toml create mode 100644 providers/edenai/models/azure/gpt-5.2-codex.toml create mode 100644 providers/edenai/models/azure/gpt-5.2.toml create mode 100644 providers/edenai/models/azure/gpt-5.2@us.toml create mode 100644 providers/edenai/models/azure/gpt-5.3-codex.toml create mode 100644 providers/edenai/models/azure/gpt-5.4-mini.toml create mode 100644 providers/edenai/models/azure/gpt-5.4-mini@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5.4-mini@us.toml create mode 100644 providers/edenai/models/azure/gpt-5.4-nano.toml create mode 100644 providers/edenai/models/azure/gpt-5.4-nano@us.toml create mode 100644 providers/edenai/models/azure/gpt-5.4-pro.toml create mode 100644 providers/edenai/models/azure/gpt-5.4.toml create mode 100644 providers/edenai/models/azure/gpt-5.4@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5.4@us.toml create mode 100644 providers/edenai/models/azure/gpt-5.5.toml create mode 100644 providers/edenai/models/azure/gpt-5.5@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5.5@us.toml create mode 100644 providers/edenai/models/azure/gpt-5.6-luna.toml create mode 100644 providers/edenai/models/azure/gpt-5.6-luna@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5.6-luna@us.toml create mode 100644 providers/edenai/models/azure/gpt-5.6-sol.toml create mode 100644 providers/edenai/models/azure/gpt-5.6-sol@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5.6-sol@us.toml create mode 100644 providers/edenai/models/azure/gpt-5.6-terra.toml create mode 100644 providers/edenai/models/azure/gpt-5.6-terra@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5.6-terra@us.toml create mode 100644 providers/edenai/models/azure/gpt-5.toml create mode 100644 providers/edenai/models/azure/gpt-5@eu.toml create mode 100644 providers/edenai/models/azure/gpt-5@us.toml create mode 100644 providers/edenai/models/azure/o3.toml create mode 100644 providers/edenai/models/azure/o3@eu.toml create mode 100644 providers/edenai/models/azure/o3@us.toml create mode 100644 providers/edenai/models/bytedance/seed-1-6-250915.toml create mode 100644 providers/edenai/models/bytedance/seed-1-6-flash-250715.toml create mode 100644 providers/edenai/models/bytedance/seed-2-0-lite-260228.toml create mode 100644 providers/edenai/models/bytedance/seed-2-0-lite-260428.toml create mode 100644 providers/edenai/models/bytedance/seed-2-0-mini-260215.toml create mode 100644 providers/edenai/models/bytedance/seed-2-0-mini-260428.toml create mode 100644 providers/edenai/models/cerebras/gpt-oss-120b.toml create mode 100644 providers/edenai/models/cerebras/zai-glm-4.7.toml create mode 100644 providers/edenai/models/cloudflare/@cf/aisingapore/gemma-sea-lion-v4-27b-it.toml create mode 100644 providers/edenai/models/cloudflare/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b.toml create mode 100644 providers/edenai/models/cloudflare/@cf/google/gemma-2b-it-lora.toml create mode 100644 providers/edenai/models/cloudflare/@cf/google/gemma-4-26b-a4b-it.toml create mode 100644 providers/edenai/models/cloudflare/@cf/google/gemma-7b-it-lora.toml create mode 100644 providers/edenai/models/cloudflare/@cf/ibm-granite/granite-4.0-h-micro.toml create mode 100644 providers/edenai/models/cloudflare/@cf/meta-llama/llama-2-7b-chat-hf-lora.toml create mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-3.1-8b-instruct-fp8.toml create mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-3.2-1b-instruct.toml create mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-3.2-3b-instruct.toml create mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-3.3-70b-instruct-fp8-fast.toml create mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-4-scout-17b-16e-instruct.toml create mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-guard-3-8b.toml create mode 100644 providers/edenai/models/cloudflare/@cf/mistral/mistral-7b-instruct-v0.2-lora.toml create mode 100644 providers/edenai/models/cloudflare/@cf/mistralai/mistral-small-3.1-24b-instruct.toml create mode 100644 providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.6.toml create mode 100644 providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.7-code.toml create mode 100644 providers/edenai/models/cloudflare/@cf/nvidia/nemotron-3-120b-a12b.toml create mode 100644 providers/edenai/models/cloudflare/@cf/openai/gpt-oss-120b.toml create mode 100644 providers/edenai/models/cloudflare/@cf/openai/gpt-oss-20b.toml create mode 100644 providers/edenai/models/cloudflare/@cf/qwen/qwen2.5-coder-32b-instruct.toml create mode 100644 providers/edenai/models/cloudflare/@cf/qwen/qwen3-30b-a3b-fp8.toml create mode 100644 providers/edenai/models/cloudflare/@cf/qwen/qwq-32b.toml create mode 100644 providers/edenai/models/cloudflare/@cf/zai-org/glm-4.7-flash.toml create mode 100644 providers/edenai/models/cloudflare/@cf/zai-org/glm-5.2.toml create mode 100644 providers/edenai/models/cohere/command-a-03-2025.toml create mode 100644 providers/edenai/models/cohere/command-r-08-2024.toml create mode 100644 providers/edenai/models/cohere/command-r-plus-08-2024.toml create mode 100644 providers/edenai/models/cohere/command-r7b-12-2024.toml create mode 100644 providers/edenai/models/databricks/databricks-claude-haiku-4-5.toml create mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-1.toml create mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-5.toml create mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-6.toml create mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-7.toml create mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-8.toml create mode 100644 providers/edenai/models/databricks/databricks-claude-sonnet-4-5.toml create mode 100644 providers/edenai/models/databricks/databricks-claude-sonnet-4-6.toml create mode 100644 providers/edenai/models/databricks/databricks-gemini-2-5-flash.toml create mode 100644 providers/edenai/models/databricks/databricks-gemini-2-5-pro.toml create mode 100644 providers/edenai/models/databricks/databricks-gemma-3-12b.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-1.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-4-mini.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-4-nano.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-4.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-5.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-6-luna.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-6-sol.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-6-terra.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-mini.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5-nano.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-5.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-oss-120b.toml create mode 100644 providers/edenai/models/databricks/databricks-gpt-oss-20b.toml create mode 100644 providers/edenai/models/databricks/databricks-llama-4-maverick.toml create mode 100644 providers/edenai/models/databricks/databricks-meta-llama-3-1-8b-instruct.toml create mode 100644 providers/edenai/models/databricks/databricks-meta-llama-3-3-70b-instruct.toml create mode 100644 providers/edenai/models/deepinfra/ByteDance/Seed-1.8.toml create mode 100644 providers/edenai/models/deepinfra/ByteDance/Seed-2.0-code.toml create mode 100644 providers/edenai/models/deepinfra/ByteDance/Seed-2.0-mini.toml create mode 100644 providers/edenai/models/deepinfra/ByteDance/Seed-2.0-pro.toml create mode 100644 providers/edenai/models/deepinfra/Gryphe/MythoMax-L2-13b.toml create mode 100644 providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.5.toml create mode 100644 providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7-Turbo.toml create mode 100644 providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7.toml create mode 100644 providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M3.toml create mode 100644 providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-405B.toml create mode 100644 providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-70B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/QwQ-32B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen2.5-72B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen2.5-7B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen2.5-VL-32B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-14B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-30B-A3B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Max-Thinking.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-VL-235B-A22B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-VL-30B-A3B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml create mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml create mode 100644 providers/edenai/models/deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo.toml create mode 100644 providers/edenai/models/deepinfra/Sao10K/L3.1-70B-Euryale-v2.2.toml create mode 100644 providers/edenai/models/deepinfra/Sao10K/L3.3-70B-Euryale-v2.3.toml create mode 100644 providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml create mode 100644 providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5.toml create mode 100644 providers/edenai/models/deepinfra/allenai/olmOCR-7B-0725-FP8.toml create mode 100644 providers/edenai/models/deepinfra/anthropic/claude-3-7-sonnet-latest.toml create mode 100644 providers/edenai/models/deepinfra/anthropic/claude-4-opus.toml create mode 100644 providers/edenai/models/deepinfra/anthropic/claude-4-sonnet.toml create mode 100644 providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml create mode 100644 providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml create mode 100644 providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml create mode 100644 providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml create mode 100644 providers/edenai/models/deepinfra/deepreinforce-ai/Ornith-1.0-35B.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Turbo.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3-0324.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.2.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash-0731.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash.toml create mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Pro.toml create mode 100644 providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml create mode 100644 providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml create mode 100644 providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml create mode 100644 providers/edenai/models/deepinfra/google/gemini-3.1-pro.toml create mode 100644 providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml create mode 100644 providers/edenai/models/deepinfra/google/gemma-3-12b-it.toml create mode 100644 providers/edenai/models/deepinfra/google/gemma-3-27b-it.toml create mode 100644 providers/edenai/models/deepinfra/google/gemma-3-4b-it.toml create mode 100644 providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml create mode 100644 providers/edenai/models/deepinfra/google/gemma-4-31B-it-Ultra.toml create mode 100644 providers/edenai/models/deepinfra/google/gemma-4-31B-it-turbo.toml create mode 100644 providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml create mode 100644 providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-3.2-3B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-Guard-3-8B.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-Guard-4-12B.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3-8B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo.toml create mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/microsoft/WizardLM-2-8x22B.toml create mode 100644 providers/edenai/models/deepinfra/microsoft/phi-4.toml create mode 100644 providers/edenai/models/deepinfra/mistralai/Mistral-Nemo-Instruct-2407.toml create mode 100644 providers/edenai/models/deepinfra/mistralai/Mistral-Small-24B-Instruct-2501.toml create mode 100644 providers/edenai/models/deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506.toml create mode 100644 providers/edenai/models/deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1.toml create mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct-0905.toml create mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2.5.toml create mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2.6.toml create mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2.7-Code.toml create mode 100644 providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml create mode 100644 providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml create mode 100644 providers/edenai/models/deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5.toml create mode 100644 providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B.toml create mode 100644 providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml create mode 100644 providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B.toml create mode 100644 providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml create mode 100644 providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-30B-A3B.toml create mode 100644 providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml create mode 100644 providers/edenai/models/deepinfra/nvidia/Nemotron-Content-Safety-3.5.toml create mode 100644 providers/edenai/models/deepinfra/openai/gpt-oss-120b-Turbo.toml create mode 100644 providers/edenai/models/deepinfra/openai/gpt-oss-120b-Ultra.toml create mode 100644 providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml create mode 100644 providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml create mode 100644 providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml create mode 100644 providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml create mode 100644 providers/edenai/models/deepinfra/tencent/Hy3.toml create mode 100644 providers/edenai/models/deepinfra/thinkingmachines/Inkling-Small.toml create mode 100644 providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml create mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml create mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml create mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml create mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml create mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml create mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml create mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-5.toml create mode 100644 providers/edenai/models/deepseek/deepseek-chat.toml create mode 100644 providers/edenai/models/deepseek/deepseek-reasoner.toml create mode 100644 providers/edenai/models/deepseek/deepseek-v4-flash.toml create mode 100644 providers/edenai/models/deepseek/deepseek-v4-pro.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash-0731.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-pro.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/glm-5p2.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-120b.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-20b.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p6.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p7-code.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k3.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m2p7.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m3.toml create mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/routers/kimi-k2p7-code-fast.toml create mode 100644 providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml create mode 100644 providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml create mode 100644 providers/edenai/models/fireworks_ai/gpt-oss-120b.toml create mode 100644 providers/edenai/models/fireworks_ai/gpt-oss-20b.toml create mode 100644 providers/edenai/models/fireworks_ai/kimi-k3.toml create mode 100644 providers/edenai/models/google/gemini-2.5-flash-image.toml create mode 100644 providers/edenai/models/google/gemini-2.5-flash-lite.toml create mode 100644 providers/edenai/models/google/gemini-2.5-flash.toml create mode 100644 providers/edenai/models/google/gemini-2.5-pro.toml create mode 100644 providers/edenai/models/google/gemini-3-flash-preview.toml create mode 100644 providers/edenai/models/google/gemini-3-pro-image-preview.toml create mode 100644 providers/edenai/models/google/gemini-3-pro-image.toml create mode 100644 providers/edenai/models/google/gemini-3.1-flash-image-preview.toml create mode 100644 providers/edenai/models/google/gemini-3.1-flash-image.toml create mode 100644 providers/edenai/models/google/gemini-3.1-flash-lite-image.toml create mode 100644 providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml create mode 100644 providers/edenai/models/google/gemini-3.1-flash-lite.toml create mode 100644 providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml create mode 100644 providers/edenai/models/google/gemini-3.1-pro-preview.toml create mode 100644 providers/edenai/models/google/gemini-3.5-flash-lite.toml create mode 100644 providers/edenai/models/google/gemini-3.5-flash.toml create mode 100644 providers/edenai/models/google/gemini-3.6-flash.toml create mode 100644 providers/edenai/models/google/gemma-4-26b-a4b-it.toml create mode 100644 providers/edenai/models/google/gemma-4-31b-it.toml create mode 100644 providers/edenai/models/groq/llama-3.1-8b-instant.toml create mode 100644 providers/edenai/models/groq/llama-3.3-70b-versatile.toml create mode 100644 providers/edenai/models/groq/openai/gpt-oss-120b.toml create mode 100644 providers/edenai/models/groq/openai/gpt-oss-20b.toml create mode 100644 providers/edenai/models/groq/openai/gpt-oss-safeguard-20b.toml create mode 100644 providers/edenai/models/groq/qwen/qwen3.6-27b.toml create mode 100644 providers/edenai/models/lilac/google/gemma-4-31b-it.toml create mode 100644 providers/edenai/models/lilac/minimaxai/minimax-m3.toml create mode 100644 providers/edenai/models/lilac/moonshotai/kimi-k2.6.toml create mode 100644 providers/edenai/models/lilac/zai-org/glm-5.2.toml create mode 100644 providers/edenai/models/microsoft/gpt-35-turbo-16k.toml create mode 100644 providers/edenai/models/microsoft/gpt-35-turbo.toml create mode 100644 providers/edenai/models/microsoft/gpt-4.toml create mode 100644 providers/edenai/models/microsoft/gpt-4o-mini.toml create mode 100644 providers/edenai/models/microsoft/gpt-4o.toml create mode 100644 providers/edenai/models/microsoft/o1-mini.toml create mode 100644 providers/edenai/models/microsoft/o3-mini.toml create mode 100644 providers/edenai/models/minimax/MiniMax-M2.1.toml create mode 100644 providers/edenai/models/minimax/MiniMax-M2.5.toml create mode 100644 providers/edenai/models/minimax/MiniMax-M2.7.toml create mode 100644 providers/edenai/models/minimax/MiniMax-M2.toml create mode 100644 providers/edenai/models/minimax/MiniMax-M3.toml create mode 100644 providers/edenai/models/minimax/minimax-m1.toml create mode 100644 providers/edenai/models/mistral/codestral-2405.toml create mode 100644 providers/edenai/models/mistral/codestral-2508.toml create mode 100644 providers/edenai/models/mistral/codestral-latest.toml create mode 100644 providers/edenai/models/mistral/devstral-2512.toml create mode 100644 providers/edenai/models/mistral/devstral-latest.toml create mode 100644 providers/edenai/models/mistral/devstral-medium-latest.toml create mode 100644 providers/edenai/models/mistral/devstral-small-latest.toml create mode 100644 providers/edenai/models/mistral/labs-devstral-small-2512.toml create mode 100644 providers/edenai/models/mistral/magistral-medium-2509.toml create mode 100644 providers/edenai/models/mistral/magistral-medium-latest.toml create mode 100644 providers/edenai/models/mistral/magistral-small-latest.toml create mode 100644 providers/edenai/models/mistral/ministral-14b-2512.toml create mode 100644 providers/edenai/models/mistral/ministral-3b-2512.toml create mode 100644 providers/edenai/models/mistral/ministral-8b-2512.toml create mode 100644 providers/edenai/models/mistral/ministral-8b-latest.toml create mode 100644 providers/edenai/models/mistral/mistral-large-2402.toml create mode 100644 providers/edenai/models/mistral/mistral-large-2407.toml create mode 100644 providers/edenai/models/mistral/mistral-large-2512.toml create mode 100644 providers/edenai/models/mistral/mistral-large-latest.toml create mode 100644 providers/edenai/models/mistral/mistral-medium-2312.toml create mode 100644 providers/edenai/models/mistral/mistral-medium-2505.toml create mode 100644 providers/edenai/models/mistral/mistral-medium-2508.toml create mode 100644 providers/edenai/models/mistral/mistral-medium-2604.toml create mode 100644 providers/edenai/models/mistral/mistral-medium-3-5.toml create mode 100644 providers/edenai/models/mistral/mistral-medium-3.5.toml create mode 100644 providers/edenai/models/mistral/mistral-medium-3.toml create mode 100644 providers/edenai/models/mistral/mistral-medium-latest.toml create mode 100644 providers/edenai/models/mistral/mistral-medium.toml create mode 100644 providers/edenai/models/mistral/mistral-small-2603.toml create mode 100644 providers/edenai/models/mistral/mistral-small-latest.toml create mode 100644 providers/edenai/models/mistral/mistral-small.toml create mode 100644 providers/edenai/models/mistral/mistral-tiny-latest.toml create mode 100644 providers/edenai/models/mistral/mistral-tiny.toml create mode 100644 providers/edenai/models/mistral/open-mistral-7b.toml create mode 100644 providers/edenai/models/mistral/open-mistral-nemo-2407.toml create mode 100644 providers/edenai/models/mistral/open-mistral-nemo.toml create mode 100644 providers/edenai/models/mistral/open-mixtral-8x22b.toml create mode 100644 providers/edenai/models/mistral/open-mixtral-8x7b.toml create mode 100644 providers/edenai/models/mistral/pixtral-12b-2409.toml create mode 100644 providers/edenai/models/moonshot/kimi-k2.6.toml create mode 100644 providers/edenai/models/moonshot/kimi-k2.7-code.toml create mode 100644 providers/edenai/models/moonshot/kimi-k3.toml create mode 100644 providers/edenai/models/nebius/MiniMaxAI/MiniMax-M2.5.toml create mode 100644 providers/edenai/models/nebius/MiniMaxAI/MiniMax-M3.toml create mode 100644 providers/edenai/models/nebius/NousResearch/Hermes-4-405B.toml create mode 100644 providers/edenai/models/nebius/NousResearch/Hermes-4-70B.toml create mode 100644 providers/edenai/models/nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml create mode 100644 providers/edenai/models/nebius/Qwen/Qwen3-235B-A22B-Instruct-2507.toml create mode 100644 providers/edenai/models/nebius/Qwen/Qwen3-30B-A3B-Instruct-2507.toml create mode 100644 providers/edenai/models/nebius/Qwen/Qwen3-32B.toml create mode 100644 providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml create mode 100644 providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml create mode 100644 providers/edenai/models/nebius/google/gemma-3-27b-it.toml create mode 100644 providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml create mode 100644 providers/edenai/models/nebius/moonshotai/Kimi-K2.6.toml create mode 100644 providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml create mode 100644 providers/edenai/models/nebius/moonshotai/Kimi-K3.toml create mode 100644 providers/edenai/models/nebius/nvidia/Cosmos3-Super-Reasoner.toml create mode 100644 providers/edenai/models/nebius/nvidia/Llama-3_1-Nemotron-Ultra-253B-v1.toml create mode 100644 providers/edenai/models/nebius/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B.toml create mode 100644 providers/edenai/models/nebius/nvidia/Nemotron-3-Nano-Omni.toml create mode 100644 providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml create mode 100644 providers/edenai/models/nebius/nvidia/nemotron-3-super-120b-a12b.toml create mode 100644 providers/edenai/models/nebius/openai/gpt-oss-120b.toml create mode 100644 providers/edenai/models/nebius/openbmb/MiniCPM-V-4_5.toml create mode 100644 providers/edenai/models/nebius/zai-org/GLM-5.1.toml create mode 100644 providers/edenai/models/openai/gpt-3.5-turbo-0125.toml create mode 100644 providers/edenai/models/openai/gpt-3.5-turbo-1106.toml create mode 100644 providers/edenai/models/openai/gpt-3.5-turbo-16k.toml create mode 100644 providers/edenai/models/openai/gpt-3.5-turbo.toml create mode 100644 providers/edenai/models/openai/gpt-4-0613.toml create mode 100644 providers/edenai/models/openai/gpt-4-turbo-2024-04-09.toml create mode 100644 providers/edenai/models/openai/gpt-4-turbo.toml create mode 100644 providers/edenai/models/openai/gpt-4.1-2025-04-14.toml create mode 100644 providers/edenai/models/openai/gpt-4.1-mini-2025-04-14.toml create mode 100644 providers/edenai/models/openai/gpt-4.1-mini.toml create mode 100644 providers/edenai/models/openai/gpt-4.1-nano-2025-04-14.toml create mode 100644 providers/edenai/models/openai/gpt-4.1-nano.toml create mode 100644 providers/edenai/models/openai/gpt-4.1.toml create mode 100644 providers/edenai/models/openai/gpt-4.toml create mode 100644 providers/edenai/models/openai/gpt-4o-2024-08-06.toml create mode 100644 providers/edenai/models/openai/gpt-4o-2024-11-20.toml create mode 100644 providers/edenai/models/openai/gpt-4o-mini-2024-07-18.toml create mode 100644 providers/edenai/models/openai/gpt-4o-mini-search-preview.toml create mode 100644 providers/edenai/models/openai/gpt-4o-mini.toml create mode 100644 providers/edenai/models/openai/gpt-4o-search-preview.toml create mode 100644 providers/edenai/models/openai/gpt-4o.toml create mode 100644 providers/edenai/models/openai/gpt-5-2025-08-07.toml create mode 100644 providers/edenai/models/openai/gpt-5-mini-2025-08-07.toml create mode 100644 providers/edenai/models/openai/gpt-5-mini.toml create mode 100644 providers/edenai/models/openai/gpt-5-nano-2025-08-07.toml create mode 100644 providers/edenai/models/openai/gpt-5-nano.toml create mode 100644 providers/edenai/models/openai/gpt-5-pro-2025-10-06.toml create mode 100644 providers/edenai/models/openai/gpt-5-pro.toml create mode 100644 providers/edenai/models/openai/gpt-5-search-api-2025-10-14.toml create mode 100644 providers/edenai/models/openai/gpt-5-search-api.toml create mode 100644 providers/edenai/models/openai/gpt-5.1-2025-11-13.toml create mode 100644 providers/edenai/models/openai/gpt-5.1.toml create mode 100644 providers/edenai/models/openai/gpt-5.2-2025-12-11.toml create mode 100644 providers/edenai/models/openai/gpt-5.2-chat-latest.toml create mode 100644 providers/edenai/models/openai/gpt-5.2-pro-2025-12-11.toml create mode 100644 providers/edenai/models/openai/gpt-5.2-pro.toml create mode 100644 providers/edenai/models/openai/gpt-5.2.toml create mode 100644 providers/edenai/models/openai/gpt-5.3-chat-latest.toml create mode 100644 providers/edenai/models/openai/gpt-5.3-codex.toml create mode 100644 providers/edenai/models/openai/gpt-5.4-2026-03-05.toml create mode 100644 providers/edenai/models/openai/gpt-5.4-mini-2026-03-17.toml create mode 100644 providers/edenai/models/openai/gpt-5.4-mini.toml create mode 100644 providers/edenai/models/openai/gpt-5.4-nano-2026-03-17.toml create mode 100644 providers/edenai/models/openai/gpt-5.4-nano.toml create mode 100644 providers/edenai/models/openai/gpt-5.4-pro-2026-03-05.toml create mode 100644 providers/edenai/models/openai/gpt-5.4-pro.toml create mode 100644 providers/edenai/models/openai/gpt-5.4.toml create mode 100644 providers/edenai/models/openai/gpt-5.5-2026-04-23.toml create mode 100644 providers/edenai/models/openai/gpt-5.5-pro-2026-04-23.toml create mode 100644 providers/edenai/models/openai/gpt-5.5-pro.toml create mode 100644 providers/edenai/models/openai/gpt-5.5.toml create mode 100644 providers/edenai/models/openai/gpt-5.6-luna.toml create mode 100644 providers/edenai/models/openai/gpt-5.6-sol.toml create mode 100644 providers/edenai/models/openai/gpt-5.6-terra.toml create mode 100644 providers/edenai/models/openai/gpt-5.toml create mode 100644 providers/edenai/models/openai/o1-2024-12-17.toml create mode 100644 providers/edenai/models/openai/o1-pro-2025-03-19.toml create mode 100644 providers/edenai/models/openai/o1-pro.toml create mode 100644 providers/edenai/models/openai/o1.toml create mode 100644 providers/edenai/models/openai/o3-2025-04-16.toml create mode 100644 providers/edenai/models/openai/o3-deep-research-2025-06-26.toml create mode 100644 providers/edenai/models/openai/o3-deep-research.toml create mode 100644 providers/edenai/models/openai/o3-mini-2025-01-31.toml create mode 100644 providers/edenai/models/openai/o3-mini.toml create mode 100644 providers/edenai/models/openai/o3-pro-2025-06-10.toml create mode 100644 providers/edenai/models/openai/o3-pro.toml create mode 100644 providers/edenai/models/openai/o3.toml create mode 100644 providers/edenai/models/openai/o4-mini-2025-04-16.toml create mode 100644 providers/edenai/models/openai/o4-mini-deep-research-2025-06-26.toml create mode 100644 providers/edenai/models/openai/o4-mini-deep-research.toml create mode 100644 providers/edenai/models/openai/o4-mini.toml create mode 100644 providers/edenai/models/ovhcloud/Meta-Llama-3_3-70B-Instruct.toml create mode 100644 providers/edenai/models/ovhcloud/Mistral-7B-Instruct-v0.3.toml create mode 100644 providers/edenai/models/ovhcloud/Mistral-Nemo-Instruct-2407.toml create mode 100644 providers/edenai/models/ovhcloud/Mistral-Small-3.2-24B-Instruct-2506.toml create mode 100644 providers/edenai/models/ovhcloud/Qwen2.5-VL-72B-Instruct.toml create mode 100644 providers/edenai/models/ovhcloud/Qwen3-32B.toml create mode 100644 providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml create mode 100644 providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml create mode 100644 providers/edenai/models/ovhcloud/Qwen3.5-9B.toml create mode 100644 providers/edenai/models/ovhcloud/Qwen3.6-27B.toml create mode 100644 providers/edenai/models/ovhcloud/gpt-oss-120b.toml create mode 100644 providers/edenai/models/ovhcloud/gpt-oss-20b.toml create mode 100644 providers/edenai/models/perplexityai/sonar-deep-research.toml create mode 100644 providers/edenai/models/perplexityai/sonar-pro.toml create mode 100644 providers/edenai/models/perplexityai/sonar-reasoning-pro.toml create mode 100644 providers/edenai/models/perplexityai/sonar.toml create mode 100644 providers/edenai/models/qwen/deepseek-v3.2.toml create mode 100644 providers/edenai/models/qwen/deepseek-v4-flash.toml create mode 100644 providers/edenai/models/qwen/deepseek-v4-pro.toml create mode 100644 providers/edenai/models/qwen/glm-5.1.toml create mode 100644 providers/edenai/models/qwen/glm-5.2-fast-preview.toml create mode 100644 providers/edenai/models/qwen/glm-5.2.toml create mode 100644 providers/edenai/models/qwen/kimi-k2.7-code.toml create mode 100644 providers/edenai/models/qwen/qwen-flash-2025-07-28.toml create mode 100644 providers/edenai/models/qwen/qwen-flash-character.toml create mode 100644 providers/edenai/models/qwen/qwen-flash.toml create mode 100644 providers/edenai/models/qwen/qwen-max.toml create mode 100644 providers/edenai/models/qwen/qwen-mt-flash.toml create mode 100644 providers/edenai/models/qwen/qwen-mt-lite.toml create mode 100644 providers/edenai/models/qwen/qwen-mt-plus.toml create mode 100644 providers/edenai/models/qwen/qwen-mt-turbo.toml create mode 100644 providers/edenai/models/qwen/qwen-plus-2025-01-25.toml create mode 100644 providers/edenai/models/qwen/qwen-plus-2025-04-28.toml create mode 100644 providers/edenai/models/qwen/qwen-plus-2025-07-14.toml create mode 100644 providers/edenai/models/qwen/qwen-plus-2025-07-28.toml create mode 100644 providers/edenai/models/qwen/qwen-plus-2025-09-11.toml create mode 100644 providers/edenai/models/qwen/qwen-plus-2025-12-01.toml create mode 100644 providers/edenai/models/qwen/qwen-plus-character-ja.toml create mode 100644 providers/edenai/models/qwen/qwen-plus-character.toml create mode 100644 providers/edenai/models/qwen/qwen-plus-latest.toml create mode 100644 providers/edenai/models/qwen/qwen-plus.toml create mode 100644 providers/edenai/models/qwen/qwen-turbo.toml create mode 100644 providers/edenai/models/qwen/qwen-vl-max.toml create mode 100644 providers/edenai/models/qwen/qwen-vl-plus.toml create mode 100644 providers/edenai/models/qwen/qwen3-14b.toml create mode 100644 providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml create mode 100644 providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml create mode 100644 providers/edenai/models/qwen/qwen3-235b-a22b.toml create mode 100644 providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml create mode 100644 providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml create mode 100644 providers/edenai/models/qwen/qwen3-30b-a3b.toml create mode 100644 providers/edenai/models/qwen/qwen3-32b.toml create mode 100644 providers/edenai/models/qwen/qwen3-8b.toml create mode 100644 providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml create mode 100644 providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml create mode 100644 providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml create mode 100644 providers/edenai/models/qwen/qwen3-coder-flash.toml create mode 100644 providers/edenai/models/qwen/qwen3-coder-next.toml create mode 100644 providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml create mode 100644 providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml create mode 100644 providers/edenai/models/qwen/qwen3-coder-plus.toml create mode 100644 providers/edenai/models/qwen/qwen3-max-2025-09-23.toml create mode 100644 providers/edenai/models/qwen/qwen3-max-2026-01-23.toml create mode 100644 providers/edenai/models/qwen/qwen3-max-preview.toml create mode 100644 providers/edenai/models/qwen/qwen3-max.toml create mode 100644 providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml create mode 100644 providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-flash.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml create mode 100644 providers/edenai/models/qwen/qwen3-vl-plus.toml create mode 100644 providers/edenai/models/qwen/qwen3.5-122b-a10b.toml create mode 100644 providers/edenai/models/qwen/qwen3.5-27b.toml create mode 100644 providers/edenai/models/qwen/qwen3.5-35b-a3b.toml create mode 100644 providers/edenai/models/qwen/qwen3.5-397b-a17b.toml create mode 100644 providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml create mode 100644 providers/edenai/models/qwen/qwen3.5-flash.toml create mode 100644 providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml create mode 100644 providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml create mode 100644 providers/edenai/models/qwen/qwen3.5-plus.toml create mode 100644 providers/edenai/models/qwen/qwen3.6-27b.toml create mode 100644 providers/edenai/models/qwen/qwen3.6-35b-a3b.toml create mode 100644 providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml create mode 100644 providers/edenai/models/qwen/qwen3.6-flash.toml create mode 100644 providers/edenai/models/qwen/qwen3.6-max-preview.toml create mode 100644 providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml create mode 100644 providers/edenai/models/qwen/qwen3.6-plus.toml create mode 100644 providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml create mode 100644 providers/edenai/models/qwen/qwen3.7-flash.toml create mode 100644 providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml create mode 100644 providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml create mode 100644 providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml create mode 100644 providers/edenai/models/qwen/qwen3.7-max-preview.toml create mode 100644 providers/edenai/models/qwen/qwen3.7-max.toml create mode 100644 providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml create mode 100644 providers/edenai/models/qwen/qwen3.7-plus.toml create mode 100644 providers/edenai/models/qwen/qwq-plus.toml create mode 100644 providers/edenai/models/scaleway/devstral-2-123b-instruct-2512.toml create mode 100644 providers/edenai/models/scaleway/gemma-3-27b-it.toml create mode 100644 providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml create mode 100644 providers/edenai/models/scaleway/glm-5.2.toml create mode 100644 providers/edenai/models/scaleway/gpt-oss-120b.toml create mode 100644 providers/edenai/models/scaleway/holo2-30b-a3b.toml create mode 100644 providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml create mode 100644 providers/edenai/models/scaleway/mistral-medium-3.5-128b.toml create mode 100644 providers/edenai/models/scaleway/mistral-small-3.2-24b-instruct-2506.toml create mode 100644 providers/edenai/models/scaleway/pixtral-12b-2409.toml create mode 100644 providers/edenai/models/scaleway/qwen3-235b-a22b-instruct-2507.toml create mode 100644 providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml create mode 100644 providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml create mode 100644 providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml create mode 100644 providers/edenai/models/scaleway/voxtral-small-24b-2507.toml create mode 100644 providers/edenai/models/together_ai/LiquidAI/LFM2.5-8B-A1B.toml create mode 100644 providers/edenai/models/together_ai/MiniMaxAI/MiniMax-M3.toml create mode 100644 providers/edenai/models/together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo.toml create mode 100644 providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml create mode 100644 providers/edenai/models/together_ai/arize-ai/qwen-2-1.5b-instruct.toml create mode 100644 providers/edenai/models/together_ai/deepcogito/cogito-v2-1-671b.toml create mode 100644 providers/edenai/models/together_ai/deepseek-ai/DeepSeek-V4-Pro.toml create mode 100644 providers/edenai/models/together_ai/google/gemma-3n-E4B-it.toml create mode 100644 providers/edenai/models/together_ai/google/gemma-4-31B-it.toml create mode 100644 providers/edenai/models/together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml create mode 100644 providers/edenai/models/together_ai/meta-llama/Llama-Guard-4-12B.toml create mode 100644 providers/edenai/models/together_ai/moonshotai/Kimi-K2.6.toml create mode 100644 providers/edenai/models/together_ai/moonshotai/Kimi-K2.7-Code.toml create mode 100644 providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml create mode 100644 providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml create mode 100644 providers/edenai/models/together_ai/openai/gpt-oss-120b.toml create mode 100644 providers/edenai/models/together_ai/openai/gpt-oss-20b.toml create mode 100644 providers/edenai/models/together_ai/pearl-ai/gemma-4-31b-it.toml create mode 100644 providers/edenai/models/together_ai/thinkingmachines/Inkling-Small.toml create mode 100644 providers/edenai/models/together_ai/thinkingmachines/Inkling.toml create mode 100644 providers/edenai/models/together_ai/zai-org/GLM-5.2.toml create mode 100644 providers/edenai/models/vertex/claude-fable-5.toml create mode 100644 providers/edenai/models/vertex/claude-fable-5@eu.toml create mode 100644 providers/edenai/models/vertex/claude-haiku-4-5.toml create mode 100644 providers/edenai/models/vertex/claude-opus-4-1.toml create mode 100644 providers/edenai/models/vertex/claude-opus-4-5.toml create mode 100644 providers/edenai/models/vertex/claude-opus-4-6.toml create mode 100644 providers/edenai/models/vertex/claude-opus-4-7.toml create mode 100644 providers/edenai/models/vertex/claude-opus-4-7@eu.toml create mode 100644 providers/edenai/models/vertex/claude-opus-4-7@us.toml create mode 100644 providers/edenai/models/vertex/claude-opus-4-8.toml create mode 100644 providers/edenai/models/vertex/claude-opus-4-8@eu.toml create mode 100644 providers/edenai/models/vertex/claude-opus-4-8@us.toml create mode 100644 providers/edenai/models/vertex/claude-sonnet-4-5.toml create mode 100644 providers/edenai/models/vertex/claude-sonnet-4-6.toml create mode 100644 providers/edenai/models/vertex/claude-sonnet-5.toml create mode 100644 providers/edenai/models/vertex/claude-sonnet-5@eu.toml create mode 100644 providers/edenai/models/vertex/claude-sonnet-5@us.toml create mode 100644 providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas.toml create mode 100644 providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@eu.toml create mode 100644 providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@us.toml create mode 100644 providers/edenai/models/vertex/gemini-2.5-flash-image.toml create mode 100644 providers/edenai/models/vertex/gemini-2.5-flash-lite.toml create mode 100644 providers/edenai/models/vertex/gemini-2.5-flash.toml create mode 100644 providers/edenai/models/vertex/gemini-2.5-pro.toml create mode 100644 providers/edenai/models/vertex/gemini-3-flash-preview.toml create mode 100644 providers/edenai/models/vertex/gemini-3-pro-image.toml create mode 100644 providers/edenai/models/vertex/gemini-3.1-flash-image.toml create mode 100644 providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml create mode 100644 providers/edenai/models/vertex/gemini-3.1-pro-preview.toml create mode 100644 providers/edenai/models/vertex/gemini-3.5-flash-lite.toml create mode 100644 providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml create mode 100644 providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml create mode 100644 providers/edenai/models/vertex/gemini-3.5-flash.toml create mode 100644 providers/edenai/models/vertex/gemini-3.5-flash@eu.toml create mode 100644 providers/edenai/models/vertex/gemini-3.5-flash@us.toml create mode 100644 providers/edenai/models/vertex/gemini-3.6-flash.toml create mode 100644 providers/edenai/models/vertex/minimaxai/minimax-m2-maas.toml create mode 100644 providers/edenai/models/vertex/moonshotai/kimi-k2-thinking-maas.toml create mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas.toml create mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@eu.toml create mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@us.toml create mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas.toml create mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@eu.toml create mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@us.toml create mode 100644 providers/edenai/models/vertex/zai-org/glm-4.7-maas.toml create mode 100644 providers/edenai/models/vertex/zai-org/glm-4.7-maas@eu.toml create mode 100644 providers/edenai/models/vertex/zai-org/glm-4.7-maas@us.toml create mode 100644 providers/edenai/models/xai/grok-3-beta.toml create mode 100644 providers/edenai/models/xai/grok-3-fast-beta.toml create mode 100644 providers/edenai/models/xai/grok-3-fast-latest.toml create mode 100644 providers/edenai/models/xai/grok-3-latest.toml create mode 100644 providers/edenai/models/xai/grok-3-mini-fast-beta.toml create mode 100644 providers/edenai/models/xai/grok-3-mini-fast-latest.toml create mode 100644 providers/edenai/models/xai/grok-3-mini-fast.toml create mode 100644 providers/edenai/models/xai/grok-3-mini-latest.toml create mode 100644 providers/edenai/models/xai/grok-3.toml create mode 100644 providers/edenai/models/xai/grok-4-0709.toml create mode 100644 providers/edenai/models/xai/grok-4-1-fast-non-reasoning-latest.toml create mode 100644 providers/edenai/models/xai/grok-4-1-fast-non-reasoning.toml create mode 100644 providers/edenai/models/xai/grok-4-1-fast-reasoning-latest.toml create mode 100644 providers/edenai/models/xai/grok-4-1-fast-reasoning.toml create mode 100644 providers/edenai/models/xai/grok-4-1-fast.toml create mode 100644 providers/edenai/models/xai/grok-4-fast-non-reasoning.toml create mode 100644 providers/edenai/models/xai/grok-4-fast-reasoning.toml create mode 100644 providers/edenai/models/xai/grok-4-fast.toml create mode 100644 providers/edenai/models/xai/grok-4-latest.toml create mode 100644 providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml create mode 100644 providers/edenai/models/xai/grok-4.20-0309-reasoning.toml create mode 100644 providers/edenai/models/xai/grok-4.20-beta-0309-non-reasoning.toml create mode 100644 providers/edenai/models/xai/grok-4.20-beta-0309-reasoning.toml create mode 100644 providers/edenai/models/xai/grok-4.20.toml create mode 100644 providers/edenai/models/xai/grok-4.3-latest.toml create mode 100644 providers/edenai/models/xai/grok-4.3.toml create mode 100644 providers/edenai/models/xai/grok-4.5.toml create mode 100644 providers/edenai/models/xai/grok-4.toml create mode 100644 providers/edenai/models/xai/grok-build-0.1.toml create mode 100644 providers/edenai/models/xai/grok-code-fast-1-0825.toml create mode 100644 providers/edenai/models/xai/grok-code-fast-1.toml create mode 100644 providers/edenai/models/xai/grok-code-fast.toml diff --git a/providers/edenai/models/amazon/ai21.jamba-1-5-large-v1:0.toml b/providers/edenai/models/amazon/ai21.jamba-1-5-large-v1:0.toml new file mode 100644 index 0000000000..0abaf9beaa --- /dev/null +++ b/providers/edenai/models/amazon/ai21.jamba-1-5-large-v1:0.toml @@ -0,0 +1,21 @@ +name = "ai21.jamba-1-5-large-v1:0" +description = "Flagship model for demanding analysis, coding, and production agent workflows" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 2 +output = 8 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/ai21.jamba-1-5-mini-v1:0.toml b/providers/edenai/models/amazon/ai21.jamba-1-5-mini-v1:0.toml new file mode 100644 index 0000000000..e27a984325 --- /dev/null +++ b/providers/edenai/models/amazon/ai21.jamba-1-5-mini-v1:0.toml @@ -0,0 +1,21 @@ +name = "ai21.jamba-1-5-mini-v1:0" +description = "Efficient model for low-latency assistance, extraction, and routine automation" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.4 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0.toml b/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0.toml new file mode 100644 index 0000000000..2f637081a7 --- /dev/null +++ b/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0.toml @@ -0,0 +1,23 @@ +name = "amazon.nova-2-lite-v1:0" +description = "Nova 2 Lite is a fast, cost-effective reasoning model for everyday workloads that can process text, images, and videos to generate text. Nova 2 Lite demonstrates standout capabilities in processing..." +release_date = "2025-12-02" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +cache_read = 0.075 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@eu.toml b/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@eu.toml new file mode 100644 index 0000000000..2f637081a7 --- /dev/null +++ b/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@eu.toml @@ -0,0 +1,23 @@ +name = "amazon.nova-2-lite-v1:0" +description = "Nova 2 Lite is a fast, cost-effective reasoning model for everyday workloads that can process text, images, and videos to generate text. Nova 2 Lite demonstrates standout capabilities in processing..." +release_date = "2025-12-02" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +cache_read = 0.075 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@us.toml b/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@us.toml new file mode 100644 index 0000000000..2f637081a7 --- /dev/null +++ b/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@us.toml @@ -0,0 +1,23 @@ +name = "amazon.nova-2-lite-v1:0" +description = "Nova 2 Lite is a fast, cost-effective reasoning model for everyday workloads that can process text, images, and videos to generate text. Nova 2 Lite demonstrates standout capabilities in processing..." +release_date = "2025-12-02" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +cache_read = 0.075 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-lite-v1:0.toml b/providers/edenai/models/amazon/amazon.nova-lite-v1:0.toml new file mode 100644 index 0000000000..f3dde105e6 --- /dev/null +++ b/providers/edenai/models/amazon/amazon.nova-lite-v1:0.toml @@ -0,0 +1,21 @@ +name = "amazon.nova-lite-v1:0" +description = "Efficient model for low-latency assistance, extraction, and routine automation" +release_date = "2024-12-05" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.06 +output = 0.24 + +[limit] +context = 300_000 +output = 300_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-lite-v1:0@us.toml b/providers/edenai/models/amazon/amazon.nova-lite-v1:0@us.toml new file mode 100644 index 0000000000..f3dde105e6 --- /dev/null +++ b/providers/edenai/models/amazon/amazon.nova-lite-v1:0@us.toml @@ -0,0 +1,21 @@ +name = "amazon.nova-lite-v1:0" +description = "Efficient model for low-latency assistance, extraction, and routine automation" +release_date = "2024-12-05" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.06 +output = 0.24 + +[limit] +context = 300_000 +output = 300_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-micro-v1:0.toml b/providers/edenai/models/amazon/amazon.nova-micro-v1:0.toml new file mode 100644 index 0000000000..31d74d4a14 --- /dev/null +++ b/providers/edenai/models/amazon/amazon.nova-micro-v1:0.toml @@ -0,0 +1,21 @@ +name = "amazon.nova-micro-v1:0" +description = "Amazon Nova Micro 1.0 is a text-only model that delivers the lowest latency responses in the Amazon Nova family of models at a very low cost. With a context length..." +release_date = "2024-12-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.035 +output = 0.14 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-micro-v1:0@us.toml b/providers/edenai/models/amazon/amazon.nova-micro-v1:0@us.toml new file mode 100644 index 0000000000..31d74d4a14 --- /dev/null +++ b/providers/edenai/models/amazon/amazon.nova-micro-v1:0@us.toml @@ -0,0 +1,21 @@ +name = "amazon.nova-micro-v1:0" +description = "Amazon Nova Micro 1.0 is a text-only model that delivers the lowest latency responses in the Amazon Nova family of models at a very low cost. With a context length..." +release_date = "2024-12-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.035 +output = 0.14 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-pro-v1:0.toml b/providers/edenai/models/amazon/amazon.nova-pro-v1:0.toml new file mode 100644 index 0000000000..f4b5073a93 --- /dev/null +++ b/providers/edenai/models/amazon/amazon.nova-pro-v1:0.toml @@ -0,0 +1,21 @@ +name = "amazon.nova-pro-v1:0" +description = "Flagship model for demanding analysis, coding, and production agent workflows" +release_date = "2024-12-05" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.8 +output = 3.2 + +[limit] +context = 300_000 +output = 300_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-pro-v1:0@us.toml b/providers/edenai/models/amazon/amazon.nova-pro-v1:0@us.toml new file mode 100644 index 0000000000..f4b5073a93 --- /dev/null +++ b/providers/edenai/models/amazon/amazon.nova-pro-v1:0@us.toml @@ -0,0 +1,21 @@ +name = "amazon.nova-pro-v1:0" +description = "Flagship model for demanding analysis, coding, and production agent workflows" +release_date = "2024-12-05" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.8 +output = 3.2 + +[limit] +context = 300_000 +output = 300_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-3-haiku-20240307-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-3-haiku-20240307-v1:0.toml new file mode 100644 index 0000000000..53c75b733b --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-3-haiku-20240307-v1:0.toml @@ -0,0 +1,23 @@ +name = "anthropic.claude-3-haiku-20240307-v1:0" +description = "Fast Claude model for responsive assistance, classification, and lightweight agents" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.275 +output = 1.375 +cache_read = 0.0275 +cache_write = 0.34375 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-3-sonnet-20240229-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-3-sonnet-20240229-v1:0.toml new file mode 100644 index 0000000000..1491a62390 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-3-sonnet-20240229-v1:0.toml @@ -0,0 +1,23 @@ +name = "anthropic.claude-3-sonnet-20240229-v1:0" +description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 3 +output = 15 +cache_read = 0.3 +cache_write = 3.75 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0.toml new file mode 100644 index 0000000000..a26d372558 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-haiku-4-5-20251001-v1:0" +description = "Fast Claude model for responsive assistance, classification, and lightweight agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1 +output = 5 +cache_read = 0.1 +cache_write = 1.25 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@eu.toml b/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@eu.toml new file mode 100644 index 0000000000..127ccdf15c --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@eu.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-haiku-4-5-20251001-v1:0" +description = "Fast Claude model for responsive assistance, classification, and lightweight agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.1 +output = 5.5 +cache_read = 0.11 +cache_write = 1.375 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@us.toml b/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@us.toml new file mode 100644 index 0000000000..127ccdf15c --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@us.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-haiku-4-5-20251001-v1:0" +description = "Fast Claude model for responsive assistance, classification, and lightweight agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.1 +output = 5.5 +cache_read = 0.11 +cache_write = 1.375 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-1-20250805-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-1-20250805-v1:0.toml new file mode 100644 index 0000000000..4aecd4681b --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-1-20250805-v1:0.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-1-20250805-v1:0" +description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 16.5 +output = 82.5 +cache_read = 1.65 +cache_write = 20.625 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0.toml new file mode 100644 index 0000000000..54b652bfdf --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-5-20251101-v1:0" +description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@eu.toml new file mode 100644 index 0000000000..f5d9e4f5c5 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@eu.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-5-20251101-v1:0" +description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@us.toml new file mode 100644 index 0000000000..f5d9e4f5c5 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@us.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-5-20251101-v1:0" +description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1.toml new file mode 100644 index 0000000000..be73f42c96 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-6-v1" +description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@eu.toml new file mode 100644 index 0000000000..8eccfcd578 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@eu.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-6-v1" +description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@us.toml new file mode 100644 index 0000000000..8eccfcd578 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@us.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-6-v1" +description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-7.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-7.toml new file mode 100644 index 0000000000..1ca0dfb556 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-7.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-7" +description = "Opus 4.7 is the next generation of Anthropic's Opus family, built for long-running, asynchronous agents. Building on the coding and agentic strengths of Opus 4.6, it delivers stronger performance on..." +release_date = "2026-04-16" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-7@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-7@eu.toml new file mode 100644 index 0000000000..0447b0678a --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-7@eu.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-7" +description = "Opus 4.7 is the next generation of Anthropic's Opus family, built for long-running, asynchronous agents. Building on the coding and agentic strengths of Opus 4.6, it delivers stronger performance on..." +release_date = "2026-04-16" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-7@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-7@us.toml new file mode 100644 index 0000000000..0447b0678a --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-7@us.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-7" +description = "Opus 4.7 is the next generation of Anthropic's Opus family, built for long-running, asynchronous agents. Building on the coding and agentic strengths of Opus 4.6, it delivers stronger performance on..." +release_date = "2026-04-16" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-8.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-8.toml new file mode 100644 index 0000000000..a6933e54a2 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-8.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-8" +description = "Claude Opus 4.8 is Anthropic's most capable generally available model in the Opus family. It supports text, image, and file inputs with text output, with reasoning support and a 1M-token..." +release_date = "2026-05-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-8@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-8@eu.toml new file mode 100644 index 0000000000..ce3af479ae --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-8@eu.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-8" +description = "Claude Opus 4.8 is Anthropic's most capable generally available model in the Opus family. It supports text, image, and file inputs with text output, with reasoning support and a 1M-token..." +release_date = "2026-05-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-8@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-8@us.toml new file mode 100644 index 0000000000..ce3af479ae --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-4-8@us.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-4-8" +description = "Claude Opus 4.8 is Anthropic's most capable generally available model in the Opus family. It supports text, image, and file inputs with text output, with reasoning support and a 1M-token..." +release_date = "2026-05-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-5.toml b/providers/edenai/models/amazon/anthropic.claude-opus-5.toml new file mode 100644 index 0000000000..407784cdad --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-5.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-5" +description = "Claude Opus 5 is Anthropic’s flagship model for demanding reasoning, coding, and long-horizon agentic work. It is particularly strong at end-to-end software tasks, code review and bug finding, visual analysis..." +release_date = "2026-07-24" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-5@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-5@eu.toml new file mode 100644 index 0000000000..bdb17d9d65 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-5@eu.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-5" +description = "Claude Opus 5 is Anthropic’s flagship model for demanding reasoning, coding, and long-horizon agentic work. It is particularly strong at end-to-end software tasks, code review and bug finding, visual analysis..." +release_date = "2026-07-24" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-5@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-5@us.toml new file mode 100644 index 0000000000..bdb17d9d65 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-opus-5@us.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-opus-5" +description = "Claude Opus 5 is Anthropic’s flagship model for demanding reasoning, coding, and long-horizon agentic work. It is particularly strong at end-to-end software tasks, code review and bug finding, visual analysis..." +release_date = "2026-07-24" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0.toml new file mode 100644 index 0000000000..366325be11 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-sonnet-4-5-20250929-v1:0" +description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 +cache_write = 3.75 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@eu.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@eu.toml new file mode 100644 index 0000000000..b8e452d211 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@eu.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-sonnet-4-5-20250929-v1:0" +description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 3.3 +output = 16.5 +cache_read = 0.33 +cache_write = 4.125 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@us.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@us.toml new file mode 100644 index 0000000000..b8e452d211 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@us.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-sonnet-4-5-20250929-v1:0" +description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 3.3 +output = 16.5 +cache_read = 0.33 +cache_write = 4.125 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6.toml new file mode 100644 index 0000000000..06ad6edb15 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-sonnet-4-6" +description = "Sonnet 4.6 is Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work. It excels at iterative development, complex codebase navigation, end-to-end project management with..." +release_date = "2026-02-17" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 +cache_write = 3.75 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@eu.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@eu.toml new file mode 100644 index 0000000000..f95c07f5d7 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@eu.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-sonnet-4-6" +description = "Sonnet 4.6 is Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work. It excels at iterative development, complex codebase navigation, end-to-end project management with..." +release_date = "2026-02-17" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 3.3 +output = 16.5 +cache_read = 0.33 +cache_write = 4.125 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@us.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@us.toml new file mode 100644 index 0000000000..f95c07f5d7 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@us.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-sonnet-4-6" +description = "Sonnet 4.6 is Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work. It excels at iterative development, complex codebase navigation, end-to-end project management with..." +release_date = "2026-02-17" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 3.3 +output = 16.5 +cache_read = 0.33 +cache_write = 4.125 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-5.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-5.toml new file mode 100644 index 0000000000..8766be5033 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-sonnet-5.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-sonnet-5" +description = "Sonnet 5 is Anthropic's most capable Sonnet-class model, with frontier performance across coding, agents, and professional work. It supports adaptive thinking with selectable reasoning effort levels (low, medium, high, max,..." +release_date = "2026-06-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 2 +output = 10 +cache_read = 0.2 +cache_write = 2.5 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-5@eu.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-5@eu.toml new file mode 100644 index 0000000000..7819fe2a04 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-sonnet-5@eu.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-sonnet-5" +description = "Sonnet 5 is Anthropic's most capable Sonnet-class model, with frontier performance across coding, agents, and professional work. It supports adaptive thinking with selectable reasoning effort levels (low, medium, high, max,..." +release_date = "2026-06-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 2.2 +output = 11 +cache_read = 0.22 +cache_write = 2.75 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-5@us.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-5@us.toml new file mode 100644 index 0000000000..7819fe2a04 --- /dev/null +++ b/providers/edenai/models/amazon/anthropic.claude-sonnet-5@us.toml @@ -0,0 +1,24 @@ +name = "anthropic.claude-sonnet-5" +description = "Sonnet 5 is Anthropic's most capable Sonnet-class model, with frontier performance across coding, agents, and professional work. It supports adaptive thinking with selectable reasoning effort levels (low, medium, high, max,..." +release_date = "2026-06-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 2.2 +output = 11 +cache_read = 0.22 +cache_write = 2.75 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/cohere.command-r-plus-v1:0.toml b/providers/edenai/models/amazon/cohere.command-r-plus-v1:0.toml new file mode 100644 index 0000000000..8556c46b21 --- /dev/null +++ b/providers/edenai/models/amazon/cohere.command-r-plus-v1:0.toml @@ -0,0 +1,21 @@ +name = "cohere.command-r-plus-v1:0" +description = "Cohere retrieval model for long-context chat and enterprise RAG workflows" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3 +output = 15 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/cohere.command-r-v1:0.toml b/providers/edenai/models/amazon/cohere.command-r-v1:0.toml new file mode 100644 index 0000000000..b7d9564471 --- /dev/null +++ b/providers/edenai/models/amazon/cohere.command-r-v1:0.toml @@ -0,0 +1,21 @@ +name = "cohere.command-r-v1:0" +description = "Cohere retrieval model for long-context chat and enterprise RAG workflows" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.5 +output = 1.5 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/deepseek.r1-v1:0.toml b/providers/edenai/models/amazon/deepseek.r1-v1:0.toml new file mode 100644 index 0000000000..bcfc7d4c31 --- /dev/null +++ b/providers/edenai/models/amazon/deepseek.r1-v1:0.toml @@ -0,0 +1,22 @@ +name = "deepseek.r1-v1:0" +description = "DeepSeek reasoning model for multi-step analysis, math, coding, and tools" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 1.35 +output = 5.4 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/deepseek.v3.2.toml b/providers/edenai/models/amazon/deepseek.v3.2.toml new file mode 100644 index 0000000000..94b4fba77c --- /dev/null +++ b/providers/edenai/models/amazon/deepseek.v3.2.toml @@ -0,0 +1,22 @@ +name = "deepseek.v3.2" +description = "DeepSeek chat model for instruction following, coding, and analysis" +release_date = "2026-02-13" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.74 +output = 2.22 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-12b-it.toml b/providers/edenai/models/amazon/google.gemma-3-12b-it.toml new file mode 100644 index 0000000000..ebf04e7cc5 --- /dev/null +++ b/providers/edenai/models/amazon/google.gemma-3-12b-it.toml @@ -0,0 +1,21 @@ +name = "google.gemma-3-12b-it" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.09 +output = 0.29 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-12b-it@us.toml b/providers/edenai/models/amazon/google.gemma-3-12b-it@us.toml new file mode 100644 index 0000000000..ebf04e7cc5 --- /dev/null +++ b/providers/edenai/models/amazon/google.gemma-3-12b-it@us.toml @@ -0,0 +1,21 @@ +name = "google.gemma-3-12b-it" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.09 +output = 0.29 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-27b-it.toml b/providers/edenai/models/amazon/google.gemma-3-27b-it.toml new file mode 100644 index 0000000000..2927a205a1 --- /dev/null +++ b/providers/edenai/models/amazon/google.gemma-3-27b-it.toml @@ -0,0 +1,21 @@ +name = "google.gemma-3-27b-it" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.23 +output = 0.38 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-27b-it@us.toml b/providers/edenai/models/amazon/google.gemma-3-27b-it@us.toml new file mode 100644 index 0000000000..2927a205a1 --- /dev/null +++ b/providers/edenai/models/amazon/google.gemma-3-27b-it@us.toml @@ -0,0 +1,21 @@ +name = "google.gemma-3-27b-it" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.23 +output = 0.38 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-4b-it.toml b/providers/edenai/models/amazon/google.gemma-3-4b-it.toml new file mode 100644 index 0000000000..d636727ae4 --- /dev/null +++ b/providers/edenai/models/amazon/google.gemma-3-4b-it.toml @@ -0,0 +1,21 @@ +name = "google.gemma-3-4b-it" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.04 +output = 0.08 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-4b-it@us.toml b/providers/edenai/models/amazon/google.gemma-3-4b-it@us.toml new file mode 100644 index 0000000000..d636727ae4 --- /dev/null +++ b/providers/edenai/models/amazon/google.gemma-3-4b-it@us.toml @@ -0,0 +1,21 @@ +name = "google.gemma-3-4b-it" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.04 +output = 0.08 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-1-70b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-1-70b-instruct-v1:0.toml new file mode 100644 index 0000000000..576d28adac --- /dev/null +++ b/providers/edenai/models/amazon/meta.llama3-1-70b-instruct-v1:0.toml @@ -0,0 +1,21 @@ +name = "meta.llama3-1-70b-instruct-v1:0" +description = "Tool-capable chat model for instruction following and agentic application workflows" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.99 +output = 0.99 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-1-8b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-1-8b-instruct-v1:0.toml new file mode 100644 index 0000000000..14bc8f9f69 --- /dev/null +++ b/providers/edenai/models/amazon/meta.llama3-1-8b-instruct-v1:0.toml @@ -0,0 +1,21 @@ +name = "meta.llama3-1-8b-instruct-v1:0" +description = "Tool-capable chat model for instruction following and agentic application workflows" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.22 +output = 0.22 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-3-70b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-3-70b-instruct-v1:0.toml new file mode 100644 index 0000000000..ba9098acd6 --- /dev/null +++ b/providers/edenai/models/amazon/meta.llama3-3-70b-instruct-v1:0.toml @@ -0,0 +1,21 @@ +name = "meta.llama3-3-70b-instruct-v1:0" +description = "Tool-capable chat model for instruction following and agentic application workflows" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.72 +output = 0.72 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-70b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-70b-instruct-v1:0.toml new file mode 100644 index 0000000000..d1f1be46dd --- /dev/null +++ b/providers/edenai/models/amazon/meta.llama3-70b-instruct-v1:0.toml @@ -0,0 +1,21 @@ +name = "meta.llama3-70b-instruct-v1:0" +description = "General-purpose chat model for instruction following, writing, and analysis" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 3.18 +output = 4.2 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-8b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-8b-instruct-v1:0.toml new file mode 100644 index 0000000000..dc70c11fc4 --- /dev/null +++ b/providers/edenai/models/amazon/meta.llama3-8b-instruct-v1:0.toml @@ -0,0 +1,21 @@ +name = "meta.llama3-8b-instruct-v1:0" +description = "General-purpose chat model for instruction following, writing, and analysis" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.36 +output = 0.72 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.1.toml b/providers/edenai/models/amazon/minimax.minimax-m2.1.toml new file mode 100644 index 0000000000..d5e4b90db6 --- /dev/null +++ b/providers/edenai/models/amazon/minimax.minimax-m2.1.toml @@ -0,0 +1,21 @@ +name = "minimax.minimax-m2.1" +description = "MiniMax model for chat, coding, office work, and agentic tasks" +release_date = "2026-02-13" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.36 +output = 1.44 + +[limit] +context = 196_000 +output = 196_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.1@us.toml b/providers/edenai/models/amazon/minimax.minimax-m2.1@us.toml new file mode 100644 index 0000000000..d5e4b90db6 --- /dev/null +++ b/providers/edenai/models/amazon/minimax.minimax-m2.1@us.toml @@ -0,0 +1,21 @@ +name = "minimax.minimax-m2.1" +description = "MiniMax model for chat, coding, office work, and agentic tasks" +release_date = "2026-02-13" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.36 +output = 1.44 + +[limit] +context = 196_000 +output = 196_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.5.toml b/providers/edenai/models/amazon/minimax.minimax-m2.5.toml new file mode 100644 index 0000000000..7f4a574e7b --- /dev/null +++ b/providers/edenai/models/amazon/minimax.minimax-m2.5.toml @@ -0,0 +1,22 @@ +name = "minimax.minimax-m2.5" +description = "MiniMax model for chat, coding, office work, and agentic tasks" +release_date = "2026-04-03" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.36 +output = 1.44 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.5@us.toml b/providers/edenai/models/amazon/minimax.minimax-m2.5@us.toml new file mode 100644 index 0000000000..7f4a574e7b --- /dev/null +++ b/providers/edenai/models/amazon/minimax.minimax-m2.5@us.toml @@ -0,0 +1,22 @@ +name = "minimax.minimax-m2.5" +description = "MiniMax model for chat, coding, office work, and agentic tasks" +release_date = "2026-04-03" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.36 +output = 1.44 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.toml b/providers/edenai/models/amazon/minimax.minimax-m2.toml new file mode 100644 index 0000000000..d209da825d --- /dev/null +++ b/providers/edenai/models/amazon/minimax.minimax-m2.toml @@ -0,0 +1,21 @@ +name = "minimax.minimax-m2" +description = "MiniMax model for chat, coding, office work, and agentic tasks" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.3 +output = 1.2 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2@us.toml b/providers/edenai/models/amazon/minimax.minimax-m2@us.toml new file mode 100644 index 0000000000..d209da825d --- /dev/null +++ b/providers/edenai/models/amazon/minimax.minimax-m2@us.toml @@ -0,0 +1,21 @@ +name = "minimax.minimax-m2" +description = "MiniMax model for chat, coding, office work, and agentic tasks" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.3 +output = 1.2 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.devstral-2-123b.toml b/providers/edenai/models/amazon/mistral.devstral-2-123b.toml new file mode 100644 index 0000000000..70448268b0 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.devstral-2-123b.toml @@ -0,0 +1,21 @@ +name = "mistral.devstral-2-123b" +description = "Mistral coding agent model for repository tasks and software engineering workflows" +release_date = "2026-03-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.4 +output = 2 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.devstral-2-123b@us.toml b/providers/edenai/models/amazon/mistral.devstral-2-123b@us.toml new file mode 100644 index 0000000000..70448268b0 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.devstral-2-123b@us.toml @@ -0,0 +1,21 @@ +name = "mistral.devstral-2-123b" +description = "Mistral coding agent model for repository tasks and software engineering workflows" +release_date = "2026-03-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.4 +output = 2 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.magistral-small-2509.toml b/providers/edenai/models/amazon/mistral.magistral-small-2509.toml new file mode 100644 index 0000000000..c2020c3061 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.magistral-small-2509.toml @@ -0,0 +1,22 @@ +name = "mistral.magistral-small-2509" +description = "Mistral reasoning model for transparent analysis, math, and complex decisions" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 1.5 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.magistral-small-2509@us.toml b/providers/edenai/models/amazon/mistral.magistral-small-2509@us.toml new file mode 100644 index 0000000000..c2020c3061 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.magistral-small-2509@us.toml @@ -0,0 +1,22 @@ +name = "mistral.magistral-small-2509" +description = "Mistral reasoning model for transparent analysis, math, and complex decisions" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 1.5 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct.toml b/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct.toml new file mode 100644 index 0000000000..ca0a3b7d73 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct.toml @@ -0,0 +1,21 @@ +name = "mistral.ministral-3-14b-instruct" +description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.2 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct@us.toml b/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct@us.toml new file mode 100644 index 0000000000..ca0a3b7d73 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct@us.toml @@ -0,0 +1,21 @@ +name = "mistral.ministral-3-14b-instruct" +description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.2 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct.toml b/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct.toml new file mode 100644 index 0000000000..8d58939f44 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct.toml @@ -0,0 +1,21 @@ +name = "mistral.ministral-3-3b-instruct" +description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.1 +output = 0.1 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct@us.toml b/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct@us.toml new file mode 100644 index 0000000000..8d58939f44 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct@us.toml @@ -0,0 +1,21 @@ +name = "mistral.ministral-3-3b-instruct" +description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.1 +output = 0.1 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct.toml b/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct.toml new file mode 100644 index 0000000000..3771c75361 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct.toml @@ -0,0 +1,21 @@ +name = "mistral.ministral-3-8b-instruct" +description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.15 +output = 0.15 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct@us.toml b/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct@us.toml new file mode 100644 index 0000000000..3771c75361 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct@us.toml @@ -0,0 +1,21 @@ +name = "mistral.ministral-3-8b-instruct" +description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.15 +output = 0.15 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2.toml b/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2.toml new file mode 100644 index 0000000000..5238e1c4cb --- /dev/null +++ b/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2.toml @@ -0,0 +1,21 @@ +name = "mistral.mistral-7b-instruct-v0:2" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.26 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2@us.toml b/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2@us.toml new file mode 100644 index 0000000000..5238e1c4cb --- /dev/null +++ b/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2@us.toml @@ -0,0 +1,21 @@ +name = "mistral.mistral-7b-instruct-v0:2" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.26 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0.toml b/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0.toml new file mode 100644 index 0000000000..6357f72f0f --- /dev/null +++ b/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0.toml @@ -0,0 +1,21 @@ +name = "mistral.mistral-large-2402-v1:0" +description = "Flagship Mistral model for advanced reasoning, coding, and multilingual work" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 10.4 +output = 31.2 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0@us.toml b/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0@us.toml new file mode 100644 index 0000000000..6357f72f0f --- /dev/null +++ b/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0@us.toml @@ -0,0 +1,21 @@ +name = "mistral.mistral-large-2402-v1:0" +description = "Flagship Mistral model for advanced reasoning, coding, and multilingual work" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 10.4 +output = 31.2 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-large-3-675b-instruct.toml b/providers/edenai/models/amazon/mistral.mistral-large-3-675b-instruct.toml new file mode 100644 index 0000000000..d832d083cd --- /dev/null +++ b/providers/edenai/models/amazon/mistral.mistral-large-3-675b-instruct.toml @@ -0,0 +1,21 @@ +name = "mistral.mistral-large-3-675b-instruct" +description = "Flagship Mistral model for advanced reasoning, coding, and multilingual work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.5 +output = 1.5 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-small-2402-v1:0.toml b/providers/edenai/models/amazon/mistral.mistral-small-2402-v1:0.toml new file mode 100644 index 0000000000..64b2e94eab --- /dev/null +++ b/providers/edenai/models/amazon/mistral.mistral-small-2402-v1:0.toml @@ -0,0 +1,21 @@ +name = "mistral.mistral-small-2402-v1:0" +description = "Efficient Mistral model for fast chat, extraction, and production assistants" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 1 +output = 3 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1.toml b/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1.toml new file mode 100644 index 0000000000..c38c82105a --- /dev/null +++ b/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1.toml @@ -0,0 +1,21 @@ +name = "mistral.mixtral-8x7b-instruct-v0:1" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.59 +output = 0.91 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1@us.toml b/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1@us.toml new file mode 100644 index 0000000000..c38c82105a --- /dev/null +++ b/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1@us.toml @@ -0,0 +1,21 @@ +name = "mistral.mixtral-8x7b-instruct-v0:1" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-03-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.59 +output = 0.91 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0.toml b/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0.toml new file mode 100644 index 0000000000..936e47ea7a --- /dev/null +++ b/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0.toml @@ -0,0 +1,21 @@ +name = "mistral.pixtral-large-2502-v1:0" +description = "Mistral vision-language model for image understanding and multimodal chat" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 2 +output = 6 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0@us.toml b/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0@us.toml new file mode 100644 index 0000000000..936e47ea7a --- /dev/null +++ b/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0@us.toml @@ -0,0 +1,21 @@ +name = "mistral.pixtral-large-2502-v1:0" +description = "Mistral vision-language model for image understanding and multimodal chat" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 2 +output = 6 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507.toml b/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507.toml new file mode 100644 index 0000000000..33841c7045 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507.toml @@ -0,0 +1,21 @@ +name = "mistral.voxtral-mini-3b-2507" +description = "Efficient Mistral model for fast chat, extraction, and production assistants" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.04 +output = 0.04 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "audio"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507@us.toml b/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507@us.toml new file mode 100644 index 0000000000..33841c7045 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507@us.toml @@ -0,0 +1,21 @@ +name = "mistral.voxtral-mini-3b-2507" +description = "Efficient Mistral model for fast chat, extraction, and production assistants" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.04 +output = 0.04 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "audio"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507.toml b/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507.toml new file mode 100644 index 0000000000..cb48175637 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507.toml @@ -0,0 +1,21 @@ +name = "mistral.voxtral-small-24b-2507" +description = "Efficient Mistral model for fast chat, extraction, and production assistants" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "audio"] +output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507@us.toml b/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507@us.toml new file mode 100644 index 0000000000..cb48175637 --- /dev/null +++ b/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507@us.toml @@ -0,0 +1,21 @@ +name = "mistral.voxtral-small-24b-2507" +description = "Efficient Mistral model for fast chat, extraction, and production assistants" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "audio"] +output = ["text"] diff --git a/providers/edenai/models/amazon/moonshot.kimi-k2-thinking.toml b/providers/edenai/models/amazon/moonshot.kimi-k2-thinking.toml new file mode 100644 index 0000000000..99683779d5 --- /dev/null +++ b/providers/edenai/models/amazon/moonshot.kimi-k2-thinking.toml @@ -0,0 +1,22 @@ +name = "moonshot.kimi-k2-thinking" +description = "Kimi reasoning model for long-horizon research, planning, and tool use" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 2.5 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/moonshotai.kimi-k2.5.toml b/providers/edenai/models/amazon/moonshotai.kimi-k2.5.toml new file mode 100644 index 0000000000..a0293056a9 --- /dev/null +++ b/providers/edenai/models/amazon/moonshotai.kimi-k2.5.toml @@ -0,0 +1,22 @@ +name = "moonshotai.kimi-k2.5" +description = "Kimi K2.5 is Moonshot AI's native multimodal model, delivering state-of-the-art visual coding capability and a self-directed agent swarm paradigm. Built on Kimi K2 with continued pretraining over approximately 15T mixed..." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 3 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2.toml new file mode 100644 index 0000000000..ffeeaf0ee1 --- /dev/null +++ b/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2.toml @@ -0,0 +1,21 @@ +name = "nvidia.nemotron-nano-12b-v2" +description = "Nemotron multimodal model for visual reasoning and agentic AI workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.6 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2@us.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2@us.toml new file mode 100644 index 0000000000..ffeeaf0ee1 --- /dev/null +++ b/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2@us.toml @@ -0,0 +1,21 @@ +name = "nvidia.nemotron-nano-12b-v2" +description = "Nemotron multimodal model for visual reasoning and agentic AI workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.6 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b.toml new file mode 100644 index 0000000000..e53b4f3409 --- /dev/null +++ b/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b.toml @@ -0,0 +1,21 @@ +name = "nvidia.nemotron-nano-3-30b" +description = "Compact Nemotron model for efficient reasoning and deployable AI agents" +release_date = "2026-02-13" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.06 +output = 0.24 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b@us.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b@us.toml new file mode 100644 index 0000000000..e53b4f3409 --- /dev/null +++ b/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b@us.toml @@ -0,0 +1,21 @@ +name = "nvidia.nemotron-nano-3-30b" +description = "Compact Nemotron model for efficient reasoning and deployable AI agents" +release_date = "2026-02-13" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.06 +output = 0.24 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2.toml new file mode 100644 index 0000000000..57071a450f --- /dev/null +++ b/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2.toml @@ -0,0 +1,21 @@ +name = "nvidia.nemotron-nano-9b-v2" +description = "Compact Nemotron model for efficient reasoning and deployable AI agents" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.06 +output = 0.23 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2@us.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2@us.toml new file mode 100644 index 0000000000..57071a450f --- /dev/null +++ b/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2@us.toml @@ -0,0 +1,21 @@ +name = "nvidia.nemotron-nano-9b-v2" +description = "Compact Nemotron model for efficient reasoning and deployable AI agents" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.06 +output = 0.23 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b.toml b/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b.toml new file mode 100644 index 0000000000..a37b107f92 --- /dev/null +++ b/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b.toml @@ -0,0 +1,22 @@ +name = "nvidia.nemotron-super-3-120b" +description = "Nemotron model for efficient reasoning, coding, and specialized AI agents" +release_date = "2026-04-03" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.65 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b@us.toml b/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b@us.toml new file mode 100644 index 0000000000..a37b107f92 --- /dev/null +++ b/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b@us.toml @@ -0,0 +1,22 @@ +name = "nvidia.nemotron-super-3-120b" +description = "Nemotron model for efficient reasoning, coding, and specialized AI agents" +release_date = "2026-04-03" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.65 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0.toml b/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0.toml new file mode 100644 index 0000000000..5c0724148e --- /dev/null +++ b/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0.toml @@ -0,0 +1,22 @@ +name = "openai.gpt-oss-120b-1:0" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0@us.toml b/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0@us.toml new file mode 100644 index 0000000000..5c0724148e --- /dev/null +++ b/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0@us.toml @@ -0,0 +1,22 @@ +name = "openai.gpt-oss-120b-1:0" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0.toml b/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0.toml new file mode 100644 index 0000000000..68bf37b086 --- /dev/null +++ b/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0.toml @@ -0,0 +1,22 @@ +name = "openai.gpt-oss-20b-1:0" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.07 +output = 0.3 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0@us.toml b/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0@us.toml new file mode 100644 index 0000000000..68bf37b086 --- /dev/null +++ b/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0@us.toml @@ -0,0 +1,22 @@ +name = "openai.gpt-oss-20b-1:0" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.07 +output = 0.3 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b.toml b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b.toml new file mode 100644 index 0000000000..957e32f705 --- /dev/null +++ b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b.toml @@ -0,0 +1,21 @@ +name = "openai.gpt-oss-safeguard-120b" +description = "Safety model for policy screening, moderation, and risk-aware routing workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b@us.toml b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b@us.toml new file mode 100644 index 0000000000..957e32f705 --- /dev/null +++ b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b@us.toml @@ -0,0 +1,21 @@ +name = "openai.gpt-oss-safeguard-120b" +description = "Safety model for policy screening, moderation, and risk-aware routing workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b.toml b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b.toml new file mode 100644 index 0000000000..98c0789b87 --- /dev/null +++ b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b.toml @@ -0,0 +1,21 @@ +name = "openai.gpt-oss-safeguard-20b" +description = "Safety model for policy screening, moderation, and risk-aware routing workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.07 +output = 0.2 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b@us.toml b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b@us.toml new file mode 100644 index 0000000000..98c0789b87 --- /dev/null +++ b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b@us.toml @@ -0,0 +1,21 @@ +name = "openai.gpt-oss-safeguard-20b" +description = "Safety model for policy screening, moderation, and risk-aware routing workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.07 +output = 0.2 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0.toml b/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0.toml new file mode 100644 index 0000000000..b3b11c04d3 --- /dev/null +++ b/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0.toml @@ -0,0 +1,22 @@ +name = "qwen.qwen3-32b-v1:0" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0@us.toml b/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0@us.toml new file mode 100644 index 0000000000..b3b11c04d3 --- /dev/null +++ b/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0@us.toml @@ -0,0 +1,22 @@ +name = "qwen.qwen3-32b-v1:0" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml b/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml new file mode 100644 index 0000000000..c2276d801e --- /dev/null +++ b/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml @@ -0,0 +1,22 @@ +name = "qwen.qwen3-coder-30b-a3b-v1:0" +description = "Qwen coding model for software agents, repository edits, and code reasoning" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0@us.toml b/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0@us.toml new file mode 100644 index 0000000000..c2276d801e --- /dev/null +++ b/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0@us.toml @@ -0,0 +1,22 @@ +name = "qwen.qwen3-coder-30b-a3b-v1:0" +description = "Qwen coding model for software agents, repository edits, and code reasoning" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-coder-next.toml b/providers/edenai/models/amazon/qwen.qwen3-coder-next.toml new file mode 100644 index 0000000000..901937f16a --- /dev/null +++ b/providers/edenai/models/amazon/qwen.qwen3-coder-next.toml @@ -0,0 +1,21 @@ +name = "qwen.qwen3-coder-next" +description = "Qwen coding model for software agents, repository edits, and code reasoning" +release_date = "2026-02-13" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.6 +output = 1.44 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b.toml b/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b.toml new file mode 100644 index 0000000000..63371b16d9 --- /dev/null +++ b/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b.toml @@ -0,0 +1,21 @@ +name = "qwen.qwen3-next-80b-a3b" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.15 +output = 1.2 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b@us.toml b/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b@us.toml new file mode 100644 index 0000000000..63371b16d9 --- /dev/null +++ b/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b@us.toml @@ -0,0 +1,21 @@ +name = "qwen.qwen3-next-80b-a3b" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.15 +output = 1.2 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b.toml b/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b.toml new file mode 100644 index 0000000000..7a4792795d --- /dev/null +++ b/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b.toml @@ -0,0 +1,21 @@ +name = "qwen.qwen3-vl-235b-a22b" +description = "Qwen vision-language model for visual reasoning, documents, and agent tasks" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.53 +output = 2.66 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b@us.toml b/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b@us.toml new file mode 100644 index 0000000000..7a4792795d --- /dev/null +++ b/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b@us.toml @@ -0,0 +1,21 @@ +name = "qwen.qwen3-vl-235b-a22b" +description = "Qwen vision-language model for visual reasoning, documents, and agent tasks" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.53 +output = 2.66 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/amazon/writer.palmyra-x4-v1:0.toml b/providers/edenai/models/amazon/writer.palmyra-x4-v1:0.toml new file mode 100644 index 0000000000..a633e07b90 --- /dev/null +++ b/providers/edenai/models/amazon/writer.palmyra-x4-v1:0.toml @@ -0,0 +1,21 @@ +name = "writer.palmyra-x4-v1:0" +description = "Multimodal model for analyzing text, images, documents, and rich media" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 2.5 +output = 10 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/writer.palmyra-x5-v1:0.toml b/providers/edenai/models/amazon/writer.palmyra-x5-v1:0.toml new file mode 100644 index 0000000000..69e72a3f80 --- /dev/null +++ b/providers/edenai/models/amazon/writer.palmyra-x5-v1:0.toml @@ -0,0 +1,21 @@ +name = "writer.palmyra-x5-v1:0" +description = "Multimodal model for analyzing text, images, documents, and rich media" +release_date = "2026-06-18" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.6 +output = 6 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/amazon/zai.glm-4.7-flash.toml b/providers/edenai/models/amazon/zai.glm-4.7-flash.toml new file mode 100644 index 0000000000..7640f68fe2 --- /dev/null +++ b/providers/edenai/models/amazon/zai.glm-4.7-flash.toml @@ -0,0 +1,22 @@ +name = "zai.glm-4.7-flash" +description = "Efficient GLM model for fast reasoning, coding, and agent workflows" +release_date = "2026-03-05" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.07 +output = 0.4 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/zai.glm-4.7-flash@us.toml b/providers/edenai/models/amazon/zai.glm-4.7-flash@us.toml new file mode 100644 index 0000000000..7640f68fe2 --- /dev/null +++ b/providers/edenai/models/amazon/zai.glm-4.7-flash@us.toml @@ -0,0 +1,22 @@ +name = "zai.glm-4.7-flash" +description = "Efficient GLM model for fast reasoning, coding, and agent workflows" +release_date = "2026-03-05" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.07 +output = 0.4 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/zai.glm-4.7.toml b/providers/edenai/models/amazon/zai.glm-4.7.toml new file mode 100644 index 0000000000..210ea60b4c --- /dev/null +++ b/providers/edenai/models/amazon/zai.glm-4.7.toml @@ -0,0 +1,22 @@ +name = "zai.glm-4.7" +description = "Flagship GLM model for hybrid reasoning, coding, and agentic engineering" +release_date = "2026-02-13" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 2.2 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/amazon/zai.glm-5.toml b/providers/edenai/models/amazon/zai.glm-5.toml new file mode 100644 index 0000000000..2f4a7d64e4 --- /dev/null +++ b/providers/edenai/models/amazon/zai.glm-5.toml @@ -0,0 +1,22 @@ +name = "zai.glm-5" +description = "Flagship GLM model for hybrid reasoning, coding, and agentic engineering" +release_date = "2026-04-03" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 1 +output = 3.2 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/anthropic/claude-fable-5.toml b/providers/edenai/models/anthropic/claude-fable-5.toml new file mode 100644 index 0000000000..a04dce4701 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-fable-5.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-fable-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 10 +output = 50 +cache_read = 1 +cache_write = 12.5 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml b/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml new file mode 100644 index 0000000000..77c42b6cb6 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-haiku-4-5-20251001" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 1 +output = 5 +cache_read = 0.1 +cache_write = 1.25 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-haiku-4-5.toml b/providers/edenai/models/anthropic/claude-haiku-4-5.toml new file mode 100644 index 0000000000..202b0b2eed --- /dev/null +++ b/providers/edenai/models/anthropic/claude-haiku-4-5.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-haiku-4-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 1 +output = 5 +cache_read = 0.1 +cache_write = 1.25 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml b/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml new file mode 100644 index 0000000000..9aa690d49c --- /dev/null +++ b/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-4-1-20250805" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 15 +output = 75 +cache_read = 1.5 +cache_write = 18.75 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-1.toml b/providers/edenai/models/anthropic/claude-opus-4-1.toml new file mode 100644 index 0000000000..722c572402 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-opus-4-1.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-4-1" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 15 +output = 75 +cache_read = 1.5 +cache_write = 18.75 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml b/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml new file mode 100644 index 0000000000..b726d91c89 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-opus-4-5-20251101" +release_date = "2025-11-24" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-5.toml b/providers/edenai/models/anthropic/claude-opus-4-5.toml new file mode 100644 index 0000000000..f27adb3add --- /dev/null +++ b/providers/edenai/models/anthropic/claude-opus-4-5.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-4-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-6.toml b/providers/edenai/models/anthropic/claude-opus-4-6.toml new file mode 100644 index 0000000000..5f37c18a17 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-opus-4-6.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-opus-4-6" +release_date = "2026-02-04" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-7.toml b/providers/edenai/models/anthropic/claude-opus-4-7.toml new file mode 100644 index 0000000000..3cc4cc4ec8 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-opus-4-7.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-4-7" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-8.toml b/providers/edenai/models/anthropic/claude-opus-4-8.toml new file mode 100644 index 0000000000..b37d330646 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-opus-4-8.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-opus-4-8" +release_date = "2026-05-27" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-opus-5.toml b/providers/edenai/models/anthropic/claude-opus-5.toml new file mode 100644 index 0000000000..b4ef8c1574 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-opus-5.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml b/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml new file mode 100644 index 0000000000..0d4ce1d1b6 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-sonnet-4-5-20250929" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 +cache_write = 3.75 + +[limit] +context = 1_000_000 +output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-sonnet-4-6.toml b/providers/edenai/models/anthropic/claude-sonnet-4-6.toml new file mode 100644 index 0000000000..39343b225d --- /dev/null +++ b/providers/edenai/models/anthropic/claude-sonnet-4-6.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-sonnet-4-6" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 +cache_write = 3.75 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-sonnet-5.toml b/providers/edenai/models/anthropic/claude-sonnet-5.toml new file mode 100644 index 0000000000..89be7fa2b7 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-sonnet-5.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-sonnet-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 2 +output = 10 +cache_read = 0.2 +cache_write = 2.5 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/azure/gpt-4o-mini.toml b/providers/edenai/models/azure/gpt-4o-mini.toml new file mode 100644 index 0000000000..fece36e4fe --- /dev/null +++ b/providers/edenai/models/azure/gpt-4o-mini.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-4o-mini" +release_date = "2026-07-24" +last_updated = "2026-08-01" + +[cost] +input = 0.1815 +output = 0.726 +cache_read = 0.0825 + +[limit] +output = 128_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o-mini@us.toml b/providers/edenai/models/azure/gpt-4o-mini@us.toml new file mode 100644 index 0000000000..fece36e4fe --- /dev/null +++ b/providers/edenai/models/azure/gpt-4o-mini@us.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-4o-mini" +release_date = "2026-07-24" +last_updated = "2026-08-01" + +[cost] +input = 0.1815 +output = 0.726 +cache_read = 0.0825 + +[limit] +output = 128_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o.toml b/providers/edenai/models/azure/gpt-4o.toml new file mode 100644 index 0000000000..c382f10665 --- /dev/null +++ b/providers/edenai/models/azure/gpt-4o.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-4o" +release_date = "2026-07-24" +last_updated = "2026-08-01" + +[cost] +input = 2.5 +output = 10 +cache_read = 1.25 + +[limit] +output = 128_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o@eu.toml b/providers/edenai/models/azure/gpt-4o@eu.toml new file mode 100644 index 0000000000..17bb56c532 --- /dev/null +++ b/providers/edenai/models/azure/gpt-4o@eu.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-4o" +release_date = "2026-07-24" +last_updated = "2026-08-01" + +[cost] +input = 2.75 +output = 11 +cache_read = 1.375 + +[limit] +output = 128_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o@us.toml b/providers/edenai/models/azure/gpt-4o@us.toml new file mode 100644 index 0000000000..17bb56c532 --- /dev/null +++ b/providers/edenai/models/azure/gpt-4o@us.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-4o" +release_date = "2026-07-24" +last_updated = "2026-08-01" + +[cost] +input = 2.75 +output = 11 +cache_read = 1.375 + +[limit] +output = 128_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-5-codex.toml b/providers/edenai/models/azure/gpt-5-codex.toml new file mode 100644 index 0000000000..25d0dc6e90 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5-codex.toml @@ -0,0 +1,18 @@ +base_model = "openai/gpt-5-codex" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +attachment = true +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-mini.toml b/providers/edenai/models/azure/gpt-5-mini.toml new file mode 100644 index 0000000000..e6d938809f --- /dev/null +++ b/providers/edenai/models/azure/gpt-5-mini.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5-mini" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.25 +output = 2 +cache_read = 0.025 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-mini@eu.toml b/providers/edenai/models/azure/gpt-5-mini@eu.toml new file mode 100644 index 0000000000..0f8598e9fb --- /dev/null +++ b/providers/edenai/models/azure/gpt-5-mini@eu.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5-mini" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.275 +output = 2.2 +cache_read = 0.0275 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-mini@us.toml b/providers/edenai/models/azure/gpt-5-mini@us.toml new file mode 100644 index 0000000000..0f8598e9fb --- /dev/null +++ b/providers/edenai/models/azure/gpt-5-mini@us.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5-mini" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.275 +output = 2.2 +cache_read = 0.0275 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-nano.toml b/providers/edenai/models/azure/gpt-5-nano.toml new file mode 100644 index 0000000000..330db93e51 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5-nano.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5-nano" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.05 +output = 0.4 +cache_read = 0.005 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-nano@eu.toml b/providers/edenai/models/azure/gpt-5-nano@eu.toml new file mode 100644 index 0000000000..0c1f2e8ab0 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5-nano@eu.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5-nano" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.055 +output = 0.44 +cache_read = 0.0055 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-nano@us.toml b/providers/edenai/models/azure/gpt-5-nano@us.toml new file mode 100644 index 0000000000..0c1f2e8ab0 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5-nano@us.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5-nano" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.055 +output = 0.44 +cache_read = 0.0055 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-pro.toml b/providers/edenai/models/azure/gpt-5-pro.toml new file mode 100644 index 0000000000..69028c2ed8 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5-pro.toml @@ -0,0 +1,15 @@ +base_model = "openai/gpt-5-pro" +base_model_omit = ["limit.input"] +release_date = "2026-07-24" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 15 +output = 120 + +[limit] +context = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1-codex-max.toml b/providers/edenai/models/azure/gpt-5.1-codex-max.toml new file mode 100644 index 0000000000..c4b5fedf14 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.1-codex-max.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.1-codex-max" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1-codex-mini.toml b/providers/edenai/models/azure/gpt-5.1-codex-mini.toml new file mode 100644 index 0000000000..234186d29c --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.1-codex-mini.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.1-codex-mini" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.25 +output = 2 +cache_read = 0.025 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1-codex.toml b/providers/edenai/models/azure/gpt-5.1-codex.toml new file mode 100644 index 0000000000..f18f868bf8 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.1-codex.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.1-codex" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1.toml b/providers/edenai/models/azure/gpt-5.1.toml new file mode 100644 index 0000000000..0c67ba8a08 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.1.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.1" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1@eu.toml b/providers/edenai/models/azure/gpt-5.1@eu.toml new file mode 100644 index 0000000000..5e57f87397 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.1@eu.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.1" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.375 +output = 11 +cache_read = 0.1375 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1@us.toml b/providers/edenai/models/azure/gpt-5.1@us.toml new file mode 100644 index 0000000000..5e57f87397 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.1@us.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.1" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.375 +output = 11 +cache_read = 0.1375 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.2-codex.toml b/providers/edenai/models/azure/gpt-5.2-codex.toml new file mode 100644 index 0000000000..840e1425e7 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.2-codex.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5.2-codex" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.75 +output = 14 +cache_read = 0.175 + +[limit] +context = 272_000 +output = 272_000 diff --git a/providers/edenai/models/azure/gpt-5.2.toml b/providers/edenai/models/azure/gpt-5.2.toml new file mode 100644 index 0000000000..fd3c505db1 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.2.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.2" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.75 +output = 14 +cache_read = 0.175 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.2@us.toml b/providers/edenai/models/azure/gpt-5.2@us.toml new file mode 100644 index 0000000000..389a8f4bf4 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.2@us.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.2" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.925 +output = 15.4 +cache_read = 0.1925 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.3-codex.toml b/providers/edenai/models/azure/gpt-5.3-codex.toml new file mode 100644 index 0000000000..7a508d815a --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.3-codex.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5.3-codex" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.75 +output = 14 +cache_read = 0.175 + +[limit] +context = 272_000 +output = 272_000 diff --git a/providers/edenai/models/azure/gpt-5.4-mini.toml b/providers/edenai/models/azure/gpt-5.4-mini.toml new file mode 100644 index 0000000000..dd9fba5358 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.4-mini.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.4-mini" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.75 +output = 4.5 +cache_read = 0.075 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-mini@eu.toml b/providers/edenai/models/azure/gpt-5.4-mini@eu.toml new file mode 100644 index 0000000000..33532c3605 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.4-mini@eu.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.4-mini" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.825 +output = 4.95 +cache_read = 0.0825 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-mini@us.toml b/providers/edenai/models/azure/gpt-5.4-mini@us.toml new file mode 100644 index 0000000000..33532c3605 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.4-mini@us.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.4-mini" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.825 +output = 4.95 +cache_read = 0.0825 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-nano.toml b/providers/edenai/models/azure/gpt-5.4-nano.toml new file mode 100644 index 0000000000..4a06a3222e --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.4-nano.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.4-nano" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.2 +output = 1.25 +cache_read = 0.02 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-nano@us.toml b/providers/edenai/models/azure/gpt-5.4-nano@us.toml new file mode 100644 index 0000000000..879a309cb3 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.4-nano@us.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5.4-nano" +base_model_omit = ["limit.input"] +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.22 +output = 1.375 +cache_read = 0.022 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-pro.toml b/providers/edenai/models/azure/gpt-5.4-pro.toml new file mode 100644 index 0000000000..50b37fec81 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.4-pro.toml @@ -0,0 +1,15 @@ +base_model = "openai/gpt-5.4-pro" +release_date = "2026-07-24" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 30 +output = 180 +cache_read = 3 + +[limit] +output = 1_050_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4.toml b/providers/edenai/models/azure/gpt-5.4.toml new file mode 100644 index 0000000000..55d05b7d64 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.4.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-5.4" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2.5 +output = 15 +cache_read = 0.25 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.4@eu.toml b/providers/edenai/models/azure/gpt-5.4@eu.toml new file mode 100644 index 0000000000..e8ec58d00e --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.4@eu.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-5.4" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2.75 +output = 16.5 +cache_read = 0.275 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.4@us.toml b/providers/edenai/models/azure/gpt-5.4@us.toml new file mode 100644 index 0000000000..e8ec58d00e --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.4@us.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-5.4" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2.75 +output = 16.5 +cache_read = 0.275 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.5.toml b/providers/edenai/models/azure/gpt-5.5.toml new file mode 100644 index 0000000000..8234307444 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.5.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.5" +release_date = "2026-07-28" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 5 +output = 30 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.5@eu.toml b/providers/edenai/models/azure/gpt-5.5@eu.toml new file mode 100644 index 0000000000..19198b37fe --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.5@eu.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.5" +release_date = "2026-07-28" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 5.5 +output = 33 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.5@us.toml b/providers/edenai/models/azure/gpt-5.5@us.toml new file mode 100644 index 0000000000..19198b37fe --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.5@us.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.5" +release_date = "2026-07-28" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 5.5 +output = 33 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-luna.toml b/providers/edenai/models/azure/gpt-5.6-luna.toml new file mode 100644 index 0000000000..cc1f5e0445 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.6-luna.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.6-luna" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1 +output = 6 +cache_read = 0.1 +cache_write = 1.25 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-luna@eu.toml b/providers/edenai/models/azure/gpt-5.6-luna@eu.toml new file mode 100644 index 0000000000..fef95f870a --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.6-luna@eu.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.6-luna" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.1 +output = 6.6 +cache_read = 0.11 +cache_write = 1.375 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-luna@us.toml b/providers/edenai/models/azure/gpt-5.6-luna@us.toml new file mode 100644 index 0000000000..fef95f870a --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.6-luna@us.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.6-luna" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.1 +output = 6.6 +cache_read = 0.11 +cache_write = 1.375 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-sol.toml b/providers/edenai/models/azure/gpt-5.6-sol.toml new file mode 100644 index 0000000000..25fef58156 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.6-sol.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.6-sol" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 5 +output = 30 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-sol@eu.toml b/providers/edenai/models/azure/gpt-5.6-sol@eu.toml new file mode 100644 index 0000000000..9af99fc45a --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.6-sol@eu.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.6-sol" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 5.5 +output = 33 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-sol@us.toml b/providers/edenai/models/azure/gpt-5.6-sol@us.toml new file mode 100644 index 0000000000..9af99fc45a --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.6-sol@us.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.6-sol" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 5.5 +output = 33 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-terra.toml b/providers/edenai/models/azure/gpt-5.6-terra.toml new file mode 100644 index 0000000000..c5d9d63579 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.6-terra.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.6-terra" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2.5 +output = 15 +cache_read = 0.25 +cache_write = 3.125 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-terra@eu.toml b/providers/edenai/models/azure/gpt-5.6-terra@eu.toml new file mode 100644 index 0000000000..19dc227bbe --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.6-terra@eu.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.6-terra" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2.75 +output = 16.5 +cache_read = 0.275 +cache_write = 3.4375 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-terra@us.toml b/providers/edenai/models/azure/gpt-5.6-terra@us.toml new file mode 100644 index 0000000000..19dc227bbe --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.6-terra@us.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5.6-terra" +release_date = "2026-07-23" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2.75 +output = 16.5 +cache_read = 0.275 +cache_write = 3.4375 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.toml b/providers/edenai/models/azure/gpt-5.toml new file mode 100644 index 0000000000..7309a66ca3 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5@eu.toml b/providers/edenai/models/azure/gpt-5@eu.toml new file mode 100644 index 0000000000..b18af24f19 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5@eu.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.375 +output = 11 +cache_read = 0.1375 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5@us.toml b/providers/edenai/models/azure/gpt-5@us.toml new file mode 100644 index 0000000000..b18af24f19 --- /dev/null +++ b/providers/edenai/models/azure/gpt-5@us.toml @@ -0,0 +1,17 @@ +base_model = "openai/gpt-5" +base_model_omit = ["limit.input"] +release_date = "2026-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.375 +output = 11 +cache_read = 0.1375 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/o3.toml b/providers/edenai/models/azure/o3.toml new file mode 100644 index 0000000000..2694903782 --- /dev/null +++ b/providers/edenai/models/azure/o3.toml @@ -0,0 +1,15 @@ +base_model = "openai/o3" +release_date = "2026-07-24" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2 +output = 8 +cache_read = 0.5 + +[limit] +output = 200_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/azure/o3@eu.toml b/providers/edenai/models/azure/o3@eu.toml new file mode 100644 index 0000000000..8ecc069dcc --- /dev/null +++ b/providers/edenai/models/azure/o3@eu.toml @@ -0,0 +1,15 @@ +base_model = "openai/o3" +release_date = "2026-07-24" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2.2 +output = 8.8 +cache_read = 0.55 + +[limit] +output = 200_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/azure/o3@us.toml b/providers/edenai/models/azure/o3@us.toml new file mode 100644 index 0000000000..8ecc069dcc --- /dev/null +++ b/providers/edenai/models/azure/o3@us.toml @@ -0,0 +1,15 @@ +base_model = "openai/o3" +release_date = "2026-07-24" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2.2 +output = 8.8 +cache_read = 0.55 + +[limit] +output = 200_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/bytedance/seed-1-6-250915.toml b/providers/edenai/models/bytedance/seed-1-6-250915.toml new file mode 100644 index 0000000000..e039921794 --- /dev/null +++ b/providers/edenai/models/bytedance/seed-1-6-250915.toml @@ -0,0 +1,22 @@ +name = "seed-1-6-250915" +description = "Seed 1.6 is a general-purpose model released by the ByteDance Seed team. It incorporates multimodal capabilities and adaptive deep thinking with a 256K context window." +release_date = "2025-12-23" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.25 +output = 2 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml b/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml new file mode 100644 index 0000000000..ee866a9a0a --- /dev/null +++ b/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml @@ -0,0 +1,22 @@ +name = "seed-1-6-flash-250715" +description = "Seed 1.6 Flash is an ultra-fast multimodal deep thinking model by ByteDance Seed, supporting both text and visual understanding. It features a 256k context window and can generate outputs of..." +release_date = "2025-12-23" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.075 +output = 0.3 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml b/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml new file mode 100644 index 0000000000..985956fad6 --- /dev/null +++ b/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml @@ -0,0 +1,23 @@ +name = "seed-2-0-lite-260228" +description = "Multimodal reasoning model for visual analysis, planning, and tool use" +release_date = "2026-04-02" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.25 +output = 2 +cache_read = 0.05 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml b/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml new file mode 100644 index 0000000000..cffab922b8 --- /dev/null +++ b/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml @@ -0,0 +1,22 @@ +name = "seed-2-0-lite-260428" +description = "Seed-2.0-Lite is a versatile, cost‑efficient enterprise workhorse that delivers strong multimodal and agent capabilities while offering noticeably lower latency, making it a practical default choice for most production workloads across..." +release_date = "2026-03-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.25 +output = 2 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video", "audio"] +output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml b/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml new file mode 100644 index 0000000000..67b5f91916 --- /dev/null +++ b/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml @@ -0,0 +1,23 @@ +name = "seed-2-0-mini-260215" +description = "Multimodal reasoning model for visual analysis, planning, and tool use" +release_date = "2026-04-02" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.4 +cache_read = 0.02 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml b/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml new file mode 100644 index 0000000000..9503a76324 --- /dev/null +++ b/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml @@ -0,0 +1,22 @@ +name = "seed-2-0-mini-260428" +description = "Seed-2.0-mini targets latency-sensitive, high-concurrency, and cost-sensitive scenarios, emphasizing fast response and flexible inference deployment. It delivers performance comparable to ByteDance-Seed-1.6, supports 256k context, four reasoning effort modes (minimal/low/medium/high), multimodal understanding,..." +release_date = "2026-02-26" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.4 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video", "audio"] +output = ["text"] diff --git a/providers/edenai/models/cerebras/gpt-oss-120b.toml b/providers/edenai/models/cerebras/gpt-oss-120b.toml new file mode 100644 index 0000000000..993ca38050 --- /dev/null +++ b/providers/edenai/models/cerebras/gpt-oss-120b.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-oss-120b" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.35 +output = 0.75 +cache_read = 0.35 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/cerebras/zai-glm-4.7.toml b/providers/edenai/models/cerebras/zai-glm-4.7.toml new file mode 100644 index 0000000000..7b11b4c020 --- /dev/null +++ b/providers/edenai/models/cerebras/zai-glm-4.7.toml @@ -0,0 +1,22 @@ +name = "zai-glm-4.7" +description = "Flagship GLM model for hybrid reasoning, coding, and agentic engineering" +release_date = "2026-06-05" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 2.25 +output = 2.75 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/aisingapore/gemma-sea-lion-v4-27b-it.toml b/providers/edenai/models/cloudflare/@cf/aisingapore/gemma-sea-lion-v4-27b-it.toml new file mode 100644 index 0000000000..080f45db2d --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/aisingapore/gemma-sea-lion-v4-27b-it.toml @@ -0,0 +1,21 @@ +name = "@cf/aisingapore/gemma-sea-lion-v4-27b-it" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.351 +output = 0.555 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b.toml b/providers/edenai/models/cloudflare/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b.toml new file mode 100644 index 0000000000..4baa67fef7 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b.toml @@ -0,0 +1,22 @@ +name = "@cf/deepseek-ai/deepseek-r1-distill-qwen-32b" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.497 +output = 4.881 + +[limit] +context = 80_000 +output = 80_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/google/gemma-2b-it-lora.toml b/providers/edenai/models/cloudflare/@cf/google/gemma-2b-it-lora.toml new file mode 100644 index 0000000000..2d22e0160f --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/google/gemma-2b-it-lora.toml @@ -0,0 +1,21 @@ +name = "@cf/google/gemma-2b-it-lora" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-06-24" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0 +output = 0 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/google/gemma-4-26b-a4b-it.toml b/providers/edenai/models/cloudflare/@cf/google/gemma-4-26b-a4b-it.toml new file mode 100644 index 0000000000..b7219d5e9c --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/google/gemma-4-26b-a4b-it.toml @@ -0,0 +1,22 @@ +name = "@cf/google/gemma-4-26b-a4b-it" +description = "Gemma 4 26B A4B IT is an instruction-tuned Mixture-of-Experts (MoE) model from Google DeepMind. Despite 25.2B total parameters, only 3.8B activate per token during inference — delivering near-31B quality at..." +release_date = "2026-04-03" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["image", "text", "video"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/google/gemma-7b-it-lora.toml b/providers/edenai/models/cloudflare/@cf/google/gemma-7b-it-lora.toml new file mode 100644 index 0000000000..58996a1273 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/google/gemma-7b-it-lora.toml @@ -0,0 +1,21 @@ +name = "@cf/google/gemma-7b-it-lora" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-06-24" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0 +output = 0 + +[limit] +context = 3_500 +output = 3_500 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/ibm-granite/granite-4.0-h-micro.toml b/providers/edenai/models/cloudflare/@cf/ibm-granite/granite-4.0-h-micro.toml new file mode 100644 index 0000000000..51aebeb491 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/ibm-granite/granite-4.0-h-micro.toml @@ -0,0 +1,21 @@ +name = "@cf/ibm-granite/granite-4.0-h-micro" +description = "Granite-4.0-H-Micro is a 3B parameter from the Granite 4 family of models. These models are the latest in a series of models released by IBM. They are fine-tuned for long..." +release_date = "2025-10-20" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.017 +output = 0.112 + +[limit] +context = 131_000 +output = 131_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta-llama/llama-2-7b-chat-hf-lora.toml b/providers/edenai/models/cloudflare/@cf/meta-llama/llama-2-7b-chat-hf-lora.toml new file mode 100644 index 0000000000..1b6747d43b --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/meta-llama/llama-2-7b-chat-hf-lora.toml @@ -0,0 +1,21 @@ +name = "@cf/meta-llama/llama-2-7b-chat-hf-lora" +description = "Open Llama instruction model for multilingual chat, reasoning, and coding" +release_date = "2026-06-24" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0 +output = 0 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-3.1-8b-instruct-fp8.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-3.1-8b-instruct-fp8.toml new file mode 100644 index 0000000000..0188eb7b3d --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/meta/llama-3.1-8b-instruct-fp8.toml @@ -0,0 +1,21 @@ +name = "@cf/meta/llama-3.1-8b-instruct-fp8" +description = "Meta's latest class of model (Llama 3.1) launched with a variety of sizes & flavors. This 8B instruct-tuned version is fast and efficient. It has demonstrated strong performance compared to..." +release_date = "2024-07-23" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = true +open_weights = false + +[cost] +input = 0.152 +output = 0.287 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-1b-instruct.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-1b-instruct.toml new file mode 100644 index 0000000000..9a84661edf --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-1b-instruct.toml @@ -0,0 +1,21 @@ +name = "@cf/meta/llama-3.2-1b-instruct" +description = "Open Llama instruction model for multilingual chat, reasoning, and coding" +release_date = "2024-09-25" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.027 +output = 0.201 + +[limit] +context = 60_000 +output = 60_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-3b-instruct.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-3b-instruct.toml new file mode 100644 index 0000000000..ed105a35f4 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-3b-instruct.toml @@ -0,0 +1,21 @@ +name = "@cf/meta/llama-3.2-3b-instruct" +description = "Open Llama instruction model for multilingual chat, reasoning, and coding" +release_date = "2024-09-25" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.0509 +output = 0.335 + +[limit] +context = 80_000 +output = 80_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-3.3-70b-instruct-fp8-fast.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-3.3-70b-instruct-fp8-fast.toml new file mode 100644 index 0000000000..8fd9782fee --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/meta/llama-3.3-70b-instruct-fp8-fast.toml @@ -0,0 +1,21 @@ +name = "@cf/meta/llama-3.3-70b-instruct-fp8-fast" +description = "Compact Llama instruction model for fast chat and local deployment" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.293 +output = 2.253 + +[limit] +context = 24_000 +output = 24_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-4-scout-17b-16e-instruct.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-4-scout-17b-16e-instruct.toml new file mode 100644 index 0000000000..27e1a74c2b --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/meta/llama-4-scout-17b-16e-instruct.toml @@ -0,0 +1,21 @@ +name = "@cf/meta/llama-4-scout-17b-16e-instruct" +description = "Open multimodal Llama model for long-context analysis and efficient agents" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.27 +output = 0.85 + +[limit] +context = 131_000 +output = 131_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-guard-3-8b.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-guard-3-8b.toml new file mode 100644 index 0000000000..ab8430daab --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/meta/llama-guard-3-8b.toml @@ -0,0 +1,21 @@ +name = "@cf/meta/llama-guard-3-8b" +description = "Safety model for policy screening, moderation, and risk-aware routing workflows" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.484 +output = 0.03 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/mistral/mistral-7b-instruct-v0.2-lora.toml b/providers/edenai/models/cloudflare/@cf/mistral/mistral-7b-instruct-v0.2-lora.toml new file mode 100644 index 0000000000..4c04378ae1 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/mistral/mistral-7b-instruct-v0.2-lora.toml @@ -0,0 +1,21 @@ +name = "@cf/mistral/mistral-7b-instruct-v0.2-lora" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-06-24" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0 +output = 0 + +[limit] +context = 15_000 +output = 15_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/mistralai/mistral-small-3.1-24b-instruct.toml b/providers/edenai/models/cloudflare/@cf/mistralai/mistral-small-3.1-24b-instruct.toml new file mode 100644 index 0000000000..e137ee661f --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/mistralai/mistral-small-3.1-24b-instruct.toml @@ -0,0 +1,21 @@ +name = "@cf/mistralai/mistral-small-3.1-24b-instruct" +description = "Mistral Small 3.1 24B Instruct is an upgraded variant of Mistral Small 3 (2501), featuring 24 billion parameters with advanced multimodal capabilities. It provides state-of-the-art performance in text-based reasoning and..." +release_date = "2025-03-17" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.351 +output = 0.555 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.6.toml b/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.6.toml new file mode 100644 index 0000000000..2df46fbc9b --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.6.toml @@ -0,0 +1,23 @@ +name = "@cf/moonshotai/kimi-k2.6" +description = "Kimi K2.6 is Moonshot AI's next-generation multimodal model, designed for long-horizon coding, coding-driven UI/UX generation, and multi-agent orchestration. It handles complex end-to-end coding tasks across Python, Rust, and Go, and..." +release_date = "2026-04-20" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.95 +output = 4 +cache_read = 0.16 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.7-code.toml b/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.7-code.toml new file mode 100644 index 0000000000..398b6ebf44 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.7-code.toml @@ -0,0 +1,23 @@ +name = "@cf/moonshotai/kimi-k2.7-code" +description = "MoonshotAI: Kimi K2.7 Code is a coding-focused model in Moonshot AI's Kimi K2 family, built to complete end-to-end programming tasks reliably over long contexts. It uses a native multimodal mixture-of-experts..." +release_date = "2026-06-12" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.95 +output = 4 +cache_read = 0.19 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/nvidia/nemotron-3-120b-a12b.toml b/providers/edenai/models/cloudflare/@cf/nvidia/nemotron-3-120b-a12b.toml new file mode 100644 index 0000000000..04005552ec --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/nvidia/nemotron-3-120b-a12b.toml @@ -0,0 +1,22 @@ +name = "@cf/nvidia/nemotron-3-120b-a12b" +description = "Nemotron model for efficient reasoning, coding, and specialized AI agents" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 1.5 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-120b.toml b/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-120b.toml new file mode 100644 index 0000000000..917b7c521a --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-120b.toml @@ -0,0 +1,22 @@ +name = "@cf/openai/gpt-oss-120b" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.35 +output = 0.75 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-20b.toml b/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-20b.toml new file mode 100644 index 0000000000..961ee39383 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-20b.toml @@ -0,0 +1,22 @@ +name = "@cf/openai/gpt-oss-20b" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 0.3 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/qwen/qwen2.5-coder-32b-instruct.toml b/providers/edenai/models/cloudflare/@cf/qwen/qwen2.5-coder-32b-instruct.toml new file mode 100644 index 0000000000..caf3483964 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/qwen/qwen2.5-coder-32b-instruct.toml @@ -0,0 +1,21 @@ +name = "@cf/qwen/qwen2.5-coder-32b-instruct" +description = "Qwen coding model for software agents, repository edits, and code reasoning" +release_date = "2024-11-11" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.66 +output = 1 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/qwen/qwen3-30b-a3b-fp8.toml b/providers/edenai/models/cloudflare/@cf/qwen/qwen3-30b-a3b-fp8.toml new file mode 100644 index 0000000000..acf87e0eb3 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/qwen/qwen3-30b-a3b-fp8.toml @@ -0,0 +1,22 @@ +name = "@cf/qwen/qwen3-30b-a3b-fp8" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.0509 +output = 0.335 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/qwen/qwq-32b.toml b/providers/edenai/models/cloudflare/@cf/qwen/qwq-32b.toml new file mode 100644 index 0000000000..a5e1ee56f1 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/qwen/qwq-32b.toml @@ -0,0 +1,22 @@ +name = "@cf/qwen/qwq-32b" +description = "Qwen reasoning model for deliberate problem solving, math, and coding" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.66 +output = 1 + +[limit] +context = 24_000 +output = 24_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/zai-org/glm-4.7-flash.toml b/providers/edenai/models/cloudflare/@cf/zai-org/glm-4.7-flash.toml new file mode 100644 index 0000000000..f0eb267f34 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/zai-org/glm-4.7-flash.toml @@ -0,0 +1,22 @@ +name = "@cf/zai-org/glm-4.7-flash" +description = "As a 30B-class SOTA model, GLM-4.7-Flash offers a new option that balances performance and efficiency. It is further optimized for agentic coding use cases, strengthening coding capabilities, long-horizon task planning,..." +release_date = "2026-01-19" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.0605 +output = 0.4 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/zai-org/glm-5.2.toml b/providers/edenai/models/cloudflare/@cf/zai-org/glm-5.2.toml new file mode 100644 index 0000000000..6faf669be4 --- /dev/null +++ b/providers/edenai/models/cloudflare/@cf/zai-org/glm-5.2.toml @@ -0,0 +1,23 @@ +name = "@cf/zai-org/glm-5.2" +description = "GLM 5.2 is a large-scale reasoning model from Z.ai. It supports text input and output with a 1M-token context window, and is suited for long-horizon agent workflows, project-level software engineering,..." +release_date = "2026-06-16" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.4 +output = 4.4 +cache_read = 0.26 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/cohere/command-a-03-2025.toml b/providers/edenai/models/cohere/command-a-03-2025.toml new file mode 100644 index 0000000000..385005e67b --- /dev/null +++ b/providers/edenai/models/cohere/command-a-03-2025.toml @@ -0,0 +1,12 @@ +base_model = "cohere/command-a-03-2025" +last_updated = "2026-08-01" +structured_output = true +open_weights = false + +[cost] +input = 2.5 +output = 10 + +[limit] +context = 288_000 +output = 288_000 diff --git a/providers/edenai/models/cohere/command-r-08-2024.toml b/providers/edenai/models/cohere/command-r-08-2024.toml new file mode 100644 index 0000000000..1b613d0b58 --- /dev/null +++ b/providers/edenai/models/cohere/command-r-08-2024.toml @@ -0,0 +1,11 @@ +base_model = "cohere/command-r-08-2024" +last_updated = "2026-08-01" +structured_output = true +open_weights = false + +[cost] +input = 0.15 +output = 0.6 + +[limit] +output = 128_000 diff --git a/providers/edenai/models/cohere/command-r-plus-08-2024.toml b/providers/edenai/models/cohere/command-r-plus-08-2024.toml new file mode 100644 index 0000000000..30effcab6b --- /dev/null +++ b/providers/edenai/models/cohere/command-r-plus-08-2024.toml @@ -0,0 +1,11 @@ +base_model = "cohere/command-r-plus-08-2024" +last_updated = "2026-08-01" +structured_output = true +open_weights = false + +[cost] +input = 2.5 +output = 10 + +[limit] +output = 128_000 diff --git a/providers/edenai/models/cohere/command-r7b-12-2024.toml b/providers/edenai/models/cohere/command-r7b-12-2024.toml new file mode 100644 index 0000000000..3cd3222b86 --- /dev/null +++ b/providers/edenai/models/cohere/command-r7b-12-2024.toml @@ -0,0 +1,13 @@ +base_model = "cohere/command-r7b-12-2024" +release_date = "2024-12-14" +last_updated = "2026-08-01" +structured_output = true +open_weights = false + +[cost] +input = 0.0375 +output = 0.15 + +[limit] +context = 132_000 +output = 132_000 diff --git a/providers/edenai/models/databricks/databricks-claude-haiku-4-5.toml b/providers/edenai/models/databricks/databricks-claude-haiku-4-5.toml new file mode 100644 index 0000000000..beab678786 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-claude-haiku-4-5.toml @@ -0,0 +1,22 @@ +name = "databricks-claude-haiku-4-5" +description = "Claude Haiku 4.5 is Anthropic's fastest and most cost efficient hybrid reasoning model, optimized for real-time use and high-volume workloads. It features two modes: quick responses for time-sensitive interactions and extended reasoning for complex problem-solving. Haiku 4.5 excels in environments like coding assistance, automated agent workflows, and enterprise-scale analysis. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 1.00002 +output = 5.00003 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-1.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-1.toml new file mode 100644 index 0000000000..55ea3042d0 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-claude-opus-4-1.toml @@ -0,0 +1,22 @@ +name = "databricks-claude-opus-4-1" +description = "Claude Opus 4.1 is a state-of-the-art, hybrid reasoning model built and trained by Anthropic. This general purpose large language model is designed for both complex reasoning and real-world applications at enterprise scale. It supports text and image input, with a 200K token context window and 32K output token capabilities. This model excels at tasks like code generation, research and content creation, and multi-step agents workflows without constant human intervention. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 15.00002 +output = 74.9994 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-5.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-5.toml new file mode 100644 index 0000000000..5a1f338d2c --- /dev/null +++ b/providers/edenai/models/databricks/databricks-claude-opus-4-5.toml @@ -0,0 +1,22 @@ +name = "databricks-claude-opus-4-5" +description = "Claude Opus 4.5 is a large language model built and trained by Anthropic for production software engineering and sophisticated multi-tool agents. It supports text and image input with a 200K token context window. The model is designed for professional tasks requiring complex reasoning across multiple systems, including code generation, document creation, spreadsheets, presentations, and multi-step agent workflows. It features advanced tool use capabilities including tool search and programmatic tool calling for agents working with large tool libraries. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 5.00003 +output = 25.00001 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-6.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-6.toml new file mode 100644 index 0000000000..6902f8a708 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-claude-opus-4-6.toml @@ -0,0 +1,22 @@ +name = "databricks-claude-opus-4-6" +description = "Claude Opus 4.6 is Anthropic's most capable hybrid reasoning model with adaptive thinking capabilities. This model introduces a new max effort level for the most demanding tasks, with high effort set as the default for optimal performance. Claude Opus 4.6 excels at complex reasoning, deep analysis, code generation, research, and sophisticated multi-step workflows. It features a 1 million token context window, making it ideal for enterprise applications that require both extensive analysis and comprehensive outputs. This endpoint is hosted by Databricks." +release_date = "2026-06-08" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.00003 +output = 25.00001 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-7.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-7.toml new file mode 100644 index 0000000000..57cee2a14b --- /dev/null +++ b/providers/edenai/models/databricks/databricks-claude-opus-4-7.toml @@ -0,0 +1,22 @@ +name = "databricks-claude-opus-4-7" +description = "Claude Opus 4.7 is Anthropic's most capable hybrid reasoning model, advancing the Opus series with improved accuracy, efficiency, and enhanced vision capabilities. This model delivers stronger performance on complex extraction and agentic reasoning tasks while using fewer output tokens than its predecessor. Claude Opus 4.7 features a 1 million token context window and increased image resolution support, making it ideal for enterprise applications that require deep analysis, document understanding, and sophisticated multi-step workflows. This model is hosted by Databricks." +release_date = "2026-06-08" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.00003 +output = 25.00001 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-8.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-8.toml new file mode 100644 index 0000000000..1be13c4a9e --- /dev/null +++ b/providers/edenai/models/databricks/databricks-claude-opus-4-8.toml @@ -0,0 +1,22 @@ +name = "databricks-claude-opus-4-8" +description = "Claude Opus 4.8 is Anthropic's next-generation Opus model, hosted by Databricks." +release_date = "2026-06-08" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.00003 +output = 25.00001 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-sonnet-4-5.toml b/providers/edenai/models/databricks/databricks-claude-sonnet-4-5.toml new file mode 100644 index 0000000000..daa6997222 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-claude-sonnet-4-5.toml @@ -0,0 +1,22 @@ +name = "databricks-claude-sonnet-4-5" +description = "Claude Sonnet 4.5 is Anthropic's most advanced hybrid reasoning model. It offers two modes: near-instant responses and extended thinking for deeper reasoning based on the complexity of the task. Claude Sonnet 4.5 specializes in application that require a balance of practical throughput and advanced thinking such as customer-facing agents, production coding workflows, and content generation at scale. This endpoint is hosted by Databricks" +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 5.99998 +output = 15.00002 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-sonnet-4-6.toml b/providers/edenai/models/databricks/databricks-claude-sonnet-4-6.toml new file mode 100644 index 0000000000..4efb5e9593 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-claude-sonnet-4-6.toml @@ -0,0 +1,22 @@ +name = "databricks-claude-sonnet-4-6" +description = "Claude Sonnet 4.6 is Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work. It excels at iterative development, complex codebase navigation, end-to-end project management with memory, polished document creation, and confident computer use for web QA and workflow automation. This endpoint is hosted by Databricks." +release_date = "2026-06-08" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 2.99999 +output = 15.00002 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gemini-2-5-flash.toml b/providers/edenai/models/databricks/databricks-gemini-2-5-flash.toml new file mode 100644 index 0000000000..cd2722b56e --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gemini-2-5-flash.toml @@ -0,0 +1,21 @@ +name = "databricks-gemini-2-5-flash" +description = "Gemini 2.5 Flash is Google's best model in terms of price and performance, and offers well-rounded capabilities. Gemini 2.5 Flash is Google's first Flash model that features thinking capabilities, which lets you see the thinking process that the model goes through when generating its response. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.37499 +output = 3.12501 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text", "image", "video", "audio", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gemini-2-5-pro.toml b/providers/edenai/models/databricks/databricks-gemini-2-5-pro.toml new file mode 100644 index 0000000000..158693156c --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gemini-2-5-pro.toml @@ -0,0 +1,21 @@ +name = "databricks-gemini-2-5-pro" +description = "Gemini 2.5 Pro is Google's most advanced reasoning Gemini model, capable of solving complex problems. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 1.56247 +output = 12.49997 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text", "image", "video", "audio", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gemma-3-12b.toml b/providers/edenai/models/databricks/databricks-gemma-3-12b.toml new file mode 100644 index 0000000000..1da2896268 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gemma-3-12b.toml @@ -0,0 +1,21 @@ +name = "databricks-gemma-3-12b" +description = "Gemma 3 12B is a state-of-the-art multimodal language model built and trained by Google. The model supports a context length of 128K tokens and can analyze images and text. With support for over 140 languages and optimized for dialogue use cases, Gemma 3 12B is aligned with human preferences for helpfulness and safety. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.15001 +output = 0.50001 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-1.toml b/providers/edenai/models/databricks/databricks-gpt-5-1.toml new file mode 100644 index 0000000000..5844d58e81 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-1.toml @@ -0,0 +1,21 @@ +name = "databricks-gpt-5-1" +description = "GPT-5.1 is a general purpose large language model with reasoning capabilities developed by OpenAI. This model features both Instant and Thinking modes for fast conversation or deep reasoning, automatically adjusting for simple or complex tasks. The model excels at content creation, tutoring, technical support, and coding, with less reliance on strict prompt engineering than prior versions. It supports multimodal inputs and features a 128K token context window. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 2.49998 +output = 9.99999 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-4-mini.toml b/providers/edenai/models/databricks/databricks-gpt-5-4-mini.toml new file mode 100644 index 0000000000..391ea9e37e --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-4-mini.toml @@ -0,0 +1,22 @@ +name = "databricks-gpt-5-4-mini" +description = "GPT-5.4 Mini is a cost-optimized large language model developed by OpenAI. This endpoint is hosted by Databricks." +release_date = "2026-06-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.49996 +output = 9.00004 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-4-nano.toml b/providers/edenai/models/databricks/databricks-gpt-5-4-nano.toml new file mode 100644 index 0000000000..4651538f0b --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-4-nano.toml @@ -0,0 +1,22 @@ +name = "databricks-gpt-5-4-nano" +description = "GPT-5.4 Nano is a lightweight, cost-optimized large language model developed by OpenAI. This endpoint is hosted by Databricks." +release_date = "2026-06-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.19999 +output = 1.24999 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-4.toml b/providers/edenai/models/databricks/databricks-gpt-5-4.toml new file mode 100644 index 0000000000..6c8630f622 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-4.toml @@ -0,0 +1,22 @@ +name = "databricks-gpt-5-4" +description = "GPT-5.4 is a general purpose large language model with reasoning capabilities developed by OpenAI. It delivers improved performance on complex tasks with enhanced accuracy and more deliberate scaffolded reasoning. This model supports multimodal inputs and features a 400K total token context window with 128K maximum output tokens. This endpoint is hosted by Databricks." +release_date = "2026-06-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 2.49998 +output = 22.50003 + +[limit] +context = 1_050_000 +output = 1_050_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-5.toml b/providers/edenai/models/databricks/databricks-gpt-5-5.toml new file mode 100644 index 0000000000..d8e5b65938 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-5.toml @@ -0,0 +1,22 @@ +name = "databricks-gpt-5-5" +description = "GPT-5.5 is OpenAI's strongest frontier model for agentic work in enterprise, complex document reasoning, and long-horizon coding agents. GPT-5.5 also now powers Codex, OpenAI's coding agent. This model supports multimodal inputs and features a 400K total token context window with 128K maximum output tokens. This endpoint is hosted by Databricks." +release_date = "2026-06-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 12.50004 +output = 44.99999 + +[limit] +context = 1_050_000 +output = 1_050_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-6-luna.toml b/providers/edenai/models/databricks/databricks-gpt-5-6-luna.toml new file mode 100644 index 0000000000..44e8e3ea7c --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-6-luna.toml @@ -0,0 +1,22 @@ +name = "databricks-gpt-5-6-luna" +description = "GPT-5.6 Luna is the fast, cost-efficient model in OpenAI's GPT-5.6 family, bringing strong reasoning and agentic capability at the lowest cost in the lineup. This model supports multimodal (text and image) inputs and a long context window. This endpoint is hosted by Databricks." +release_date = "2026-07-09" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.00002 +output = 8.99997 + +[limit] +context = 1_050_000 +output = 1_050_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-6-sol.toml b/providers/edenai/models/databricks/databricks-gpt-5-6-sol.toml new file mode 100644 index 0000000000..0cabd7ca44 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-6-sol.toml @@ -0,0 +1,22 @@ +name = "databricks-gpt-5-6-sol" +description = "GPT-5.6 Sol is OpenAI's flagship model in the GPT-5.6 family, delivering state-of-the-art performance on agentic coding, long-horizon reasoning, and complex tool use, with support for a new maximum reasoning effort. This model supports multimodal (text and image) inputs and a long context window. This endpoint is hosted by Databricks." +release_date = "2026-07-09" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 9.99999 +output = 60.00001 + +[limit] +context = 1_050_000 +output = 1_050_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-6-terra.toml b/providers/edenai/models/databricks/databricks-gpt-5-6-terra.toml new file mode 100644 index 0000000000..0424ee8ad6 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-6-terra.toml @@ -0,0 +1,22 @@ +name = "databricks-gpt-5-6-terra" +description = "GPT-5.6 Terra is the balanced model in OpenAI's GPT-5.6 family for everyday agentic and reasoning workloads, offering performance competitive with GPT-5.5 at a lower cost. This model supports multimodal (text and image) inputs and a long context window. This endpoint is hosted by Databricks." +release_date = "2026-07-09" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5.00003 +output = 22.50003 + +[limit] +context = 1_050_000 +output = 1_050_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-mini.toml b/providers/edenai/models/databricks/databricks-gpt-5-mini.toml new file mode 100644 index 0000000000..b1a21c1616 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-mini.toml @@ -0,0 +1,21 @@ +name = "databricks-gpt-5-mini" +description = "GPT-5 mini is a state-of-the-art, general purpose large language model and reasoning model built and trained by OpenAI. It supports multimodal inputs and features a 128K token context window. The model is cost-optimized for reasoning and chat workloads and excels at well-defined tasks that require reliable reasoning, precise language, and rapid output for text and images. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.44989 +output = 1.99997 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-nano.toml b/providers/edenai/models/databricks/databricks-gpt-5-nano.toml new file mode 100644 index 0000000000..fb5623a2d9 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5-nano.toml @@ -0,0 +1,21 @@ +name = "databricks-gpt-5-nano" +description = "GPT-5 nano is a state-of-the-art, general purpose large language model and reasoning model built and trained by OpenAI. It supports multimodal inputs and features a 128K token context window. The model excels at high-throughput tasks like simple instruction-following or classification for routine business processes or mobile applications. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.04998 +output = 0.39998 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5.toml b/providers/edenai/models/databricks/databricks-gpt-5.toml new file mode 100644 index 0000000000..c73952a1d7 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-5.toml @@ -0,0 +1,21 @@ +name = "databricks-gpt-5" +description = "GPT-5 is a state-of-the-art, general purpose large language model and reasoning model built and trained by OpenAI. It supports multimodal inputs and features a 128K token context window. The model is built for coding, chat, reasoning and agent-driven tasks. This endpoint is hosted by Databricks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 1.24999 +output = 19.99998 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-oss-120b.toml b/providers/edenai/models/databricks/databricks-gpt-oss-120b.toml new file mode 100644 index 0000000000..1847a2c2c3 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-oss-120b.toml @@ -0,0 +1,22 @@ +name = "databricks-gpt-oss-120b" +description = "GPT OSS 120B is a state-of-the-art, reasoning model with chain-of-thought and adjustable reasoning effort levels built and trained by OpenAI. It is OpenAI's flagship open-weight model that features a 128K token context window. The model is built for high-quality reasoning tasks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15001 +output = 0.59997 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-oss-20b.toml b/providers/edenai/models/databricks/databricks-gpt-oss-20b.toml new file mode 100644 index 0000000000..98ed08981b --- /dev/null +++ b/providers/edenai/models/databricks/databricks-gpt-oss-20b.toml @@ -0,0 +1,22 @@ +name = "databricks-gpt-oss-20b" +description = "GPT OSS 20B is a state-of-the-art, lightweight reasoning model built and trained by OpenAI. This model also has a 128K token context window and excels at real-time copilots and batch inference tasks." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.07 +output = 0.30002 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-llama-4-maverick.toml b/providers/edenai/models/databricks/databricks-llama-4-maverick.toml new file mode 100644 index 0000000000..08e13179c2 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-llama-4-maverick.toml @@ -0,0 +1,21 @@ +name = "databricks-llama-4-maverick" +description = "Llama 4 Maverick is a state-of-the-art mixture of experts (MoE) language model trained and released by Meta. The model has 17B active parameters, 128 experts, and 400 billion total parameters. The model supports a context length of 128K tokens. The model is optimized for multilingual dialogue use cases, supporting 12 languages, and is aligned with human preferences for helpfulness and safety. It is not intended for use in languages other than English. Llama 4 is licensed under the Meta Llama 4 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved. Customers are responsible for ensuring compliance with applicable model licenses." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.50001 +output = 1.50003 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-meta-llama-3-1-8b-instruct.toml b/providers/edenai/models/databricks/databricks-meta-llama-3-1-8b-instruct.toml new file mode 100644 index 0000000000..0a39513623 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-meta-llama-3-1-8b-instruct.toml @@ -0,0 +1,21 @@ +name = "databricks-meta-llama-3-1-8b-instruct" +description = "Llama 3.1 is a state-of-the-art 8B parameter dense language model trained and released by Meta. The model supports a context length of 128K tokens. The model is optimized for multilingual dialogue use cases and aligned with human preferences for helpfulness and safety. It is not intended for use in languages other than English. Meta Llama 3.1 is licensed under the Meta Llama 3.1 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved. Customers are responsible for ensuring compliance with applicable model licenses." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.15001 +output = 0.45003 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-meta-llama-3-3-70b-instruct.toml b/providers/edenai/models/databricks/databricks-meta-llama-3-3-70b-instruct.toml new file mode 100644 index 0000000000..818a852df5 --- /dev/null +++ b/providers/edenai/models/databricks/databricks-meta-llama-3-3-70b-instruct.toml @@ -0,0 +1,21 @@ +name = "databricks-meta-llama-3-3-70b-instruct" +description = "Llama 3.3 is a state-of-the-art 70B parameter dense language model trained and released by Meta. The model supports a context length of 128K tokens. The model is optimized for multilingual dialogue use cases and aligned with human preferences for helpfulness and safety. It is not intended for use in languages other than English. Meta Llama 3.3 is licensed under the Meta Llama 3.3 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved. Customers are responsible for ensuring compliance with applicable model licenses." +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.50001 +output = 1.50003 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/ByteDance/Seed-1.8.toml b/providers/edenai/models/deepinfra/ByteDance/Seed-1.8.toml new file mode 100644 index 0000000000..d281415b42 --- /dev/null +++ b/providers/edenai/models/deepinfra/ByteDance/Seed-1.8.toml @@ -0,0 +1,23 @@ +name = "ByteDance/Seed-1.8" +description = "Multimodal reasoning model for visual analysis, planning, and tool use" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.25 +output = 2 +cache_read = 0.05 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-code.toml b/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-code.toml new file mode 100644 index 0000000000..9b43e32aab --- /dev/null +++ b/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-code.toml @@ -0,0 +1,23 @@ +name = "ByteDance/Seed-2.0-code" +description = "Coding model for repository understanding, refactors, and agentic engineering tasks" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 3 +cache_read = 0.1 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-mini.toml b/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-mini.toml new file mode 100644 index 0000000000..f6057467c1 --- /dev/null +++ b/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-mini.toml @@ -0,0 +1,23 @@ +name = "ByteDance/Seed-2.0-mini" +description = "Multimodal reasoning model for visual analysis, planning, and tool use" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.4 +cache_read = 0.02 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-pro.toml b/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-pro.toml new file mode 100644 index 0000000000..ef985a9129 --- /dev/null +++ b/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-pro.toml @@ -0,0 +1,23 @@ +name = "ByteDance/Seed-2.0-pro" +description = "Multimodal reasoning model for visual analysis, planning, and tool use" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 3 +cache_read = 0.1 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Gryphe/MythoMax-L2-13b.toml b/providers/edenai/models/deepinfra/Gryphe/MythoMax-L2-13b.toml new file mode 100644 index 0000000000..fcfc6c5713 --- /dev/null +++ b/providers/edenai/models/deepinfra/Gryphe/MythoMax-L2-13b.toml @@ -0,0 +1,21 @@ +name = "Gryphe/MythoMax-L2-13b" +description = "One of the highest performing and most popular fine-tunes of Llama 2 13B, with rich descriptions and roleplay. #merge" +release_date = "2023-07-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.4 +output = 0.4 + +[limit] +context = 4_096 +output = 4_096 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.5.toml b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.5.toml new file mode 100644 index 0000000000..88eca3127c --- /dev/null +++ b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.5.toml @@ -0,0 +1,23 @@ +name = "MiniMaxAI/MiniMax-M2.5" +description = "MiniMax-M2.5 is a SOTA large language model designed for real-world productivity. Trained in a diverse range of complex real-world digital working environments, M2.5 builds upon the coding expertise of M2.1..." +release_date = "2026-02-12" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 1.15 +cache_read = 0.03 + +[limit] +context = 196_608 +output = 196_608 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7-Turbo.toml b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7-Turbo.toml new file mode 100644 index 0000000000..718ab465c3 --- /dev/null +++ b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7-Turbo.toml @@ -0,0 +1,23 @@ +name = "MiniMaxAI/MiniMax-M2.7-Turbo" +description = "Efficient MiniMax model for quick assistance, coding, and routine automation" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.38 +output = 1.7 +cache_read = 0.07 + +[limit] +context = 196_608 +output = 196_608 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7.toml b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7.toml new file mode 100644 index 0000000000..856beb1131 --- /dev/null +++ b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7.toml @@ -0,0 +1,23 @@ +name = "MiniMaxAI/MiniMax-M2.7" +description = "MiniMax-M2.7 is a next-generation large language model designed for autonomous, real-world productivity and continuous improvement. Built to actively participate in its own evolution, M2.7 integrates advanced agentic capabilities through multi-agent..." +release_date = "2026-03-18" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.25 +output = 1 +cache_read = 0.05 + +[limit] +context = 196_608 +output = 196_608 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M3.toml b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M3.toml new file mode 100644 index 0000000000..7ad48f4a82 --- /dev/null +++ b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M3.toml @@ -0,0 +1,23 @@ +name = "MiniMaxAI/MiniMax-M3" +description = "MiniMax-M3 is a multimodal foundation model from MiniMax. It supports text, image, and video inputs with text output, a 1M-token context window, and is suited for long-horizon agentic work, coding,..." +release_date = "2026-05-31" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 +cache_read = 0.06 + +[limit] +context = 524_288 +output = 524_288 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-405B.toml b/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-405B.toml new file mode 100644 index 0000000000..e205d89096 --- /dev/null +++ b/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-405B.toml @@ -0,0 +1,21 @@ +name = "NousResearch/Hermes-3-Llama-3.1-405B" +description = "Hermes 3 is a generalist language model with many improvements over Hermes 2, including advanced agentic capabilities, much better roleplaying, reasoning, multi-turn conversation, long context coherence, and improvements across the..." +release_date = "2024-08-16" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 1 +output = 1 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-70B.toml b/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-70B.toml new file mode 100644 index 0000000000..16124c31c5 --- /dev/null +++ b/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-70B.toml @@ -0,0 +1,21 @@ +name = "NousResearch/Hermes-3-Llama-3.1-70B" +description = "Hermes 3 is a generalist language model with many improvements over [Hermes 2](/models/nousresearch/nous-hermes-2-mistral-7b-dpo), including advanced agentic capabilities, much better roleplaying, reasoning, multi-turn conversation, long context coherence, and improvements across the..." +release_date = "2024-08-18" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = true +open_weights = false + +[cost] +input = 0.7 +output = 0.7 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/QwQ-32B.toml b/providers/edenai/models/deepinfra/Qwen/QwQ-32B.toml new file mode 100644 index 0000000000..0bb4d4a1a5 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/QwQ-32B.toml @@ -0,0 +1,21 @@ +name = "Qwen/QwQ-32B" +description = "Qwen reasoning model for deliberate problem solving, math, and coding" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.15 +output = 0.4 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen2.5-72B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen2.5-72B-Instruct.toml new file mode 100644 index 0000000000..7b31340157 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen2.5-72B-Instruct.toml @@ -0,0 +1,21 @@ +name = "Qwen/Qwen2.5-72B-Instruct" +description = "Qwen2.5 72B is the latest series of Qwen large language models. Qwen2.5 brings the following improvements upon Qwen2: - Significantly more knowledge and has greatly improved capabilities in coding and..." +release_date = "2024-09-19" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.36 +output = 0.4 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen2.5-7B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen2.5-7B-Instruct.toml new file mode 100644 index 0000000000..36811f14c3 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen2.5-7B-Instruct.toml @@ -0,0 +1,21 @@ +name = "Qwen/Qwen2.5-7B-Instruct" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.04 +output = 0.1 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen2.5-VL-32B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen2.5-VL-32B-Instruct.toml new file mode 100644 index 0000000000..302b381e97 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen2.5-VL-32B-Instruct.toml @@ -0,0 +1,21 @@ +name = "Qwen/Qwen2.5-VL-32B-Instruct" +description = "Qwen vision-language model for visual reasoning, documents, and agent tasks" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.6 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["image", "text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-14B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-14B.toml new file mode 100644 index 0000000000..1ae31b3702 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-14B.toml @@ -0,0 +1,22 @@ +name = "Qwen/Qwen3-14B" +description = "Qwen3-14B is a dense 14.8B parameter causal language model from the Qwen3 series, designed for both complex reasoning and efficient dialogue. It supports seamless switching between a \"thinking\" mode for..." +release_date = "2025-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.12 +output = 0.24 + +[limit] +context = 40_960 +output = 40_960 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507.toml new file mode 100644 index 0000000000..b21c1b3fc2 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507.toml @@ -0,0 +1,22 @@ +name = "Qwen/Qwen3-235B-A22B-Instruct-2507" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.09 +output = 0.55 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507.toml new file mode 100644 index 0000000000..bf829f09a3 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507.toml @@ -0,0 +1,23 @@ +name = "Qwen/Qwen3-235B-A22B-Thinking-2507" +description = "Qwen3-235B-A22B-Thinking-2507 is a high-performance, open-weight Mixture-of-Experts (MoE) language model optimized for complex reasoning tasks. It activates 22B of its 235B parameters per forward pass and natively supports up to 262,144..." +release_date = "2025-07-25" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.23 +output = 2.3 +cache_read = 0.2 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml new file mode 100644 index 0000000000..7c0cf6dfa1 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3-235b-a22b" +release_date = "2026-06-02" +last_updated = "2026-08-01" +reasoning = false +structured_output = false +open_weights = false + +[cost] +input = 0.18 +output = 0.54 + +[limit] +context = 40_960 +output = 40_960 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-30B-A3B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-30B-A3B.toml new file mode 100644 index 0000000000..7019b12c56 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-30B-A3B.toml @@ -0,0 +1,22 @@ +name = "Qwen/Qwen3-30B-A3B" +description = "Qwen3, the latest generation in the Qwen large language model series, features both dense and mixture-of-experts (MoE) architectures to excel in reasoning, multilingual support, and advanced agent tasks. Its unique..." +release_date = "2025-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.12 +output = 0.5 + +[limit] +context = 40_960 +output = 40_960 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml new file mode 100644 index 0000000000..1fca136ae2 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3-32b" +release_date = "2025-04-28" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.08 +output = 0.28 + +[limit] +context = 40_960 +output = 40_960 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo.toml new file mode 100644 index 0000000000..c11cfb15c7 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo.toml @@ -0,0 +1,22 @@ +name = "Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo" +description = "Qwen coding model for software agents, repository edits, and code reasoning" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.3 +output = 1 +cache_read = 0.1 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml new file mode 100644 index 0000000000..dfc0591c2f --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml @@ -0,0 +1,12 @@ +base_model = "alibaba/qwen3-coder-480b-a35b-instruct" +release_date = "2026-01-06" +last_updated = "2026-08-01" +structured_output = false +open_weights = false + +[cost] +input = 0.4 +output = 1.6 + +[limit] +output = 262_144 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Max-Thinking.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Max-Thinking.toml new file mode 100644 index 0000000000..8b0bba88df --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-Max-Thinking.toml @@ -0,0 +1,23 @@ +name = "Qwen/Qwen3-Max-Thinking" +description = "Qwen reasoning model for deliberate problem solving, math, and coding" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 1.2 +output = 6 +cache_read = 0.24 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml new file mode 100644 index 0000000000..b6ebaeeea8 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml @@ -0,0 +1,16 @@ +base_model = "alibaba/qwen3-max" +release_date = "2026-06-22" +last_updated = "2026-08-01" +reasoning = true +tool_call = false +structured_output = false +reasoning_options = [] + +[cost] +input = 1.2 +output = 6 +cache_read = 0.24 + +[limit] +context = 256_000 +output = 256_000 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml new file mode 100644 index 0000000000..9f553f196d --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3-next-80b-a3b-instruct" +release_date = "2025-09-11" +last_updated = "2026-08-01" +reasoning = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.09 +output = 1.1 + +[limit] +context = 262_144 +output = 262_144 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-235B-A22B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-235B-A22B-Instruct.toml new file mode 100644 index 0000000000..f9390cb3d9 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-235B-A22B-Instruct.toml @@ -0,0 +1,23 @@ +name = "Qwen/Qwen3-VL-235B-A22B-Instruct" +description = "Qwen3-VL-235B-A22B Instruct is an open-weight multimodal model that unifies strong text generation with visual understanding across images and video. The Instruct model targets general vision-language use (VQA, document parsing, chart/table..." +release_date = "2025-09-23" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 0.88 +cache_read = 0.11 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-30B-A3B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-30B-A3B-Instruct.toml new file mode 100644 index 0000000000..f6ffac05d0 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-30B-A3B-Instruct.toml @@ -0,0 +1,22 @@ +name = "Qwen/Qwen3-VL-30B-A3B-Instruct" +description = "Qwen3-VL-30B-A3B-Instruct is a multimodal model that unifies strong text generation with visual understanding for images and videos. Its Instruct variant optimizes instruction-following for general multimodal tasks. It excels in perception..." +release_date = "2025-10-06" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml new file mode 100644 index 0000000000..83a4df17ad --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3.5-122b-a10b" +release_date = "2026-02-25" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.29 +output = 2.4 + +[limit] +output = 262_144 + +[modalities] +input = ["image", "text", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml new file mode 100644 index 0000000000..dfba864f16 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3.5-27b" +release_date = "2026-02-25" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.26 +output = 2.6 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml new file mode 100644 index 0000000000..30ab6ca85f --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml @@ -0,0 +1,17 @@ +base_model = "alibaba/qwen3.5-35b-a3b" +release_date = "2026-02-25" +last_updated = "2026-08-01" +tool_call = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.14 +output = 1 +cache_read = 0.05 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml new file mode 100644 index 0000000000..7a96bd8afe --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml @@ -0,0 +1,16 @@ +base_model = "alibaba/qwen3.5-397b-a17b" +release_date = "2026-02-16" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.45 +output = 3 +cache_read = 0.22 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml new file mode 100644 index 0000000000..ec02baf921 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml @@ -0,0 +1,16 @@ +base_model = "alibaba/qwen3.5-9b" +release_date = "2026-03-10" +last_updated = "2026-08-01" +attachment = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.15 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml new file mode 100644 index 0000000000..9b2b241766 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3.6-27b" +release_date = "2026-04-27" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.32 +output = 3.2 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml new file mode 100644 index 0000000000..f9ab81102d --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3.6-35b-a3b" +release_date = "2026-04-27" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.95 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml new file mode 100644 index 0000000000..8720492d17 --- /dev/null +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3.7-max" +release_date = "2026-06-22" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +reasoning_options = [] + +[cost] +input = 2.5 +output = 7.5 +cache_read = 0.5 + +[limit] +context = 256_000 +output = 256_000 diff --git a/providers/edenai/models/deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo.toml b/providers/edenai/models/deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo.toml new file mode 100644 index 0000000000..3be6e7cfbc --- /dev/null +++ b/providers/edenai/models/deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo.toml @@ -0,0 +1,21 @@ +name = "Sao10K/L3-8B-Lunaris-v1-Turbo" +description = "Efficient model for low-latency assistance, extraction, and routine automation" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.04 +output = 0.05 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Sao10K/L3.1-70B-Euryale-v2.2.toml b/providers/edenai/models/deepinfra/Sao10K/L3.1-70B-Euryale-v2.2.toml new file mode 100644 index 0000000000..eed30eea49 --- /dev/null +++ b/providers/edenai/models/deepinfra/Sao10K/L3.1-70B-Euryale-v2.2.toml @@ -0,0 +1,21 @@ +name = "Sao10K/L3.1-70B-Euryale-v2.2" +description = "General-purpose chat model for instruction following, writing, and analysis" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.85 +output = 0.85 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/Sao10K/L3.3-70B-Euryale-v2.3.toml b/providers/edenai/models/deepinfra/Sao10K/L3.3-70B-Euryale-v2.3.toml new file mode 100644 index 0000000000..a3dacff8e3 --- /dev/null +++ b/providers/edenai/models/deepinfra/Sao10K/L3.3-70B-Euryale-v2.3.toml @@ -0,0 +1,21 @@ +name = "Sao10K/L3.3-70B-Euryale-v2.3" +description = "General-purpose chat model for instruction following, writing, and analysis" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.65 +output = 0.75 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml b/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml new file mode 100644 index 0000000000..e7f077fcf4 --- /dev/null +++ b/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml @@ -0,0 +1,23 @@ +name = "XiaomiMiMo/MiMo-V2.5-Pro" +description = "MiMo-V2.5-Pro is Xiaomi’s flagship model, delivering strong performance in general agentic capabilities, complex software engineering, and long-horizon tasks, with top rankings on benchmarks such as ClawEval, GDPVal, and SWE-bench Pro...." +release_date = "2026-04-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1 +output = 3 +cache_read = 0.2 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5.toml b/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5.toml new file mode 100644 index 0000000000..664cbbeffc --- /dev/null +++ b/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5.toml @@ -0,0 +1,23 @@ +name = "XiaomiMiMo/MiMo-V2.5" +description = "MiMo-V2.5 is a native omnimodal model by Xiaomi. It delivers Pro-level agentic performance at roughly half the inference cost, while surpassing MiMo-V2-Omni in multimodal perception across image and video understanding..." +release_date = "2026-04-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.4 +output = 2 +cache_read = 0.08 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "audio", "video"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/allenai/olmOCR-7B-0725-FP8.toml b/providers/edenai/models/deepinfra/allenai/olmOCR-7B-0725-FP8.toml new file mode 100644 index 0000000000..72d1347541 --- /dev/null +++ b/providers/edenai/models/deepinfra/allenai/olmOCR-7B-0725-FP8.toml @@ -0,0 +1,21 @@ +name = "allenai/olmOCR-7B-0725-FP8" +description = "General-purpose chat model for instruction following, writing, and analysis" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.27 +output = 1.5 + +[limit] +context = 16_384 +output = 16_384 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-3-7-sonnet-latest.toml b/providers/edenai/models/deepinfra/anthropic/claude-3-7-sonnet-latest.toml new file mode 100644 index 0000000000..a4da7f22c8 --- /dev/null +++ b/providers/edenai/models/deepinfra/anthropic/claude-3-7-sonnet-latest.toml @@ -0,0 +1,22 @@ +name = "anthropic/claude-3-7-sonnet-latest" +description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3.3 +output = 16.5 +cache_read = 0.33 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-4-opus.toml b/providers/edenai/models/deepinfra/anthropic/claude-4-opus.toml new file mode 100644 index 0000000000..530cbf5868 --- /dev/null +++ b/providers/edenai/models/deepinfra/anthropic/claude-4-opus.toml @@ -0,0 +1,21 @@ +name = "anthropic/claude-4-opus" +description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 16.5 +output = 82.5 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-4-sonnet.toml b/providers/edenai/models/deepinfra/anthropic/claude-4-sonnet.toml new file mode 100644 index 0000000000..3a44a45ddf --- /dev/null +++ b/providers/edenai/models/deepinfra/anthropic/claude-4-sonnet.toml @@ -0,0 +1,21 @@ +name = "anthropic/claude-4-sonnet" +description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3.3 +output = 16.5 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml b/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml new file mode 100644 index 0000000000..fa7aa37b59 --- /dev/null +++ b/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml @@ -0,0 +1,16 @@ +base_model = "anthropic/claude-haiku-4-5" +release_date = "2026-06-22" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +reasoning_options = [] + +[cost] +input = 1 +output = 5 + +[limit] +output = 200_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml b/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml new file mode 100644 index 0000000000..4a77af0073 --- /dev/null +++ b/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml @@ -0,0 +1,16 @@ +base_model = "anthropic/claude-opus-4-7" +release_date = "2026-06-22" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +reasoning_options = [] + +[cost] +input = 5 +output = 25 + +[limit] +output = 1_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml b/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml new file mode 100644 index 0000000000..7634acf023 --- /dev/null +++ b/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml @@ -0,0 +1,16 @@ +base_model = "anthropic/claude-opus-5" +release_date = "2026-07-27" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +reasoning_options = [] + +[cost] +input = 5 +output = 25 + +[limit] +output = 1_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml b/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml new file mode 100644 index 0000000000..5a11bd61b8 --- /dev/null +++ b/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml @@ -0,0 +1,16 @@ +base_model = "anthropic/claude-sonnet-4-6" +release_date = "2026-06-22" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +reasoning_options = [] + +[cost] +input = 3 +output = 15 + +[limit] +output = 1_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/deepreinforce-ai/Ornith-1.0-35B.toml b/providers/edenai/models/deepinfra/deepreinforce-ai/Ornith-1.0-35B.toml new file mode 100644 index 0000000000..c145aae101 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepreinforce-ai/Ornith-1.0-35B.toml @@ -0,0 +1,23 @@ +name = "deepreinforce-ai/Ornith-1.0-35B" +description = "Large coding-reasoning model for agentic software tasks and RL search" +release_date = "2026-06-29" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.75 +cache_read = 0.05 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo.toml new file mode 100644 index 0000000000..4d0b2542b1 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo.toml @@ -0,0 +1,21 @@ +name = "deepseek-ai/DeepSeek-R1-0528-Turbo" +description = "DeepSeek reasoning model for multi-step analysis, math, coding, and tools" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 1 +output = 3 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528.toml new file mode 100644 index 0000000000..82e3ebe529 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528.toml @@ -0,0 +1,23 @@ +name = "deepseek-ai/DeepSeek-R1-0528" +description = "May 28th update to the [original DeepSeek R1](/deepseek/deepseek-r1) Performance on par with [OpenAI o1](/openai/o1), but open-sourced and with fully open reasoning tokens. It's 671B parameters in size, with 37B active..." +release_date = "2025-05-28" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 2.15 +cache_read = 0.35 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B.toml new file mode 100644 index 0000000000..2256e25354 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B.toml @@ -0,0 +1,22 @@ +name = "deepseek-ai/DeepSeek-R1-Distill-Llama-70B" +description = "DeepSeek R1 Distill Llama 70B is a distilled large language model based on [Llama-3.3-70B-Instruct](/meta-llama/llama-3.3-70b-instruct), using outputs from [DeepSeek R1](/deepseek/deepseek-r1). The model combines advanced distillation techniques to achieve high performance across..." +release_date = "2025-01-23" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.7 +output = 0.8 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B.toml new file mode 100644 index 0000000000..337d284969 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B.toml @@ -0,0 +1,21 @@ +name = "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.27 +output = 0.27 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Turbo.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Turbo.toml new file mode 100644 index 0000000000..4060a00c4c --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Turbo.toml @@ -0,0 +1,21 @@ +name = "deepseek-ai/DeepSeek-R1-Turbo" +description = "DeepSeek reasoning model for multi-step analysis, math, coding, and tools" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 1 +output = 3 + +[limit] +context = 40_960 +output = 40_960 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1.toml new file mode 100644 index 0000000000..f4739897d8 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1.toml @@ -0,0 +1,21 @@ +name = "deepseek-ai/DeepSeek-R1" +description = "DeepSeek reasoning model for multi-step analysis, math, coding, and tools" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.7 +output = 2.4 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3-0324.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3-0324.toml new file mode 100644 index 0000000000..15e4b08d66 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3-0324.toml @@ -0,0 +1,22 @@ +name = "deepseek-ai/DeepSeek-V3-0324" +description = "DeepSeek chat model for instruction following, coding, and analysis" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.24 +output = 0.9 +cache_read = 0.135 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus.toml new file mode 100644 index 0000000000..1c48c35e9d --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus.toml @@ -0,0 +1,23 @@ +name = "deepseek-ai/DeepSeek-V3.1-Terminus" +description = "DeepSeek-V3.1 Terminus is an update to [DeepSeek V3.1](/deepseek/deepseek-chat-v3.1) that maintains the model's original capabilities while addressing issues reported by users, including language consistency and agent capabilities, further optimizing the model's..." +release_date = "2025-09-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.27 +output = 0.95 +cache_read = 0.13 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1.toml new file mode 100644 index 0000000000..94064928f7 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1.toml @@ -0,0 +1,23 @@ +name = "deepseek-ai/DeepSeek-V3.1" +description = "DeepSeek chat model for instruction following, coding, and analysis" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.25 +output = 0.95 +cache_read = 0.13 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.2.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.2.toml new file mode 100644 index 0000000000..65513b6582 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.2.toml @@ -0,0 +1,23 @@ +name = "deepseek-ai/DeepSeek-V3.2" +description = "DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance. It introduces DeepSeek Sparse Attention (DSA), a fine-grained sparse attention mechanism..." +release_date = "2025-12-01" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.26 +output = 0.38 +cache_read = 0.13 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.toml new file mode 100644 index 0000000000..4b12435b15 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.toml @@ -0,0 +1,21 @@ +name = "deepseek-ai/DeepSeek-V3" +description = "DeepSeek chat model for instruction following, coding, and analysis" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.32 +output = 0.89 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash-0731.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash-0731.toml new file mode 100644 index 0000000000..49038e8fac --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash-0731.toml @@ -0,0 +1,23 @@ +name = "deepseek-ai/DeepSeek-V4-Flash-0731" +description = "DeepSeek V4 Flash 0731 is a sparse mixture-of-experts model from DeepSeek, with 13B active parameters out of 284B total. This re-post-trained revision is suited for coding, reasoning, and agent workflows." +release_date = "2026-07-31" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.09 +output = 0.18 +cache_read = 0.018 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash.toml new file mode 100644 index 0000000000..a7a8406270 --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash.toml @@ -0,0 +1,23 @@ +name = "deepseek-ai/DeepSeek-V4-Flash" +description = "DeepSeek V4 Flash is an efficiency-optimized Mixture-of-Experts model from DeepSeek with 284B total parameters and 13B activated parameters, supporting a 1M-token context window. It is designed for fast inference and..." +release_date = "2026-04-24" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.09 +output = 0.18 +cache_read = 0.018 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Pro.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Pro.toml new file mode 100644 index 0000000000..50a91f720e --- /dev/null +++ b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Pro.toml @@ -0,0 +1,23 @@ +name = "deepseek-ai/DeepSeek-V4-Pro" +description = "DeepSeek V4 Pro is a large-scale Mixture-of-Experts model from DeepSeek with 1.6T total parameters and 49B activated parameters, supporting a 1M-token context window. It is designed for advanced reasoning, coding,..." +release_date = "2026-04-24" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.3 +output = 2.6 +cache_read = 0.1 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml b/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml new file mode 100644 index 0000000000..59bfe20ad4 --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml @@ -0,0 +1,16 @@ +base_model = "google/gemini-2.5-flash" +release_date = "2026-01-06" +last_updated = "2026-08-01" +structured_output = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml b/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml new file mode 100644 index 0000000000..d6134b4ec8 --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml @@ -0,0 +1,16 @@ +base_model = "google/gemini-2.5-pro" +release_date = "2026-01-06" +last_updated = "2026-08-01" +structured_output = false +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml b/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml new file mode 100644 index 0000000000..f3359bb90d --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml @@ -0,0 +1,17 @@ +base_model = "google/gemini-3.1-flash-lite" +release_date = "2026-06-22" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +reasoning_options = [] + +[cost] +input = 0.25 +output = 1.5 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-3.1-pro.toml b/providers/edenai/models/deepinfra/google/gemini-3.1-pro.toml new file mode 100644 index 0000000000..03ef4cba2c --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemini-3.1-pro.toml @@ -0,0 +1,22 @@ +name = "google/gemini-3.1-pro" +description = "Advanced Gemini model for complex reasoning, coding, and multimodal analysis" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 2 +output = 12 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml b/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml new file mode 100644 index 0000000000..e36d08836b --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml @@ -0,0 +1,17 @@ +base_model = "google/gemini-3.5-flash" +release_date = "2026-06-22" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +reasoning_options = [] + +[cost] +input = 1.5 +output = 9 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemma-3-12b-it.toml b/providers/edenai/models/deepinfra/google/gemma-3-12b-it.toml new file mode 100644 index 0000000000..e20d451912 --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemma-3-12b-it.toml @@ -0,0 +1,21 @@ +name = "google/gemma-3-12b-it" +description = "Gemma 3 introduces multimodality, supporting vision-language input and text outputs. It handles context windows up to 128k tokens, understands over 140 languages, and offers improved math, reasoning, and chat capabilities,..." +release_date = "2025-03-13" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.05 +output = 0.15 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-3-27b-it.toml b/providers/edenai/models/deepinfra/google/gemma-3-27b-it.toml new file mode 100644 index 0000000000..d27febfd64 --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemma-3-27b-it.toml @@ -0,0 +1,21 @@ +name = "google/gemma-3-27b-it" +description = "Gemma 3 introduces multimodality, supporting vision-language input and text outputs. It handles context windows up to 128k tokens, understands over 140 languages, and offers improved math, reasoning, and chat capabilities,..." +release_date = "2025-03-12" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.08 +output = 0.16 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-3-4b-it.toml b/providers/edenai/models/deepinfra/google/gemma-3-4b-it.toml new file mode 100644 index 0000000000..c956d95100 --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemma-3-4b-it.toml @@ -0,0 +1,21 @@ +name = "google/gemma-3-4b-it" +description = "Gemma 3 introduces multimodality, supporting vision-language input and text outputs. It handles context windows up to 128k tokens, understands over 140 languages, and offers improved math, reasoning, and chat capabilities,..." +release_date = "2025-03-13" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.05 +output = 0.1 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml b/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml new file mode 100644 index 0000000000..68c765ad5f --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml @@ -0,0 +1,15 @@ +base_model = "google/gemma-4-26b-a4b-it" +release_date = "2026-04-03" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.07 +output = 0.34 + +[limit] +output = 262_144 + +[modalities] +input = ["image", "text", "video"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-31B-it-Ultra.toml b/providers/edenai/models/deepinfra/google/gemma-4-31B-it-Ultra.toml new file mode 100644 index 0000000000..b35b59cc5c --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemma-4-31B-it-Ultra.toml @@ -0,0 +1,22 @@ +name = "google/gemma-4-31B-it-Ultra" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-07-28" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.27 +output = 0.76 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-31B-it-turbo.toml b/providers/edenai/models/deepinfra/google/gemma-4-31B-it-turbo.toml new file mode 100644 index 0000000000..fafddb7ef4 --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemma-4-31B-it-turbo.toml @@ -0,0 +1,23 @@ +name = "google/gemma-4-31B-it-turbo" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.09 +output = 0.34 +cache_read = 0.05 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml b/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml new file mode 100644 index 0000000000..b184cdffbe --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml @@ -0,0 +1,16 @@ +base_model = "google/gemma-4-31b-it" +last_updated = "2026-08-01" +tool_call = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.13 +output = 0.38 +cache_read = 0.05 + +[limit] +output = 262_144 + +[modalities] +input = ["image", "text", "video"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml b/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml new file mode 100644 index 0000000000..a3f543394a --- /dev/null +++ b/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml @@ -0,0 +1,18 @@ +base_model = "google/gemma-4-E4B-it" +release_date = "2026-07-15" +last_updated = "2026-08-01" +attachment = false +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.02 +output = 0.1 + +[limit] +output = 131_072 + +[modalities] +input = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct.toml new file mode 100644 index 0000000000..1e17d4a445 --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Llama-3.2-11B-Vision-Instruct" +description = "Llama 3.2 11B Vision is a multimodal model with 11 billion parameters, designed to handle tasks combining visual and textual data. It excels in tasks such as image captioning and..." +release_date = "2024-09-25" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = true +open_weights = false + +[cost] +input = 0.345 +output = 0.345 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-3B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-3B-Instruct.toml new file mode 100644 index 0000000000..c64394313d --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-3B-Instruct.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Llama-3.2-3B-Instruct" +description = "Open Llama instruction model for multilingual chat, reasoning, and coding" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.02 +output = 0.02 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml new file mode 100644 index 0000000000..4a939bfe77 --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Llama-3.3-70B-Instruct-Turbo" +description = "Compact Llama instruction model for fast chat and local deployment" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.1 +output = 0.32 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml new file mode 100644 index 0000000000..fcf10dbec3 --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml @@ -0,0 +1,13 @@ +base_model = "meta/llama-3.3-70b-instruct" +last_updated = "2026-08-01" +attachment = false +structured_output = true +open_weights = false + +[cost] +input = 0.1 +output = 0.32 + +[limit] +context = 131_072 +output = 131_072 diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8.toml new file mode 100644 index 0000000000..3e92058b40 --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8" +description = "Open multimodal Llama model for strong reasoning and fast responses" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.8 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct.toml new file mode 100644 index 0000000000..8e106c0986 --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Llama-4-Scout-17B-16E-Instruct" +description = "Open multimodal Llama model for long-context analysis and efficient agents" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 327_680 +output = 327_680 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-3-8B.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-3-8B.toml new file mode 100644 index 0000000000..4b7b8cac70 --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-3-8B.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Llama-Guard-3-8B" +description = "Safety model for policy screening, moderation, and risk-aware routing workflows" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.055 +output = 0.055 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-4-12B.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-4-12B.toml new file mode 100644 index 0000000000..e2b4ef1e4c --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-4-12B.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Llama-Guard-4-12B" +description = "Llama Guard 4 is a Llama 4 Scout-derived multimodal pretrained model, fine-tuned for content safety classification. Similar to previous versions, it can be used to classify content in both LLM..." +release_date = "2025-04-30" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = true +open_weights = false + +[cost] +input = 0.18 +output = 0.18 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["image", "text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3-8B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3-8B-Instruct.toml new file mode 100644 index 0000000000..44d9f43169 --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3-8B-Instruct.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Meta-Llama-3-8B-Instruct" +description = "Open Llama instruction model for multilingual chat, reasoning, and coding" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.03 +output = 0.06 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo.toml new file mode 100644 index 0000000000..956e093906 --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo" +description = "Compact Llama instruction model for fast chat and local deployment" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.4 +output = 0.4 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct.toml new file mode 100644 index 0000000000..52d4138b4b --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Meta-Llama-3.1-70B-Instruct" +description = "Open Llama instruction model for multilingual chat, reasoning, and coding" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.4 +output = 0.4 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo.toml new file mode 100644 index 0000000000..c96b213b33 --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo" +description = "Compact Llama instruction model for fast chat and local deployment" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.02 +output = 0.04 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct.toml new file mode 100644 index 0000000000..9a6c064c1b --- /dev/null +++ b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Meta-Llama-3.1-8B-Instruct" +description = "Open Llama instruction model for multilingual chat, reasoning, and coding" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.02 +output = 0.05 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/microsoft/WizardLM-2-8x22B.toml b/providers/edenai/models/deepinfra/microsoft/WizardLM-2-8x22B.toml new file mode 100644 index 0000000000..340f0efa9b --- /dev/null +++ b/providers/edenai/models/deepinfra/microsoft/WizardLM-2-8x22B.toml @@ -0,0 +1,21 @@ +name = "microsoft/WizardLM-2-8x22B" +description = "General-purpose chat model for instruction following, writing, and analysis" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.48 +output = 0.48 + +[limit] +context = 65_536 +output = 65_536 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/microsoft/phi-4.toml b/providers/edenai/models/deepinfra/microsoft/phi-4.toml new file mode 100644 index 0000000000..b5004da7d6 --- /dev/null +++ b/providers/edenai/models/deepinfra/microsoft/phi-4.toml @@ -0,0 +1,21 @@ +name = "microsoft/phi-4" +description = "[Microsoft Research](/microsoft) Phi-4 is designed to perform well in complex reasoning tasks and can operate efficiently in situations with limited memory or where quick responses are needed. At 14 billion..." +release_date = "2025-01-10" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.07 +output = 0.14 + +[limit] +context = 16_384 +output = 16_384 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/mistralai/Mistral-Nemo-Instruct-2407.toml b/providers/edenai/models/deepinfra/mistralai/Mistral-Nemo-Instruct-2407.toml new file mode 100644 index 0000000000..5bab262d70 --- /dev/null +++ b/providers/edenai/models/deepinfra/mistralai/Mistral-Nemo-Instruct-2407.toml @@ -0,0 +1,21 @@ +name = "mistralai/Mistral-Nemo-Instruct-2407" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.019 +output = 0.03 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/mistralai/Mistral-Small-24B-Instruct-2501.toml b/providers/edenai/models/deepinfra/mistralai/Mistral-Small-24B-Instruct-2501.toml new file mode 100644 index 0000000000..42f6976b1d --- /dev/null +++ b/providers/edenai/models/deepinfra/mistralai/Mistral-Small-24B-Instruct-2501.toml @@ -0,0 +1,21 @@ +name = "mistralai/Mistral-Small-24B-Instruct-2501" +description = "Mistral Small 3 is a 24B-parameter language model optimized for low-latency performance across common AI tasks. Released under the Apache 2.0 license, it features both pre-trained and instruction-tuned versions designed..." +release_date = "2025-01-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.05 +output = 0.08 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506.toml b/providers/edenai/models/deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506.toml new file mode 100644 index 0000000000..2ef3ce0f0b --- /dev/null +++ b/providers/edenai/models/deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506.toml @@ -0,0 +1,21 @@ +name = "mistralai/Mistral-Small-3.2-24B-Instruct-2506" +description = "Efficient Mistral model for fast chat, extraction, and production assistants" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.075 +output = 0.2 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1.toml b/providers/edenai/models/deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1.toml new file mode 100644 index 0000000000..9d2fbf9cd9 --- /dev/null +++ b/providers/edenai/models/deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1.toml @@ -0,0 +1,21 @@ +name = "mistralai/Mixtral-8x7B-Instruct-v0.1" +description = "Tool-capable chat model for instruction following and agentic application workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.4 +output = 0.4 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct-0905.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct-0905.toml new file mode 100644 index 0000000000..b5f707d08d --- /dev/null +++ b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct-0905.toml @@ -0,0 +1,22 @@ +name = "moonshotai/Kimi-K2-Instruct-0905" +description = "Kimi model for long-context chat, coding, and agentic reasoning" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.5 +output = 2 +cache_read = 0.4 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct.toml new file mode 100644 index 0000000000..f639c58ffe --- /dev/null +++ b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct.toml @@ -0,0 +1,21 @@ +name = "moonshotai/Kimi-K2-Instruct" +description = "Kimi model for long-context chat, coding, and agentic reasoning" +release_date = "2026-06-02" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.5 +output = 2 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.5.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.5.toml new file mode 100644 index 0000000000..cd89bb713f --- /dev/null +++ b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.5.toml @@ -0,0 +1,13 @@ +base_model = "moonshotai/kimi-k2.5" +release_date = "2026-01-27" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.45 +output = 2.25 +cache_read = 0.07 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.6.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.6.toml new file mode 100644 index 0000000000..eb4f4e7a48 --- /dev/null +++ b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.6.toml @@ -0,0 +1,13 @@ +base_model = "moonshotai/kimi-k2.6" +release_date = "2026-04-20" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.75 +output = 3.5 +cache_read = 0.15 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.7-Code.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.7-Code.toml new file mode 100644 index 0000000000..dbeb7b4012 --- /dev/null +++ b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.7-Code.toml @@ -0,0 +1,12 @@ +base_model = "moonshotai/kimi-k2.7-code" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.74 +output = 3.5 +cache_read = 0.15 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml b/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml new file mode 100644 index 0000000000..76e00ce192 --- /dev/null +++ b/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml @@ -0,0 +1,14 @@ +base_model = "nvidia/nemotron-3-ultra-550b-a55b" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 2.2 +cache_read = 0.1 + +[limit] +context = 262_144 +output = 262_144 diff --git a/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml b/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml new file mode 100644 index 0000000000..8fbe3e89a1 --- /dev/null +++ b/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml @@ -0,0 +1,13 @@ +base_model = "nvidia/llama-3.1-nemotron-70b-instruct" +release_date = "2026-01-06" +last_updated = "2026-08-01" +structured_output = false +open_weights = false + +[cost] +input = 0.6 +output = 0.6 + +[limit] +context = 131_072 +output = 131_072 diff --git a/providers/edenai/models/deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5.toml b/providers/edenai/models/deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5.toml new file mode 100644 index 0000000000..9190e36de7 --- /dev/null +++ b/providers/edenai/models/deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5.toml @@ -0,0 +1,10 @@ +base_model = "nvidia/llama-3.3-nemotron-super-49b-v1.5" +release_date = "2025-10-10" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.4 +output = 0.4 diff --git a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B.toml b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B.toml new file mode 100644 index 0000000000..551ca459fb --- /dev/null +++ b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B.toml @@ -0,0 +1,22 @@ +name = "nvidia/NVIDIA-Nemotron-3-Super-120B-A12B" +description = "Nemotron model for efficient reasoning, coding, and specialized AI agents" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.085 +output = 0.4 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml new file mode 100644 index 0000000000..4c2c40b96f --- /dev/null +++ b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml @@ -0,0 +1,23 @@ +name = "nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16" +description = "Nemotron multimodal model for visual reasoning and agentic AI workflows" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 1 +output = 5 +cache_read = 0.3 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B.toml b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B.toml new file mode 100644 index 0000000000..372eea19dc --- /dev/null +++ b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B.toml @@ -0,0 +1,23 @@ +name = "nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B" +description = "Nemotron multimodal model for visual reasoning and agentic AI workflows" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 2.2 +cache_read = 0.1 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml new file mode 100644 index 0000000000..bfe472a919 --- /dev/null +++ b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml @@ -0,0 +1,21 @@ +name = "nvidia/NVIDIA-Nemotron-Nano-9B-v2" +description = "Compact Nemotron model for efficient reasoning and deployable AI agents" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.04 +output = 0.16 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-30B-A3B.toml b/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-30B-A3B.toml new file mode 100644 index 0000000000..24d9af74ca --- /dev/null +++ b/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-30B-A3B.toml @@ -0,0 +1,11 @@ +base_model = "nvidia/nemotron-3-nano-30b-a3b" +release_date = "2025-12-14" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.05 +output = 0.2 +cache_read = 0.025 diff --git a/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml b/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml new file mode 100644 index 0000000000..4aefe1584d --- /dev/null +++ b/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml @@ -0,0 +1,18 @@ +base_model = "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning" +release_date = "2026-06-22" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 0.8 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/nvidia/Nemotron-Content-Safety-3.5.toml b/providers/edenai/models/deepinfra/nvidia/Nemotron-Content-Safety-3.5.toml new file mode 100644 index 0000000000..880c6bcec7 --- /dev/null +++ b/providers/edenai/models/deepinfra/nvidia/Nemotron-Content-Safety-3.5.toml @@ -0,0 +1,21 @@ +name = "nvidia/Nemotron-Content-Safety-3.5" +description = "Safety model for policy screening, moderation, and risk-aware routing workflows" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.2 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Turbo.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Turbo.toml new file mode 100644 index 0000000000..5bb34e1a75 --- /dev/null +++ b/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Turbo.toml @@ -0,0 +1,22 @@ +name = "openai/gpt-oss-120b-Turbo" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Ultra.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Ultra.toml new file mode 100644 index 0000000000..ddad3d0592 --- /dev/null +++ b/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Ultra.toml @@ -0,0 +1,22 @@ +name = "openai/gpt-oss-120b-Ultra" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2026-07-28" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 0.95 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml new file mode 100644 index 0000000000..ca05a14179 --- /dev/null +++ b/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml @@ -0,0 +1,11 @@ +base_model = "openai/gpt-oss-120b" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.037 +output = 0.17 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml new file mode 100644 index 0000000000..6c5a1bb764 --- /dev/null +++ b/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml @@ -0,0 +1,11 @@ +base_model = "openai/gpt-oss-20b" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.03 +output = 0.14 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml new file mode 100644 index 0000000000..3fd37fab16 --- /dev/null +++ b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml @@ -0,0 +1,15 @@ +base_model = "stepfun/step-3.5-flash" +base_model_omit = ["limit.input"] +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.09 +output = 0.3 +cache_read = 0.02 + +[limit] +context = 262_144 +output = 262_144 diff --git a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml new file mode 100644 index 0000000000..230b1e6dfc --- /dev/null +++ b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml @@ -0,0 +1,16 @@ +base_model = "stepfun/step-3.7-flash" +base_model_omit = ["limit.input"] +release_date = "2026-05-28" +last_updated = "2026-08-01" +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 1.15 +cache_read = 0.04 + +[limit] +context = 262_144 +output = 262_144 diff --git a/providers/edenai/models/deepinfra/tencent/Hy3.toml b/providers/edenai/models/deepinfra/tencent/Hy3.toml new file mode 100644 index 0000000000..b1829bb8f2 --- /dev/null +++ b/providers/edenai/models/deepinfra/tencent/Hy3.toml @@ -0,0 +1,14 @@ +base_model = "tencent/hy3" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.14 +output = 0.58 +cache_read = 0.035 + +[limit] +context = 262_144 +output = 262_144 diff --git a/providers/edenai/models/deepinfra/thinkingmachines/Inkling-Small.toml b/providers/edenai/models/deepinfra/thinkingmachines/Inkling-Small.toml new file mode 100644 index 0000000000..b6a6e3937e --- /dev/null +++ b/providers/edenai/models/deepinfra/thinkingmachines/Inkling-Small.toml @@ -0,0 +1,23 @@ +name = "thinkingmachines/Inkling-Small" +description = "Inkling Small is an open-weight multimodal mixture-of-experts model from Thinking Machines Lab, with 12B active parameters out of 276B total. It is positioned as the smaller, more efficient member of..." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 1.2 +cache_read = 0.1 + +[limit] +context = 524_288 +output = 524_288 + +[modalities] +input = ["text", "image", "audio"] +output = ["text"] diff --git a/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml b/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml new file mode 100644 index 0000000000..a8b37a003d --- /dev/null +++ b/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml @@ -0,0 +1,16 @@ +base_model = "thinkingmachines/inkling" +release_date = "2026-07-17" +last_updated = "2026-08-01" +tool_call = false +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1 +output = 4.05 +cache_read = 0.17 + +[limit] +context = 524_288 +output = 524_288 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml new file mode 100644 index 0000000000..2d68153134 --- /dev/null +++ b/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml @@ -0,0 +1,13 @@ +base_model = "zhipuai/glm-4.5" +release_date = "2026-06-02" +last_updated = "2026-08-01" +reasoning = false +structured_output = false +open_weights = false + +[cost] +input = 0.4 +output = 1.6 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml new file mode 100644 index 0000000000..37c4f34648 --- /dev/null +++ b/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml @@ -0,0 +1,14 @@ +base_model = "zhipuai/glm-4.6" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 2 +cache_read = 0.1 + +[limit] +context = 202_752 +output = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml new file mode 100644 index 0000000000..7ddef03c01 --- /dev/null +++ b/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml @@ -0,0 +1,14 @@ +base_model = "zhipuai/glm-4.7-flash" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.06 +output = 0.4 +cache_read = 0.01 + +[limit] +context = 202_752 +output = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml new file mode 100644 index 0000000000..251199cfbe --- /dev/null +++ b/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml @@ -0,0 +1,14 @@ +base_model = "zhipuai/glm-4.7" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.4 +output = 1.75 +cache_read = 0.08 + +[limit] +context = 202_752 +output = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml b/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml new file mode 100644 index 0000000000..f51158bad4 --- /dev/null +++ b/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml @@ -0,0 +1,13 @@ +base_model = "zhipuai/glm-5.1" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 1.05 +output = 3.5 +cache_read = 0.205 + +[limit] +context = 202_752 +output = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml b/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml new file mode 100644 index 0000000000..feb2173565 --- /dev/null +++ b/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml @@ -0,0 +1,14 @@ +base_model = "zhipuai/glm-5.2" +release_date = "2026-06-16" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.75 +output = 2.4 +cache_read = 0.14 + +[limit] +context = 1_048_576 +output = 1_048_576 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-5.toml b/providers/edenai/models/deepinfra/zai-org/GLM-5.toml new file mode 100644 index 0000000000..f6e3ea61ea --- /dev/null +++ b/providers/edenai/models/deepinfra/zai-org/GLM-5.toml @@ -0,0 +1,15 @@ +base_model = "zhipuai/glm-5" +release_date = "2026-02-11" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 2.08 +cache_read = 0.12 + +[limit] +context = 202_752 +output = 202_752 diff --git a/providers/edenai/models/deepseek/deepseek-chat.toml b/providers/edenai/models/deepseek/deepseek-chat.toml new file mode 100644 index 0000000000..68d9028732 --- /dev/null +++ b/providers/edenai/models/deepseek/deepseek-chat.toml @@ -0,0 +1,14 @@ +base_model = "deepseek/deepseek-chat" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +structured_output = true + +[cost] +input = 0.28 +output = 0.42 +cache_read = 0.028 + +[limit] +context = 131_072 +output = 131_072 diff --git a/providers/edenai/models/deepseek/deepseek-reasoner.toml b/providers/edenai/models/deepseek/deepseek-reasoner.toml new file mode 100644 index 0000000000..b2fb68f364 --- /dev/null +++ b/providers/edenai/models/deepseek/deepseek-reasoner.toml @@ -0,0 +1,16 @@ +base_model = "deepseek/deepseek-reasoner" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +tool_call = false +structured_output = true +reasoning_options = [] + +[cost] +input = 0.28 +output = 0.42 +cache_read = 0.028 + +[limit] +context = 131_072 +output = 131_072 diff --git a/providers/edenai/models/deepseek/deepseek-v4-flash.toml b/providers/edenai/models/deepseek/deepseek-v4-flash.toml new file mode 100644 index 0000000000..f8098ad7fa --- /dev/null +++ b/providers/edenai/models/deepseek/deepseek-v4-flash.toml @@ -0,0 +1,12 @@ +base_model = "deepseek/deepseek-v4-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.14 +output = 0.28 +cache_read = 0.0028 + +[limit] +context = 1_048_576 +output = 1_048_576 diff --git a/providers/edenai/models/deepseek/deepseek-v4-pro.toml b/providers/edenai/models/deepseek/deepseek-v4-pro.toml new file mode 100644 index 0000000000..30724d6b76 --- /dev/null +++ b/providers/edenai/models/deepseek/deepseek-v4-pro.toml @@ -0,0 +1,12 @@ +base_model = "deepseek/deepseek-v4-pro" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.435 +output = 0.87 +cache_read = 0.003625 + +[limit] +context = 1_048_576 +output = 1_048_576 diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash-0731.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash-0731.toml new file mode 100644 index 0000000000..d0639f4719 --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash-0731.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/deepseek-v4-flash-0731" +description = "DeepSeek V4 Flash 0731 is a sparse mixture-of-experts model from DeepSeek, with 13B active parameters out of 284B total. This re-post-trained revision is suited for coding, reasoning, and agent workflows." +release_date = "2026-07-31" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.14 +output = 0.28 +cache_read = 0.028 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash.toml new file mode 100644 index 0000000000..8327883486 --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/deepseek-v4-flash" +description = "DeepSeek V4 Flash is an efficiency-optimized Mixture-of-Experts model from DeepSeek with 284B total parameters and 13B activated parameters, supporting a 1M-token context window. It is designed for fast inference and..." +release_date = "2026-04-24" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.14 +output = 0.28 +cache_read = 0.028 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-pro.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-pro.toml new file mode 100644 index 0000000000..02201a893f --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-pro.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/deepseek-v4-pro" +description = "DeepSeek V4 Pro is a large-scale Mixture-of-Experts model from DeepSeek with 1.6T total parameters and 49B activated parameters, supporting a 1M-token context window. It is designed for advanced reasoning, coding,..." +release_date = "2026-04-24" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.74 +output = 3.48 +cache_read = 0.145 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/glm-5p2.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/glm-5p2.toml new file mode 100644 index 0000000000..597c6fe6e6 --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/glm-5p2.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/glm-5p2" +description = "Flagship GLM model for hybrid reasoning, coding, and agentic engineering" +release_date = "2026-06-29" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.4 +output = 4.4 +cache_read = 0.14 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-120b.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-120b.toml new file mode 100644 index 0000000000..c9d8caab28 --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-120b.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/gpt-oss-120b" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 +cache_read = 0.015 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-20b.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-20b.toml new file mode 100644 index 0000000000..f4be57d0ee --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-20b.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/gpt-oss-20b" +description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" +release_date = "2025-08-05" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.07 +output = 0.3 +cache_read = 0.035 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p6.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p6.toml new file mode 100644 index 0000000000..f7a3d0cd4e --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p6.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/kimi-k2p6" +description = "Kimi multimodal agent model for visual understanding, coding, and planning" +release_date = "2026-06-29" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.95 +output = 4 +cache_read = 0.16 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p7-code.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p7-code.toml new file mode 100644 index 0000000000..57f4a98acf --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p7-code.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/kimi-k2p7-code" +description = "Kimi coding model for software agents, refactors, and repository reasoning" +release_date = "2026-07-29" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.95 +output = 4 +cache_read = 0.19 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k3.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k3.toml new file mode 100644 index 0000000000..e3d09f0ab2 --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k3.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/kimi-k3" +description = "Kimi K3 is a 2.8T parameter open-weight multimodal reasoning model from Moonshot AI. It is suited for complex coding, knowledge work, and long-horizon agentic workflows, and is particularly strong at..." +release_date = "2026-07-16" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m2p7.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m2p7.toml new file mode 100644 index 0000000000..1e932e085f --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m2p7.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/minimax-m2p7" +description = "MiniMax model for chat, coding, office work, and agentic tasks" +release_date = "2026-07-29" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 +cache_read = 0.06 + +[limit] +context = 196_608 +output = 196_608 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m3.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m3.toml new file mode 100644 index 0000000000..be5d0d51a5 --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m3.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/models/minimax-m3" +description = "MiniMax multimodal coding model for long-context reasoning and agent tasks" +release_date = "2026-07-29" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 +cache_read = 0.06 + +[limit] +context = 512_000 +output = 512_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/routers/kimi-k2p7-code-fast.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/routers/kimi-k2p7-code-fast.toml new file mode 100644 index 0000000000..5aeafa9df7 --- /dev/null +++ b/providers/edenai/models/fireworks_ai/accounts/fireworks/routers/kimi-k2p7-code-fast.toml @@ -0,0 +1,23 @@ +name = "accounts/fireworks/routers/kimi-k2p7-code-fast" +description = "Kimi coding model for software agents, refactors, and repository reasoning" +release_date = "2026-07-29" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.9 +output = 8 +cache_read = 0.38 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml b/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml new file mode 100644 index 0000000000..149717f86d --- /dev/null +++ b/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml @@ -0,0 +1,13 @@ +base_model = "deepseek/deepseek-v4-flash" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.14 +output = 0.28 +cache_read = 0.028 + +[limit] +context = 1_048_576 +output = 1_048_576 diff --git a/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml b/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml new file mode 100644 index 0000000000..eff25c2c2d --- /dev/null +++ b/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml @@ -0,0 +1,14 @@ +base_model = "deepseek/deepseek-v4-pro" +last_updated = "2026-08-01" +tool_call = false +open_weights = false +reasoning_options = [] + +[cost] +input = 1.74 +output = 3.48 +cache_read = 0.145 + +[limit] +context = 1_048_576 +output = 1_048_576 diff --git a/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml b/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml new file mode 100644 index 0000000000..362ed47d05 --- /dev/null +++ b/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-oss-120b" +last_updated = "2026-08-01" +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 +cache_read = 0.014 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml b/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml new file mode 100644 index 0000000000..e24b94623f --- /dev/null +++ b/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-oss-20b" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.07 +output = 0.3 +cache_read = 0.035 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/fireworks_ai/kimi-k3.toml b/providers/edenai/models/fireworks_ai/kimi-k3.toml new file mode 100644 index 0000000000..42cbb765b1 --- /dev/null +++ b/providers/edenai/models/fireworks_ai/kimi-k3.toml @@ -0,0 +1,15 @@ +base_model = "moonshotai/kimi-k3" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 + +[limit] +output = 1_048_576 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/google/gemini-2.5-flash-image.toml b/providers/edenai/models/google/gemini-2.5-flash-image.toml new file mode 100644 index 0000000000..76828d848b --- /dev/null +++ b/providers/edenai/models/google/gemini-2.5-flash-image.toml @@ -0,0 +1,15 @@ +base_model = "google/gemini-2.5-flash-image" +release_date = "2025-10-07" +last_updated = "2026-08-01" +reasoning = false +structured_output = true + +[cost] +input = 0.3 +output = 2.5 +cache_read = 0.03 +cache_write = 0.083333 +input_audio = 1 + +[modalities] +input = ["audio", "image", "text", "video"] diff --git a/providers/edenai/models/google/gemini-2.5-flash-lite.toml b/providers/edenai/models/google/gemini-2.5-flash-lite.toml new file mode 100644 index 0000000000..2d173f174f --- /dev/null +++ b/providers/edenai/models/google/gemini-2.5-flash-lite.toml @@ -0,0 +1,15 @@ +base_model = "google/gemini-2.5-flash-lite" +release_date = "2025-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.4 +reasoning = 0.4 +cache_read = 0.01 +cache_write = 0.083333 +input_audio = 0.3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-2.5-flash.toml b/providers/edenai/models/google/gemini-2.5-flash.toml new file mode 100644 index 0000000000..b9cdd36d61 --- /dev/null +++ b/providers/edenai/models/google/gemini-2.5-flash.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-2.5-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +reasoning = 2.5 +cache_read = 0.03 +cache_write = 0.083333 +input_audio = 1 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-2.5-pro.toml b/providers/edenai/models/google/gemini-2.5-pro.toml new file mode 100644 index 0000000000..8ece6136f6 --- /dev/null +++ b/providers/edenai/models/google/gemini-2.5-pro.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-2.5-pro" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +reasoning = 10 +cache_read = 0.125 +cache_write = 0.375 +input_audio = 1.25 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3-flash-preview.toml b/providers/edenai/models/google/gemini-3-flash-preview.toml new file mode 100644 index 0000000000..5456db9671 --- /dev/null +++ b/providers/edenai/models/google/gemini-3-flash-preview.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3-flash-preview" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.5 +output = 3 +reasoning = 3 +cache_read = 0.05 +cache_write = 0.083333 +input_audio = 1 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3-pro-image-preview.toml b/providers/edenai/models/google/gemini-3-pro-image-preview.toml new file mode 100644 index 0000000000..df3fd1976c --- /dev/null +++ b/providers/edenai/models/google/gemini-3-pro-image-preview.toml @@ -0,0 +1,15 @@ +base_model = "google/gemini-3-pro-image-preview" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 2 +output = 12 +reasoning = 12 +cache_read = 0.2 +cache_write = 0.375 +input_audio = 2 + +[limit] +output = 65_536 diff --git a/providers/edenai/models/google/gemini-3-pro-image.toml b/providers/edenai/models/google/gemini-3-pro-image.toml new file mode 100644 index 0000000000..fcaec3d6b3 --- /dev/null +++ b/providers/edenai/models/google/gemini-3-pro-image.toml @@ -0,0 +1,16 @@ +base_model = "google/gemini-3-pro-image" +release_date = "2025-11-20" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 2 +output = 12 +reasoning = 12 +cache_read = 0.2 +cache_write = 0.375 +input_audio = 2 + +[limit] +output = 65_536 diff --git a/providers/edenai/models/google/gemini-3.1-flash-image-preview.toml b/providers/edenai/models/google/gemini-3.1-flash-image-preview.toml new file mode 100644 index 0000000000..58a347ee51 --- /dev/null +++ b/providers/edenai/models/google/gemini-3.1-flash-image-preview.toml @@ -0,0 +1,11 @@ +base_model = "google/gemini-3.1-flash-image-preview" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.5 +output = 3 + +[modalities] +input = ["image", "text"] diff --git a/providers/edenai/models/google/gemini-3.1-flash-image.toml b/providers/edenai/models/google/gemini-3.1-flash-image.toml new file mode 100644 index 0000000000..0bb8f40f3c --- /dev/null +++ b/providers/edenai/models/google/gemini-3.1-flash-image.toml @@ -0,0 +1,16 @@ +base_model = "google/gemini-3.1-flash-image" +release_date = "2026-02-26" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.5 +output = 3 + +[limit] +context = 65_536 +output = 65_536 + +[modalities] +input = ["image", "text"] diff --git a/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml b/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml new file mode 100644 index 0000000000..48b0cae08b --- /dev/null +++ b/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml @@ -0,0 +1,12 @@ +base_model = "google/gemini-3.1-flash-lite-image" +last_updated = "2026-08-01" +tool_call = false +structured_output = true +reasoning_options = [] + +[cost] +input = 0.25 +output = 1.5 + +[limit] +output = 65_536 diff --git a/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml b/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml new file mode 100644 index 0000000000..a573fe4c5d --- /dev/null +++ b/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml @@ -0,0 +1,15 @@ +base_model = "google/gemini-3.1-flash-lite-preview" +release_date = "2026-05-07" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.25 +output = 1.5 +reasoning = 1.5 +cache_read = 0.025 +cache_write = 0.083333 +input_audio = 0.5 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.1-flash-lite.toml b/providers/edenai/models/google/gemini-3.1-flash-lite.toml new file mode 100644 index 0000000000..230d1c99ed --- /dev/null +++ b/providers/edenai/models/google/gemini-3.1-flash-lite.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.1-flash-lite" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.25 +output = 1.5 +reasoning = 1.5 +cache_read = 0.025 +cache_write = 0.083333 +input_audio = 0.5 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml b/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml new file mode 100644 index 0000000000..08786adc5f --- /dev/null +++ b/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml @@ -0,0 +1,15 @@ +base_model = "google/gemini-3.1-pro-preview-customtools" +release_date = "2026-02-25" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2 +output = 12 +reasoning = 12 +cache_read = 0.2 +cache_write = 0.375 +input_audio = 2 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.1-pro-preview.toml b/providers/edenai/models/google/gemini-3.1-pro-preview.toml new file mode 100644 index 0000000000..4aad224aa5 --- /dev/null +++ b/providers/edenai/models/google/gemini-3.1-pro-preview.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.1-pro-preview" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2 +output = 12 +reasoning = 12 +cache_read = 0.2 +cache_write = 0.375 +input_audio = 2 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.5-flash-lite.toml b/providers/edenai/models/google/gemini-3.5-flash-lite.toml new file mode 100644 index 0000000000..565c18b5b4 --- /dev/null +++ b/providers/edenai/models/google/gemini-3.5-flash-lite.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.5-flash-lite" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +reasoning = 2.5 +cache_read = 0.03 +cache_write = 0.083333 +input_audio = 0.3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.5-flash.toml b/providers/edenai/models/google/gemini-3.5-flash.toml new file mode 100644 index 0000000000..341fe75c72 --- /dev/null +++ b/providers/edenai/models/google/gemini-3.5-flash.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.5-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.5 +output = 9 +reasoning = 9 +cache_read = 0.15 +cache_write = 0.083333 +input_audio = 3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.6-flash.toml b/providers/edenai/models/google/gemini-3.6-flash.toml new file mode 100644 index 0000000000..ed74c59262 --- /dev/null +++ b/providers/edenai/models/google/gemini-3.6-flash.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.6-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.5 +output = 7.5 +reasoning = 7.5 +cache_read = 0.15 +cache_write = 0.083333 +input_audio = 1.5 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/google/gemma-4-26b-a4b-it.toml b/providers/edenai/models/google/gemma-4-26b-a4b-it.toml new file mode 100644 index 0000000000..6300dcd6be --- /dev/null +++ b/providers/edenai/models/google/gemma-4-26b-a4b-it.toml @@ -0,0 +1,15 @@ +base_model = "google/gemma-4-26b-a4b-it" +release_date = "2026-04-03" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0 +output = 0 + +[limit] +output = 262_144 + +[modalities] +input = ["image", "text", "video"] diff --git a/providers/edenai/models/google/gemma-4-31b-it.toml b/providers/edenai/models/google/gemma-4-31b-it.toml new file mode 100644 index 0000000000..a5d60bb15f --- /dev/null +++ b/providers/edenai/models/google/gemma-4-31b-it.toml @@ -0,0 +1,14 @@ +base_model = "google/gemma-4-31b-it" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0 +output = 0 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/groq/llama-3.1-8b-instant.toml b/providers/edenai/models/groq/llama-3.1-8b-instant.toml new file mode 100644 index 0000000000..0b3f20c8a5 --- /dev/null +++ b/providers/edenai/models/groq/llama-3.1-8b-instant.toml @@ -0,0 +1,22 @@ +name = "llama-3.1-8b-instant" +description = "Compact Llama instruction model for fast chat and local deployment" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.05 +output = 0.08 +cache_read = 0.025 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/groq/llama-3.3-70b-versatile.toml b/providers/edenai/models/groq/llama-3.3-70b-versatile.toml new file mode 100644 index 0000000000..49ee1284fa --- /dev/null +++ b/providers/edenai/models/groq/llama-3.3-70b-versatile.toml @@ -0,0 +1,22 @@ +name = "llama-3.3-70b-versatile" +description = "Open Llama instruction model for multilingual chat, reasoning, and coding" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.59 +output = 0.79 +cache_read = 0.295 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/groq/openai/gpt-oss-120b.toml b/providers/edenai/models/groq/openai/gpt-oss-120b.toml new file mode 100644 index 0000000000..d1f746cf0a --- /dev/null +++ b/providers/edenai/models/groq/openai/gpt-oss-120b.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-oss-120b" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 +cache_read = 0.075 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/groq/openai/gpt-oss-20b.toml b/providers/edenai/models/groq/openai/gpt-oss-20b.toml new file mode 100644 index 0000000000..aaa0104f02 --- /dev/null +++ b/providers/edenai/models/groq/openai/gpt-oss-20b.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-oss-20b" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.075 +output = 0.3 +cache_read = 0.0375 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/groq/openai/gpt-oss-safeguard-20b.toml b/providers/edenai/models/groq/openai/gpt-oss-safeguard-20b.toml new file mode 100644 index 0000000000..406e3d77a3 --- /dev/null +++ b/providers/edenai/models/groq/openai/gpt-oss-safeguard-20b.toml @@ -0,0 +1,23 @@ +name = "openai/gpt-oss-safeguard-20b" +description = "gpt-oss-safeguard-20b is a safety reasoning model from OpenAI built upon gpt-oss-20b. This open-weight, 21B-parameter Mixture-of-Experts (MoE) model offers lower latency for safety tasks like content classification, LLM filtering, and trust..." +release_date = "2025-10-29" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.075 +output = 0.3 +cache_read = 0.0375 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/groq/qwen/qwen3.6-27b.toml b/providers/edenai/models/groq/qwen/qwen3.6-27b.toml new file mode 100644 index 0000000000..06fea14953 --- /dev/null +++ b/providers/edenai/models/groq/qwen/qwen3.6-27b.toml @@ -0,0 +1,17 @@ +base_model = "alibaba/qwen3.6-27b" +release_date = "2026-06-22" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 3 +cache_read = 0.3 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/lilac/google/gemma-4-31b-it.toml b/providers/edenai/models/lilac/google/gemma-4-31b-it.toml new file mode 100644 index 0000000000..df9ee1558b --- /dev/null +++ b/providers/edenai/models/lilac/google/gemma-4-31b-it.toml @@ -0,0 +1,15 @@ +base_model = "google/gemma-4-31b-it" +release_date = "2026-06-08" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.0825 +output = 0.2625 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/lilac/minimaxai/minimax-m3.toml b/providers/edenai/models/lilac/minimaxai/minimax-m3.toml new file mode 100644 index 0000000000..c02160ba90 --- /dev/null +++ b/providers/edenai/models/lilac/minimaxai/minimax-m3.toml @@ -0,0 +1,23 @@ +name = "minimaxai/minimax-m3" +description = "MiniMax multimodal coding model for long-context reasoning and agent tasks" +release_date = "2026-06-23" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.21 +output = 0.825 +cache_read = 0.0375 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/lilac/moonshotai/kimi-k2.6.toml b/providers/edenai/models/lilac/moonshotai/kimi-k2.6.toml new file mode 100644 index 0000000000..417f70d66a --- /dev/null +++ b/providers/edenai/models/lilac/moonshotai/kimi-k2.6.toml @@ -0,0 +1,13 @@ +base_model = "moonshotai/kimi-k2.6" +release_date = "2026-06-08" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.525 +output = 2.625 +cache_read = 0.12 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/lilac/zai-org/glm-5.2.toml b/providers/edenai/models/lilac/zai-org/glm-5.2.toml new file mode 100644 index 0000000000..83be5472bd --- /dev/null +++ b/providers/edenai/models/lilac/zai-org/glm-5.2.toml @@ -0,0 +1,14 @@ +base_model = "zhipuai/glm-5.2" +release_date = "2026-06-23" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.675 +output = 2.25 +cache_read = 0.1275 + +[limit] +context = 524_288 +output = 524_288 diff --git a/providers/edenai/models/microsoft/gpt-35-turbo-16k.toml b/providers/edenai/models/microsoft/gpt-35-turbo-16k.toml new file mode 100644 index 0000000000..1bd6c85a56 --- /dev/null +++ b/providers/edenai/models/microsoft/gpt-35-turbo-16k.toml @@ -0,0 +1,21 @@ +name = "gpt-35-turbo-16k" +description = "Compact GPT model for low-latency assistance and high-volume workloads" +release_date = "2023-08-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 3 +output = 4 + +[limit] +context = 16_385 +output = 16_385 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/microsoft/gpt-35-turbo.toml b/providers/edenai/models/microsoft/gpt-35-turbo.toml new file mode 100644 index 0000000000..6b3acb570e --- /dev/null +++ b/providers/edenai/models/microsoft/gpt-35-turbo.toml @@ -0,0 +1,21 @@ +name = "gpt-35-turbo" +description = "Compact GPT model for low-latency assistance and high-volume workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.5 +output = 1.5 + +[limit] +context = 4_097 +output = 4_097 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/microsoft/gpt-4.toml b/providers/edenai/models/microsoft/gpt-4.toml new file mode 100644 index 0000000000..63f0d4a66d --- /dev/null +++ b/providers/edenai/models/microsoft/gpt-4.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-4" +release_date = "2023-05-28" +last_updated = "2026-08-01" +attachment = false +structured_output = true + +[cost] +input = 30 +output = 60 + +[limit] +context = 8_191 +output = 8_191 diff --git a/providers/edenai/models/microsoft/gpt-4o-mini.toml b/providers/edenai/models/microsoft/gpt-4o-mini.toml new file mode 100644 index 0000000000..fdc9e8eda0 --- /dev/null +++ b/providers/edenai/models/microsoft/gpt-4o-mini.toml @@ -0,0 +1,11 @@ +base_model = "openai/gpt-4o-mini" +last_updated = "2026-08-01" +tool_call = false + +[cost] +input = 0.15 +output = 0.6 +cache_read = 0.075 + +[limit] +output = 128_000 diff --git a/providers/edenai/models/microsoft/gpt-4o.toml b/providers/edenai/models/microsoft/gpt-4o.toml new file mode 100644 index 0000000000..afe37ce611 --- /dev/null +++ b/providers/edenai/models/microsoft/gpt-4o.toml @@ -0,0 +1,10 @@ +base_model = "openai/gpt-4o" +last_updated = "2026-08-01" + +[cost] +input = 2.5 +output = 10 +cache_read = 1.25 + +[limit] +output = 128_000 diff --git a/providers/edenai/models/microsoft/o1-mini.toml b/providers/edenai/models/microsoft/o1-mini.toml new file mode 100644 index 0000000000..2743b5ace6 --- /dev/null +++ b/providers/edenai/models/microsoft/o1-mini.toml @@ -0,0 +1,23 @@ +name = "o1-mini" +description = "O-series reasoning model for hard analysis, math, coding, and planning" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 1.21 +output = 4.84 +cache_read = 0.605 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/microsoft/o3-mini.toml b/providers/edenai/models/microsoft/o3-mini.toml new file mode 100644 index 0000000000..2f30073057 --- /dev/null +++ b/providers/edenai/models/microsoft/o3-mini.toml @@ -0,0 +1,12 @@ +base_model = "openai/o3-mini" +release_date = "2026-01-06" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.1 +output = 4.4 +cache_read = 0.55 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/minimax/MiniMax-M2.1.toml b/providers/edenai/models/minimax/MiniMax-M2.1.toml new file mode 100644 index 0000000000..10ac73d660 --- /dev/null +++ b/providers/edenai/models/minimax/MiniMax-M2.1.toml @@ -0,0 +1,12 @@ +base_model = "minimax/MiniMax-M2.1" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 +cache_read = 0.03 + +[limit] +output = 204_800 diff --git a/providers/edenai/models/minimax/MiniMax-M2.5.toml b/providers/edenai/models/minimax/MiniMax-M2.5.toml new file mode 100644 index 0000000000..4dc6c9d9c2 --- /dev/null +++ b/providers/edenai/models/minimax/MiniMax-M2.5.toml @@ -0,0 +1,12 @@ +base_model = "minimax/MiniMax-M2.5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 +cache_read = 0.03 + +[limit] +output = 204_800 diff --git a/providers/edenai/models/minimax/MiniMax-M2.7.toml b/providers/edenai/models/minimax/MiniMax-M2.7.toml new file mode 100644 index 0000000000..320522b53a --- /dev/null +++ b/providers/edenai/models/minimax/MiniMax-M2.7.toml @@ -0,0 +1,12 @@ +base_model = "minimax/MiniMax-M2.7" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 +cache_read = 0.06 + +[limit] +output = 204_800 diff --git a/providers/edenai/models/minimax/MiniMax-M2.toml b/providers/edenai/models/minimax/MiniMax-M2.toml new file mode 100644 index 0000000000..34e26eafd9 --- /dev/null +++ b/providers/edenai/models/minimax/MiniMax-M2.toml @@ -0,0 +1,13 @@ +base_model = "minimax/MiniMax-M2" +release_date = "2025-10-23" +last_updated = "2026-08-01" +structured_output = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 + +[limit] +context = 204_800 +output = 204_800 diff --git a/providers/edenai/models/minimax/MiniMax-M3.toml b/providers/edenai/models/minimax/MiniMax-M3.toml new file mode 100644 index 0000000000..20ae98bf08 --- /dev/null +++ b/providers/edenai/models/minimax/MiniMax-M3.toml @@ -0,0 +1,14 @@ +base_model = "minimax/MiniMax-M3" +release_date = "2026-05-31" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 +cache_read = 0.06 + +[limit] +context = 524_288 +output = 524_288 diff --git a/providers/edenai/models/minimax/minimax-m1.toml b/providers/edenai/models/minimax/minimax-m1.toml new file mode 100644 index 0000000000..43e16905a6 --- /dev/null +++ b/providers/edenai/models/minimax/minimax-m1.toml @@ -0,0 +1,22 @@ +name = "minimax-m1" +description = "MiniMax-M1 is a large-scale, open-weight reasoning model designed for extended context and high-efficiency inference. It leverages a hybrid Mixture-of-Experts (MoE) architecture paired with a custom \"lightning attention\" mechanism, allowing it..." +release_date = "2025-06-17" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = true +reasoning_options = [] + +[cost] +input = 0.4 +output = 2.2 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/codestral-2405.toml b/providers/edenai/models/mistral/codestral-2405.toml new file mode 100644 index 0000000000..3f582e9c3e --- /dev/null +++ b/providers/edenai/models/mistral/codestral-2405.toml @@ -0,0 +1,21 @@ +name = "codestral-2405" +description = "Mistral coding model for code completion, generation, and developer workflows" +release_date = "2026-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = true + +[cost] +input = 1 +output = 3 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/codestral-2508.toml b/providers/edenai/models/mistral/codestral-2508.toml new file mode 100644 index 0000000000..ad60af1704 --- /dev/null +++ b/providers/edenai/models/mistral/codestral-2508.toml @@ -0,0 +1,22 @@ +name = "codestral-2508" +description = "Mistral's cutting-edge language model for coding released end of July 2025. Codestral specializes in low-latency, high-frequency tasks such as fill-in-the-middle (FIM), code correction and test generation. [Blog Post](https://mistral.ai/news/codestral-25-08)" +release_date = "2025-08-01" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.3 +output = 0.9 +cache_read = 0.03 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/mistral/codestral-latest.toml b/providers/edenai/models/mistral/codestral-latest.toml new file mode 100644 index 0000000000..7fb1c948bd --- /dev/null +++ b/providers/edenai/models/mistral/codestral-latest.toml @@ -0,0 +1,11 @@ +base_model = "mistral/codestral-latest" +release_date = "2026-06-05" +last_updated = "2026-08-01" +structured_output = true + +[cost] +input = 1 +output = 3 + +[limit] +output = 256_000 diff --git a/providers/edenai/models/mistral/devstral-2512.toml b/providers/edenai/models/mistral/devstral-2512.toml new file mode 100644 index 0000000000..5e1f723423 --- /dev/null +++ b/providers/edenai/models/mistral/devstral-2512.toml @@ -0,0 +1,11 @@ +base_model = "mistral/devstral-2512" +last_updated = "2026-08-01" +attachment = true +structured_output = true + +[cost] +input = 0.4 +output = 2 + +[modalities] +input = ["text", "pdf"] diff --git a/providers/edenai/models/mistral/devstral-latest.toml b/providers/edenai/models/mistral/devstral-latest.toml new file mode 100644 index 0000000000..1a9c863479 --- /dev/null +++ b/providers/edenai/models/mistral/devstral-latest.toml @@ -0,0 +1,21 @@ +name = "devstral-latest" +description = "Mistral coding agent model for repository tasks and software engineering workflows" +release_date = "2026-02-20" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.4 +output = 2 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/devstral-medium-latest.toml b/providers/edenai/models/mistral/devstral-medium-latest.toml new file mode 100644 index 0000000000..626c0598d8 --- /dev/null +++ b/providers/edenai/models/mistral/devstral-medium-latest.toml @@ -0,0 +1,8 @@ +base_model = "mistral/devstral-medium-latest" +release_date = "2026-02-20" +last_updated = "2026-08-01" +structured_output = true + +[cost] +input = 0.4 +output = 2 diff --git a/providers/edenai/models/mistral/devstral-small-latest.toml b/providers/edenai/models/mistral/devstral-small-latest.toml new file mode 100644 index 0000000000..3667d557b7 --- /dev/null +++ b/providers/edenai/models/mistral/devstral-small-latest.toml @@ -0,0 +1,21 @@ +name = "devstral-small-latest" +description = "Mistral coding agent model for repository tasks and software engineering workflows" +release_date = "2026-02-20" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/labs-devstral-small-2512.toml b/providers/edenai/models/mistral/labs-devstral-small-2512.toml new file mode 100644 index 0000000000..bba7df978f --- /dev/null +++ b/providers/edenai/models/mistral/labs-devstral-small-2512.toml @@ -0,0 +1,21 @@ +name = "labs-devstral-small-2512" +description = "Mistral coding agent model for repository tasks and software engineering workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/magistral-medium-2509.toml b/providers/edenai/models/mistral/magistral-medium-2509.toml new file mode 100644 index 0000000000..c818cfd08a --- /dev/null +++ b/providers/edenai/models/mistral/magistral-medium-2509.toml @@ -0,0 +1,22 @@ +name = "magistral-medium-2509" +description = "Mistral reasoning model for transparent analysis, math, and complex decisions" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 2 +output = 5 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/mistral/magistral-medium-latest.toml b/providers/edenai/models/mistral/magistral-medium-latest.toml new file mode 100644 index 0000000000..2d12ff144f --- /dev/null +++ b/providers/edenai/models/mistral/magistral-medium-latest.toml @@ -0,0 +1,18 @@ +base_model = "mistral/magistral-medium-latest" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 2 +output = 5 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/mistral/magistral-small-latest.toml b/providers/edenai/models/mistral/magistral-small-latest.toml new file mode 100644 index 0000000000..bd82286f96 --- /dev/null +++ b/providers/edenai/models/mistral/magistral-small-latest.toml @@ -0,0 +1,22 @@ +name = "magistral-small-latest" +description = "Mistral reasoning model for transparent analysis, math, and complex decisions" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.5 +output = 1.5 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/mistral/ministral-14b-2512.toml b/providers/edenai/models/mistral/ministral-14b-2512.toml new file mode 100644 index 0000000000..38db14f558 --- /dev/null +++ b/providers/edenai/models/mistral/ministral-14b-2512.toml @@ -0,0 +1,22 @@ +name = "ministral-14b-2512" +description = "The largest model in the Ministral 3 family, Ministral 3 14B offers frontier capabilities and performance comparable to its larger Mistral Small 3.2 24B counterpart. A powerful and efficient language..." +release_date = "2025-12-02" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.2 +output = 0.2 +cache_read = 0.02 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/mistral/ministral-3b-2512.toml b/providers/edenai/models/mistral/ministral-3b-2512.toml new file mode 100644 index 0000000000..aee40d86a1 --- /dev/null +++ b/providers/edenai/models/mistral/ministral-3b-2512.toml @@ -0,0 +1,22 @@ +name = "ministral-3b-2512" +description = "The smallest model in the Ministral 3 family, Ministral 3 3B is a powerful, efficient tiny language model with vision capabilities." +release_date = "2025-12-02" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.1 +output = 0.1 +cache_read = 0.01 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/mistral/ministral-8b-2512.toml b/providers/edenai/models/mistral/ministral-8b-2512.toml new file mode 100644 index 0000000000..0d80d646b5 --- /dev/null +++ b/providers/edenai/models/mistral/ministral-8b-2512.toml @@ -0,0 +1,22 @@ +name = "ministral-8b-2512" +description = "A balanced model in the Ministral 3 family, Ministral 3 8B is a powerful, efficient tiny language model with vision capabilities." +release_date = "2025-12-02" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.15 +output = 0.15 +cache_read = 0.015 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/mistral/ministral-8b-latest.toml b/providers/edenai/models/mistral/ministral-8b-latest.toml new file mode 100644 index 0000000000..e8f49c2038 --- /dev/null +++ b/providers/edenai/models/mistral/ministral-8b-latest.toml @@ -0,0 +1,21 @@ +name = "ministral-8b-latest" +description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" +release_date = "2026-06-07" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.15 +output = 0.15 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-large-2402.toml b/providers/edenai/models/mistral/mistral-large-2402.toml new file mode 100644 index 0000000000..e7ab0e1326 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-large-2402.toml @@ -0,0 +1,21 @@ +name = "mistral-large-2402" +description = "Flagship Mistral model for advanced reasoning, coding, and multilingual work" +release_date = "2026-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 4 +output = 12 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-large-2407.toml b/providers/edenai/models/mistral/mistral-large-2407.toml new file mode 100644 index 0000000000..689df70ce6 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-large-2407.toml @@ -0,0 +1,22 @@ +name = "mistral-large-2407" +description = "This is Mistral AI's flagship model, Mistral Large 2 (version mistral-large-2407). It's a proprietary weights-available model and excels at reasoning, code, JSON, chat, and more. Read the launch announcement [here](https://mistral.ai/news/mistral-large-2407/)...." +release_date = "2024-11-19" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 2 +output = 6 +cache_read = 0.2 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-large-2512.toml b/providers/edenai/models/mistral/mistral-large-2512.toml new file mode 100644 index 0000000000..680455ad90 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-large-2512.toml @@ -0,0 +1,12 @@ +base_model = "mistral/mistral-large-2512" +release_date = "2025-12-01" +last_updated = "2026-08-01" +structured_output = true + +[cost] +input = 0.5 +output = 1.5 +cache_read = 0.05 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/mistral/mistral-large-latest.toml b/providers/edenai/models/mistral/mistral-large-latest.toml new file mode 100644 index 0000000000..619d5350e7 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-large-latest.toml @@ -0,0 +1,12 @@ +base_model = "mistral/mistral-large-latest" +release_date = "2024-02-26" +last_updated = "2026-08-01" +structured_output = true + +[cost] +input = 2 +output = 6 +cache_read = 0.2 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/mistral/mistral-medium-2312.toml b/providers/edenai/models/mistral/mistral-medium-2312.toml new file mode 100644 index 0000000000..3230858ccf --- /dev/null +++ b/providers/edenai/models/mistral/mistral-medium-2312.toml @@ -0,0 +1,21 @@ +name = "mistral-medium-2312" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 2.7 +output = 8.1 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-2505.toml b/providers/edenai/models/mistral/mistral-medium-2505.toml new file mode 100644 index 0000000000..013890f2cd --- /dev/null +++ b/providers/edenai/models/mistral/mistral-medium-2505.toml @@ -0,0 +1,9 @@ +base_model = "mistral/mistral-medium-2505" +release_date = "2026-01-06" +last_updated = "2026-08-01" +structured_output = true +open_weights = true + +[cost] +input = 0.4 +output = 2 diff --git a/providers/edenai/models/mistral/mistral-medium-2508.toml b/providers/edenai/models/mistral/mistral-medium-2508.toml new file mode 100644 index 0000000000..9ffacee828 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-medium-2508.toml @@ -0,0 +1,21 @@ +name = "mistral-medium-2508" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-06-29" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.4 +output = 2 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-2604.toml b/providers/edenai/models/mistral/mistral-medium-2604.toml new file mode 100644 index 0000000000..28b0068aa1 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-medium-2604.toml @@ -0,0 +1,8 @@ +base_model = "mistral/mistral-medium-2604" +release_date = "2026-06-29" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.5 +output = 7.5 diff --git a/providers/edenai/models/mistral/mistral-medium-3-5.toml b/providers/edenai/models/mistral/mistral-medium-3-5.toml new file mode 100644 index 0000000000..18f6e4a4e2 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-medium-3-5.toml @@ -0,0 +1,22 @@ +name = "mistral-medium-3-5" +description = "Mistral Medium 3.5 is a dense 128B instruction-following model from Mistral AI. It supports text and image inputs with text output, and is designed for agentic workflows, coding, and complex..." +release_date = "2026-04-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 1.5 +output = 7.5 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-3.5.toml b/providers/edenai/models/mistral/mistral-medium-3.5.toml new file mode 100644 index 0000000000..93d13049ca --- /dev/null +++ b/providers/edenai/models/mistral/mistral-medium-3.5.toml @@ -0,0 +1,22 @@ +name = "mistral-medium-3.5" +description = "Mistral Medium 3.5 is a dense 128B instruction-following model from Mistral AI. It supports text and image inputs with text output, and is designed for agentic workflows, coding, and complex..." +release_date = "2026-04-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 1.5 +output = 7.5 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-3.toml b/providers/edenai/models/mistral/mistral-medium-3.toml new file mode 100644 index 0000000000..21fb3967e6 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-medium-3.toml @@ -0,0 +1,23 @@ +name = "mistral-medium-3" +description = "Mistral Medium 3 is a high-performance enterprise-grade language model designed to deliver frontier-level capabilities at significantly reduced operational cost. It balances state-of-the-art reasoning and multimodal performance with 8× lower cost..." +release_date = "2025-05-07" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.4 +output = 2 +cache_read = 0.04 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-latest.toml b/providers/edenai/models/mistral/mistral-medium-latest.toml new file mode 100644 index 0000000000..4f6ad390e5 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-medium-latest.toml @@ -0,0 +1,8 @@ +base_model = "mistral/mistral-medium-latest" +release_date = "2026-01-06" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.5 +output = 7.5 diff --git a/providers/edenai/models/mistral/mistral-medium.toml b/providers/edenai/models/mistral/mistral-medium.toml new file mode 100644 index 0000000000..27bb7d8c19 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-medium.toml @@ -0,0 +1,22 @@ +name = "mistral-medium" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 2.7 +output = 8.1 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-small-2603.toml b/providers/edenai/models/mistral/mistral-small-2603.toml new file mode 100644 index 0000000000..d5b0c40e46 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-small-2603.toml @@ -0,0 +1,13 @@ +base_model = "mistral/mistral-small-2603" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 +cache_read = 0.015 + +[limit] +context = 262_144 +output = 262_144 diff --git a/providers/edenai/models/mistral/mistral-small-latest.toml b/providers/edenai/models/mistral/mistral-small-latest.toml new file mode 100644 index 0000000000..4334668eb0 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-small-latest.toml @@ -0,0 +1,13 @@ +base_model = "mistral/mistral-small-latest" +release_date = "2026-01-06" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.06 +output = 0.18 + +[limit] +context = 262_144 +output = 262_144 diff --git a/providers/edenai/models/mistral/mistral-small.toml b/providers/edenai/models/mistral/mistral-small.toml new file mode 100644 index 0000000000..0dc13e98f9 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-small.toml @@ -0,0 +1,21 @@ +name = "mistral-small" +description = "Efficient Mistral model for fast chat, extraction, and production assistants" +release_date = "2026-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-tiny-latest.toml b/providers/edenai/models/mistral/mistral-tiny-latest.toml new file mode 100644 index 0000000000..f7c99e7948 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-tiny-latest.toml @@ -0,0 +1,21 @@ +name = "mistral-tiny-latest" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-06-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.25 +output = 0.25 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-tiny.toml b/providers/edenai/models/mistral/mistral-tiny.toml new file mode 100644 index 0000000000..e384ea9440 --- /dev/null +++ b/providers/edenai/models/mistral/mistral-tiny.toml @@ -0,0 +1,21 @@ +name = "mistral-tiny" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.25 +output = 0.25 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/open-mistral-7b.toml b/providers/edenai/models/mistral/open-mistral-7b.toml new file mode 100644 index 0000000000..4ccce014ff --- /dev/null +++ b/providers/edenai/models/mistral/open-mistral-7b.toml @@ -0,0 +1,21 @@ +name = "open-mistral-7b" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.25 +output = 0.25 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/open-mistral-nemo-2407.toml b/providers/edenai/models/mistral/open-mistral-nemo-2407.toml new file mode 100644 index 0000000000..ada274be5d --- /dev/null +++ b/providers/edenai/models/mistral/open-mistral-nemo-2407.toml @@ -0,0 +1,21 @@ +name = "open-mistral-nemo-2407" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.3 +output = 0.3 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/open-mistral-nemo.toml b/providers/edenai/models/mistral/open-mistral-nemo.toml new file mode 100644 index 0000000000..24b9848fd4 --- /dev/null +++ b/providers/edenai/models/mistral/open-mistral-nemo.toml @@ -0,0 +1,21 @@ +name = "open-mistral-nemo" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.3 +output = 0.3 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/open-mixtral-8x22b.toml b/providers/edenai/models/mistral/open-mixtral-8x22b.toml new file mode 100644 index 0000000000..4041c89401 --- /dev/null +++ b/providers/edenai/models/mistral/open-mixtral-8x22b.toml @@ -0,0 +1,21 @@ +name = "open-mixtral-8x22b" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 2 +output = 6 + +[limit] +context = 65_336 +output = 65_336 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/open-mixtral-8x7b.toml b/providers/edenai/models/mistral/open-mixtral-8x7b.toml new file mode 100644 index 0000000000..2369d1b9f5 --- /dev/null +++ b/providers/edenai/models/mistral/open-mixtral-8x7b.toml @@ -0,0 +1,21 @@ +name = "open-mixtral-8x7b" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.7 +output = 0.7 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/mistral/pixtral-12b-2409.toml b/providers/edenai/models/mistral/pixtral-12b-2409.toml new file mode 100644 index 0000000000..ee5b0effa1 --- /dev/null +++ b/providers/edenai/models/mistral/pixtral-12b-2409.toml @@ -0,0 +1,21 @@ +name = "pixtral-12b-2409" +description = "Mistral vision-language model for image understanding and multimodal chat" +release_date = "2026-04-28" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.15 +output = 0.15 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["image", "text"] +output = ["text"] diff --git a/providers/edenai/models/moonshot/kimi-k2.6.toml b/providers/edenai/models/moonshot/kimi-k2.6.toml new file mode 100644 index 0000000000..18618f964e --- /dev/null +++ b/providers/edenai/models/moonshot/kimi-k2.6.toml @@ -0,0 +1,12 @@ +base_model = "moonshotai/kimi-k2.6" +release_date = "2026-04-20" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.95 +output = 4 +cache_read = 0.16 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/moonshot/kimi-k2.7-code.toml b/providers/edenai/models/moonshot/kimi-k2.7-code.toml new file mode 100644 index 0000000000..057af0a405 --- /dev/null +++ b/providers/edenai/models/moonshot/kimi-k2.7-code.toml @@ -0,0 +1,11 @@ +base_model = "moonshotai/kimi-k2.7-code" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.95 +output = 4 +cache_read = 0.19 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/moonshot/kimi-k3.toml b/providers/edenai/models/moonshot/kimi-k3.toml new file mode 100644 index 0000000000..61ac8f8408 --- /dev/null +++ b/providers/edenai/models/moonshot/kimi-k3.toml @@ -0,0 +1,14 @@ +base_model = "moonshotai/kimi-k3" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 + +[limit] +output = 1_048_576 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M2.5.toml b/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M2.5.toml new file mode 100644 index 0000000000..e3af57668d --- /dev/null +++ b/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M2.5.toml @@ -0,0 +1,22 @@ +name = "MiniMaxAI/MiniMax-M2.5" +description = "MiniMax-M2.5 is a SOTA large language model designed for real-world productivity. Trained in a diverse range of complex real-world digital working environments, M2.5 builds upon the coding expertise of M2.1..." +release_date = "2026-02-12" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 + +[limit] +context = 196_608 +output = 196_608 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M3.toml b/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M3.toml new file mode 100644 index 0000000000..eeeef19310 --- /dev/null +++ b/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M3.toml @@ -0,0 +1,22 @@ +name = "MiniMaxAI/MiniMax-M3" +description = "MiniMax multimodal coding model for long-context reasoning and agent tasks" +release_date = "2026-07-11" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 + +[limit] +context = 8_000 +output = 8_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/nebius/NousResearch/Hermes-4-405B.toml b/providers/edenai/models/nebius/NousResearch/Hermes-4-405B.toml new file mode 100644 index 0000000000..ae75012077 --- /dev/null +++ b/providers/edenai/models/nebius/NousResearch/Hermes-4-405B.toml @@ -0,0 +1,22 @@ +name = "NousResearch/Hermes-4-405B" +description = "Hermes 4 is a large-scale reasoning model built on Meta-Llama-3.1-405B and released by Nous Research. It introduces a hybrid reasoning mode, where the model can choose to deliberate internally with..." +release_date = "2025-08-26" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1 +output = 3 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/nebius/NousResearch/Hermes-4-70B.toml b/providers/edenai/models/nebius/NousResearch/Hermes-4-70B.toml new file mode 100644 index 0000000000..9c8f4e83b0 --- /dev/null +++ b/providers/edenai/models/nebius/NousResearch/Hermes-4-70B.toml @@ -0,0 +1,22 @@ +name = "NousResearch/Hermes-4-70B" +description = "Hermes 4 70B is a hybrid reasoning model from Nous Research, built on Meta-Llama-3.1-70B. It introduces the same hybrid mode as the larger 405B release, allowing the model to either..." +release_date = "2025-08-26" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.13 +output = 0.4 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml b/providers/edenai/models/nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml new file mode 100644 index 0000000000..fc3051713d --- /dev/null +++ b/providers/edenai/models/nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml @@ -0,0 +1,21 @@ +name = "Qwen/Qwen2.5-VL-72B-Instruct" +description = "Qwen2.5-VL is proficient in recognizing common objects such as flowers, birds, fish, and insects. It is also highly capable of analyzing texts, charts, icons, graphics, and layouts within images." +release_date = "2025-02-01" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.25 +output = 0.75 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-235B-A22B-Instruct-2507.toml b/providers/edenai/models/nebius/Qwen/Qwen3-235B-A22B-Instruct-2507.toml new file mode 100644 index 0000000000..1018a14534 --- /dev/null +++ b/providers/edenai/models/nebius/Qwen/Qwen3-235B-A22B-Instruct-2507.toml @@ -0,0 +1,21 @@ +name = "Qwen/Qwen3-235B-A22B-Instruct-2507" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.2 +output = 0.6 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-30B-A3B-Instruct-2507.toml b/providers/edenai/models/nebius/Qwen/Qwen3-30B-A3B-Instruct-2507.toml new file mode 100644 index 0000000000..26f58be4c5 --- /dev/null +++ b/providers/edenai/models/nebius/Qwen/Qwen3-30B-A3B-Instruct-2507.toml @@ -0,0 +1,21 @@ +name = "Qwen/Qwen3-30B-A3B-Instruct-2507" +description = "Qwen3-30B-A3B-Instruct-2507 is a 30.5B-parameter mixture-of-experts language model from Qwen, with 3.3B active parameters per inference. It operates in non-thinking mode and is designed for high-quality instruction following, multilingual understanding, and..." +release_date = "2025-07-29" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml b/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml new file mode 100644 index 0000000000..d4485e63b7 --- /dev/null +++ b/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3-32b" +release_date = "2025-04-28" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 40_960 +output = 40_960 diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml b/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml new file mode 100644 index 0000000000..c13a07823f --- /dev/null +++ b/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3-next-80b-a3b-thinking" +release_date = "2025-09-11" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 1.2 + +[limit] +context = 128_000 +output = 128_000 diff --git a/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml b/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml new file mode 100644 index 0000000000..22b60ad952 --- /dev/null +++ b/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml @@ -0,0 +1,16 @@ +base_model = "alibaba/qwen3.5-397b-a17b" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 3.6 + +[limit] +output = 262_144 + +[modalities] +input = ["text"] diff --git a/providers/edenai/models/nebius/google/gemma-3-27b-it.toml b/providers/edenai/models/nebius/google/gemma-3-27b-it.toml new file mode 100644 index 0000000000..12411c937d --- /dev/null +++ b/providers/edenai/models/nebius/google/gemma-3-27b-it.toml @@ -0,0 +1,21 @@ +name = "google/gemma-3-27b-it" +description = "Gemma 3 introduces multimodality, supporting vision-language input and text outputs. It handles context windows up to 128k tokens, understands over 140 languages, and offers improved math, reasoning, and chat capabilities,..." +release_date = "2025-03-12" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 110_000 +output = 110_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml b/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml new file mode 100644 index 0000000000..67c35f8335 --- /dev/null +++ b/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml @@ -0,0 +1,13 @@ +base_model = "meta/llama-3.3-70b-instruct" +last_updated = "2026-08-01" +attachment = false +structured_output = true +open_weights = false + +[cost] +input = 0.13 +output = 0.4 + +[limit] +context = 131_072 +output = 131_072 diff --git a/providers/edenai/models/nebius/moonshotai/Kimi-K2.6.toml b/providers/edenai/models/nebius/moonshotai/Kimi-K2.6.toml new file mode 100644 index 0000000000..d8d13870c8 --- /dev/null +++ b/providers/edenai/models/nebius/moonshotai/Kimi-K2.6.toml @@ -0,0 +1,12 @@ +base_model = "moonshotai/kimi-k2.6" +release_date = "2026-04-20" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.95 +output = 4 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml b/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml new file mode 100644 index 0000000000..ebe263f9bd --- /dev/null +++ b/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml @@ -0,0 +1,15 @@ +base_model = "moonshotai/kimi-k2.7-code" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.95 +output = 4 + +[limit] +context = 8_000 +output = 8_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml b/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml new file mode 100644 index 0000000000..a63599529e --- /dev/null +++ b/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml @@ -0,0 +1,14 @@ +base_model = "moonshotai/kimi-k3" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 3 +output = 15 + +[limit] +output = 1_048_576 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/nebius/nvidia/Cosmos3-Super-Reasoner.toml b/providers/edenai/models/nebius/nvidia/Cosmos3-Super-Reasoner.toml new file mode 100644 index 0000000000..07c0405d8a --- /dev/null +++ b/providers/edenai/models/nebius/nvidia/Cosmos3-Super-Reasoner.toml @@ -0,0 +1,22 @@ +name = "nvidia/Cosmos3-Super-Reasoner" +description = "Multimodal reasoning model for visual analysis, planning, and tool use" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.3 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/nebius/nvidia/Llama-3_1-Nemotron-Ultra-253B-v1.toml b/providers/edenai/models/nebius/nvidia/Llama-3_1-Nemotron-Ultra-253B-v1.toml new file mode 100644 index 0000000000..c734e5985f --- /dev/null +++ b/providers/edenai/models/nebius/nvidia/Llama-3_1-Nemotron-Ultra-253B-v1.toml @@ -0,0 +1,22 @@ +name = "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" +description = "Flagship Nemotron model for high-throughput reasoning and complex agents" +release_date = "2026-06-05" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 1.8 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/nebius/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B.toml b/providers/edenai/models/nebius/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B.toml new file mode 100644 index 0000000000..746ed79ede --- /dev/null +++ b/providers/edenai/models/nebius/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B.toml @@ -0,0 +1,22 @@ +name = "nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B" +description = "Compact Nemotron model for efficient reasoning and deployable AI agents" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.06 +output = 0.24 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/nebius/nvidia/Nemotron-3-Nano-Omni.toml b/providers/edenai/models/nebius/nvidia/Nemotron-3-Nano-Omni.toml new file mode 100644 index 0000000000..f51162e5c9 --- /dev/null +++ b/providers/edenai/models/nebius/nvidia/Nemotron-3-Nano-Omni.toml @@ -0,0 +1,22 @@ +name = "nvidia/Nemotron-3-Nano-Omni" +description = "Omni-modal model for text, vision, audio, and multimodal agent tasks" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.06 +output = 0.24 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml b/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml new file mode 100644 index 0000000000..d51ee6c6dd --- /dev/null +++ b/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml @@ -0,0 +1,13 @@ +base_model = "nvidia/nemotron-3-ultra-550b-a55b" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1 +output = 3 + +[limit] +context = 1_048_576 +output = 1_048_576 diff --git a/providers/edenai/models/nebius/nvidia/nemotron-3-super-120b-a12b.toml b/providers/edenai/models/nebius/nvidia/nemotron-3-super-120b-a12b.toml new file mode 100644 index 0000000000..19a51f2f4d --- /dev/null +++ b/providers/edenai/models/nebius/nvidia/nemotron-3-super-120b-a12b.toml @@ -0,0 +1,9 @@ +base_model = "nvidia/nemotron-3-super-120b-a12b" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 0.9 diff --git a/providers/edenai/models/nebius/openai/gpt-oss-120b.toml b/providers/edenai/models/nebius/openai/gpt-oss-120b.toml new file mode 100644 index 0000000000..0c94b05cc3 --- /dev/null +++ b/providers/edenai/models/nebius/openai/gpt-oss-120b.toml @@ -0,0 +1,11 @@ +base_model = "openai/gpt-oss-120b" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/nebius/openbmb/MiniCPM-V-4_5.toml b/providers/edenai/models/nebius/openbmb/MiniCPM-V-4_5.toml new file mode 100644 index 0000000000..c9b1994886 --- /dev/null +++ b/providers/edenai/models/nebius/openbmb/MiniCPM-V-4_5.toml @@ -0,0 +1,21 @@ +name = "openbmb/MiniCPM-V-4_5" +description = "Multimodal model for analyzing text, images, documents, and rich media" +release_date = "2026-06-22" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = true +open_weights = false + +[cost] +input = 0.658 +output = 1.11 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/nebius/zai-org/GLM-5.1.toml b/providers/edenai/models/nebius/zai-org/GLM-5.1.toml new file mode 100644 index 0000000000..6b5d1a7d64 --- /dev/null +++ b/providers/edenai/models/nebius/zai-org/GLM-5.1.toml @@ -0,0 +1,12 @@ +base_model = "zhipuai/glm-5.1" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 1.4 +output = 4.4 + +[limit] +context = 202_752 +output = 202_752 diff --git a/providers/edenai/models/openai/gpt-3.5-turbo-0125.toml b/providers/edenai/models/openai/gpt-3.5-turbo-0125.toml new file mode 100644 index 0000000000..6baa438e36 --- /dev/null +++ b/providers/edenai/models/openai/gpt-3.5-turbo-0125.toml @@ -0,0 +1,21 @@ +name = "gpt-3.5-turbo-0125" +description = "Compact GPT model for low-latency assistance and high-volume workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.5 +output = 1.5 + +[limit] +context = 16_385 +output = 16_385 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-3.5-turbo-1106.toml b/providers/edenai/models/openai/gpt-3.5-turbo-1106.toml new file mode 100644 index 0000000000..02b9995347 --- /dev/null +++ b/providers/edenai/models/openai/gpt-3.5-turbo-1106.toml @@ -0,0 +1,21 @@ +name = "gpt-3.5-turbo-1106" +description = "Compact GPT model for low-latency assistance and high-volume workloads" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 1 +output = 2 + +[limit] +context = 16_385 +output = 16_385 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-3.5-turbo-16k.toml b/providers/edenai/models/openai/gpt-3.5-turbo-16k.toml new file mode 100644 index 0000000000..4dbc8e92bd --- /dev/null +++ b/providers/edenai/models/openai/gpt-3.5-turbo-16k.toml @@ -0,0 +1,21 @@ +name = "gpt-3.5-turbo-16k" +description = "This model offers four times the context length of gpt-3.5-turbo, allowing it to support approximately 20 pages of text in a single request at a higher cost. Training data: up..." +release_date = "2023-08-28" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 3 +output = 4 + +[limit] +context = 16_385 +output = 16_385 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-3.5-turbo.toml b/providers/edenai/models/openai/gpt-3.5-turbo.toml new file mode 100644 index 0000000000..960e04a714 --- /dev/null +++ b/providers/edenai/models/openai/gpt-3.5-turbo.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-3.5-turbo" +release_date = "2023-05-28" +last_updated = "2026-08-01" +tool_call = true +structured_output = true + +[cost] +input = 0.5 +output = 1.5 + +[limit] +output = 16_385 diff --git a/providers/edenai/models/openai/gpt-4-0613.toml b/providers/edenai/models/openai/gpt-4-0613.toml new file mode 100644 index 0000000000..4257776e30 --- /dev/null +++ b/providers/edenai/models/openai/gpt-4-0613.toml @@ -0,0 +1,21 @@ +name = "gpt-4-0613" +description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" +release_date = "2026-06-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 30 +output = 60 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4-turbo-2024-04-09.toml b/providers/edenai/models/openai/gpt-4-turbo-2024-04-09.toml new file mode 100644 index 0000000000..4e01abcb9a --- /dev/null +++ b/providers/edenai/models/openai/gpt-4-turbo-2024-04-09.toml @@ -0,0 +1,21 @@ +name = "gpt-4-turbo-2024-04-09" +description = "Compact GPT model for low-latency assistance and high-volume workloads" +release_date = "2024-04-09" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 10 +output = 30 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4-turbo.toml b/providers/edenai/models/openai/gpt-4-turbo.toml new file mode 100644 index 0000000000..df6cf74fdf --- /dev/null +++ b/providers/edenai/models/openai/gpt-4-turbo.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-4-turbo" +release_date = "2024-04-09" +last_updated = "2026-08-01" +structured_output = true + +[cost] +input = 10 +output = 30 + +[limit] +output = 128_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4.1-2025-04-14.toml b/providers/edenai/models/openai/gpt-4.1-2025-04-14.toml new file mode 100644 index 0000000000..7964002c7e --- /dev/null +++ b/providers/edenai/models/openai/gpt-4.1-2025-04-14.toml @@ -0,0 +1,22 @@ +name = "gpt-4.1-2025-04-14" +description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" +release_date = "2025-04-14" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 2 +output = 8 +cache_read = 0.5 + +[limit] +context = 1_047_576 +output = 1_047_576 + +[modalities] +input = ["image", "text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4.1-mini-2025-04-14.toml b/providers/edenai/models/openai/gpt-4.1-mini-2025-04-14.toml new file mode 100644 index 0000000000..c31d04b55f --- /dev/null +++ b/providers/edenai/models/openai/gpt-4.1-mini-2025-04-14.toml @@ -0,0 +1,22 @@ +name = "gpt-4.1-mini-2025-04-14" +description = "Compact GPT model for low-latency assistance and high-volume workloads" +release_date = "2025-04-14" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.4 +output = 1.6 +cache_read = 0.1 + +[limit] +context = 1_047_576 +output = 1_047_576 + +[modalities] +input = ["image", "text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4.1-mini.toml b/providers/edenai/models/openai/gpt-4.1-mini.toml new file mode 100644 index 0000000000..85d869086c --- /dev/null +++ b/providers/edenai/models/openai/gpt-4.1-mini.toml @@ -0,0 +1,10 @@ +base_model = "openai/gpt-4.1-mini" +last_updated = "2026-08-01" + +[cost] +input = 0.4 +output = 1.6 +cache_read = 0.1 + +[limit] +output = 1_047_576 diff --git a/providers/edenai/models/openai/gpt-4.1-nano-2025-04-14.toml b/providers/edenai/models/openai/gpt-4.1-nano-2025-04-14.toml new file mode 100644 index 0000000000..67af045ec4 --- /dev/null +++ b/providers/edenai/models/openai/gpt-4.1-nano-2025-04-14.toml @@ -0,0 +1,22 @@ +name = "gpt-4.1-nano-2025-04-14" +description = "Compact GPT model for low-latency assistance and high-volume workloads" +release_date = "2025-04-14" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.1 +output = 0.4 +cache_read = 0.025 + +[limit] +context = 1_047_576 +output = 1_047_576 + +[modalities] +input = ["image", "text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4.1-nano.toml b/providers/edenai/models/openai/gpt-4.1-nano.toml new file mode 100644 index 0000000000..12673289bc --- /dev/null +++ b/providers/edenai/models/openai/gpt-4.1-nano.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-4.1-nano" +last_updated = "2026-08-01" + +[cost] +input = 0.1 +output = 0.4 +cache_read = 0.025 + +[limit] +output = 1_047_576 + +[modalities] +input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4.1.toml b/providers/edenai/models/openai/gpt-4.1.toml new file mode 100644 index 0000000000..b7bca783f4 --- /dev/null +++ b/providers/edenai/models/openai/gpt-4.1.toml @@ -0,0 +1,10 @@ +base_model = "openai/gpt-4.1" +last_updated = "2026-08-01" + +[cost] +input = 2 +output = 8 +cache_read = 0.5 + +[limit] +output = 1_047_576 diff --git a/providers/edenai/models/openai/gpt-4.toml b/providers/edenai/models/openai/gpt-4.toml new file mode 100644 index 0000000000..63f0d4a66d --- /dev/null +++ b/providers/edenai/models/openai/gpt-4.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-4" +release_date = "2023-05-28" +last_updated = "2026-08-01" +attachment = false +structured_output = true + +[cost] +input = 30 +output = 60 + +[limit] +context = 8_191 +output = 8_191 diff --git a/providers/edenai/models/openai/gpt-4o-2024-08-06.toml b/providers/edenai/models/openai/gpt-4o-2024-08-06.toml new file mode 100644 index 0000000000..a8dbf159ae --- /dev/null +++ b/providers/edenai/models/openai/gpt-4o-2024-08-06.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-4o-2024-08-06" +release_date = "2024-11-20" +last_updated = "2026-08-01" + +[cost] +input = 2.5 +output = 10 +cache_read = 1.25 + +[limit] +output = 128_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4o-2024-11-20.toml b/providers/edenai/models/openai/gpt-4o-2024-11-20.toml new file mode 100644 index 0000000000..ab0dd6989c --- /dev/null +++ b/providers/edenai/models/openai/gpt-4o-2024-11-20.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-4o-2024-11-20" +last_updated = "2026-08-01" + +[cost] +input = 2.5 +output = 10 +cache_read = 1.25 + +[limit] +output = 128_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4o-mini-2024-07-18.toml b/providers/edenai/models/openai/gpt-4o-mini-2024-07-18.toml new file mode 100644 index 0000000000..08169606b5 --- /dev/null +++ b/providers/edenai/models/openai/gpt-4o-mini-2024-07-18.toml @@ -0,0 +1,22 @@ +name = "gpt-4o-mini-2024-07-18" +description = "GPT-4o mini is OpenAI's newest model after [GPT-4 Omni](/models/openai/gpt-4o), supporting both text and image inputs with text outputs. As their most advanced small model, it is many multiples more affordable..." +release_date = "2024-07-18" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.15 +output = 0.6 +cache_read = 0.075 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4o-mini-search-preview.toml b/providers/edenai/models/openai/gpt-4o-mini-search-preview.toml new file mode 100644 index 0000000000..d7f92962b3 --- /dev/null +++ b/providers/edenai/models/openai/gpt-4o-mini-search-preview.toml @@ -0,0 +1,22 @@ +name = "gpt-4o-mini-search-preview" +description = "Compact GPT model for low-latency assistance and high-volume workloads" +release_date = "2025-03-12" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.15 +output = 0.6 +cache_read = 0.075 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4o-mini.toml b/providers/edenai/models/openai/gpt-4o-mini.toml new file mode 100644 index 0000000000..9eccce3f53 --- /dev/null +++ b/providers/edenai/models/openai/gpt-4o-mini.toml @@ -0,0 +1,10 @@ +base_model = "openai/gpt-4o-mini" +last_updated = "2026-08-01" + +[cost] +input = 0.15 +output = 0.6 +cache_read = 0.075 + +[limit] +output = 128_000 diff --git a/providers/edenai/models/openai/gpt-4o-search-preview.toml b/providers/edenai/models/openai/gpt-4o-search-preview.toml new file mode 100644 index 0000000000..170b368127 --- /dev/null +++ b/providers/edenai/models/openai/gpt-4o-search-preview.toml @@ -0,0 +1,22 @@ +name = "gpt-4o-search-preview" +description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" +release_date = "2025-03-12" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 2.5 +output = 10 +cache_read = 1.25 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4o.toml b/providers/edenai/models/openai/gpt-4o.toml new file mode 100644 index 0000000000..4f1d86b6fc --- /dev/null +++ b/providers/edenai/models/openai/gpt-4o.toml @@ -0,0 +1,11 @@ +base_model = "openai/gpt-4o" +release_date = "2024-11-20" +last_updated = "2026-08-01" + +[cost] +input = 2.5 +output = 10 +cache_read = 1.25 + +[limit] +output = 128_000 diff --git a/providers/edenai/models/openai/gpt-5-2025-08-07.toml b/providers/edenai/models/openai/gpt-5-2025-08-07.toml new file mode 100644 index 0000000000..0478ba6feb --- /dev/null +++ b/providers/edenai/models/openai/gpt-5-2025-08-07.toml @@ -0,0 +1,23 @@ +name = "gpt-5-2025-08-07" +description = "GPT-5 is OpenAI’s most advanced model, offering major improvements in reasoning, code quality, and user experience. It is optimized for complex tasks that require step-by-step reasoning, instruction following, and accuracy..." +release_date = "2025-08-07" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-mini-2025-08-07.toml b/providers/edenai/models/openai/gpt-5-mini-2025-08-07.toml new file mode 100644 index 0000000000..a1ec8993ef --- /dev/null +++ b/providers/edenai/models/openai/gpt-5-mini-2025-08-07.toml @@ -0,0 +1,23 @@ +name = "gpt-5-mini-2025-08-07" +description = "GPT-5 Mini is a compact version of GPT-5, designed to handle lighter-weight reasoning tasks. It provides the same instruction-following and safety-tuning benefits as GPT-5, but with reduced latency and cost...." +release_date = "2025-08-07" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.25 +output = 2 +cache_read = 0.025 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-mini.toml b/providers/edenai/models/openai/gpt-5-mini.toml new file mode 100644 index 0000000000..f86ec92829 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5-mini.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5-mini" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.25 +output = 2 +cache_read = 0.025 + +[limit] +output = 400_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5-nano-2025-08-07.toml b/providers/edenai/models/openai/gpt-5-nano-2025-08-07.toml new file mode 100644 index 0000000000..b822f4b166 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5-nano-2025-08-07.toml @@ -0,0 +1,23 @@ +name = "gpt-5-nano-2025-08-07" +description = "GPT-5-Nano is the smallest and fastest variant in the GPT-5 system, optimized for developer tools, rapid interactions, and ultra-low latency environments. While limited in reasoning depth compared to its larger..." +release_date = "2025-08-07" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.05 +output = 0.4 +cache_read = 0.005 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-nano.toml b/providers/edenai/models/openai/gpt-5-nano.toml new file mode 100644 index 0000000000..539272bf91 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5-nano.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5-nano" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.05 +output = 0.4 +cache_read = 0.005 + +[limit] +output = 400_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5-pro-2025-10-06.toml b/providers/edenai/models/openai/gpt-5-pro-2025-10-06.toml new file mode 100644 index 0000000000..411b06959d --- /dev/null +++ b/providers/edenai/models/openai/gpt-5-pro-2025-10-06.toml @@ -0,0 +1,22 @@ +name = "gpt-5-pro-2025-10-06" +description = "Frontier GPT model for professional reasoning, coding, and multimodal work" +release_date = "2025-10-06" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 15 +output = 120 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["image", "text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-pro.toml b/providers/edenai/models/openai/gpt-5-pro.toml new file mode 100644 index 0000000000..cd984a2441 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5-pro.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-5-pro" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 15 +output = 120 + +[limit] +output = 400_000 + +[modalities] +input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5-search-api-2025-10-14.toml b/providers/edenai/models/openai/gpt-5-search-api-2025-10-14.toml new file mode 100644 index 0000000000..60d50b6e69 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5-search-api-2025-10-14.toml @@ -0,0 +1,22 @@ +name = "gpt-5-search-api-2025-10-14" +description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" +release_date = "2026-02-13" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-search-api.toml b/providers/edenai/models/openai/gpt-5-search-api.toml new file mode 100644 index 0000000000..a6759a597d --- /dev/null +++ b/providers/edenai/models/openai/gpt-5-search-api.toml @@ -0,0 +1,22 @@ +name = "gpt-5-search-api" +description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" +release_date = "2026-02-13" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +context = 272_000 +output = 272_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.1-2025-11-13.toml b/providers/edenai/models/openai/gpt-5.1-2025-11-13.toml new file mode 100644 index 0000000000..5619afcaa2 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.1-2025-11-13.toml @@ -0,0 +1,23 @@ +name = "gpt-5.1-2025-11-13" +description = "GPT-5.1 is the latest frontier-grade model in the GPT-5 series, offering stronger general-purpose reasoning, improved instruction adherence, and a more natural conversational style compared to GPT-5. It uses adaptive reasoning..." +release_date = "2025-11-13" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["image", "text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.1.toml b/providers/edenai/models/openai/gpt-5.1.toml new file mode 100644 index 0000000000..ccf2879eca --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.1.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5.1" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +output = 400_000 + +[modalities] +input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.2-2025-12-11.toml b/providers/edenai/models/openai/gpt-5.2-2025-12-11.toml new file mode 100644 index 0000000000..a6a4894daf --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.2-2025-12-11.toml @@ -0,0 +1,23 @@ +name = "gpt-5.2-2025-12-11" +description = "GPT-5.2 is the latest frontier-grade model in the GPT-5 series, offering stronger agentic and long context perfomance compared to GPT-5.1. It uses adaptive reasoning to allocate computation dynamically, responding quickly..." +release_date = "2025-12-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.75 +output = 14 +cache_read = 0.175 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.2-chat-latest.toml b/providers/edenai/models/openai/gpt-5.2-chat-latest.toml new file mode 100644 index 0000000000..00c7d3d20d --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.2-chat-latest.toml @@ -0,0 +1,15 @@ +base_model = "openai/gpt-5.2-chat-latest" +release_date = "2025-12-10" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.75 +output = 14 +cache_read = 0.175 + +[limit] +output = 128_000 + +[modalities] +input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.2-pro-2025-12-11.toml b/providers/edenai/models/openai/gpt-5.2-pro-2025-12-11.toml new file mode 100644 index 0000000000..d833d6f177 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.2-pro-2025-12-11.toml @@ -0,0 +1,22 @@ +name = "gpt-5.2-pro-2025-12-11" +description = "Frontier GPT model for professional reasoning, coding, and multimodal work" +release_date = "2025-12-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 21 +output = 168 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["image", "text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.2-pro.toml b/providers/edenai/models/openai/gpt-5.2-pro.toml new file mode 100644 index 0000000000..4639d0a843 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.2-pro.toml @@ -0,0 +1,15 @@ +base_model = "openai/gpt-5.2-pro" +release_date = "2025-12-10" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 21 +output = 168 + +[limit] +output = 400_000 + +[modalities] +input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.2.toml b/providers/edenai/models/openai/gpt-5.2.toml new file mode 100644 index 0000000000..5c42fc4940 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.2.toml @@ -0,0 +1,15 @@ +base_model = "openai/gpt-5.2" +release_date = "2025-12-10" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.75 +output = 14 +cache_read = 0.175 + +[limit] +output = 400_000 + +[modalities] +input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.3-chat-latest.toml b/providers/edenai/models/openai/gpt-5.3-chat-latest.toml new file mode 100644 index 0000000000..55ca6d54df --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.3-chat-latest.toml @@ -0,0 +1,15 @@ +base_model = "openai/gpt-5.3-chat-latest" +last_updated = "2026-08-01" +reasoning = true +reasoning_options = [] + +[cost] +input = 1.75 +output = 14 +cache_read = 0.175 + +[limit] +output = 128_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.3-codex.toml b/providers/edenai/models/openai/gpt-5.3-codex.toml new file mode 100644 index 0000000000..c776590c4e --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.3-codex.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-5.3-codex" +release_date = "2026-02-24" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.75 +output = 14 +cache_read = 0.175 + +[limit] +output = 400_000 diff --git a/providers/edenai/models/openai/gpt-5.4-2026-03-05.toml b/providers/edenai/models/openai/gpt-5.4-2026-03-05.toml new file mode 100644 index 0000000000..aece63c3c1 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.4-2026-03-05.toml @@ -0,0 +1,23 @@ +name = "gpt-5.4-2026-03-05" +description = "GPT-5.4 is OpenAI’s latest frontier model, unifying the Codex and GPT lines into a single system. It features a 1M+ token context window (922K input, 128K output) with support for..." +release_date = "2026-03-05" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 2.5 +output = 15 +cache_read = 0.25 + +[limit] +context = 1_050_000 +output = 1_050_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.4-mini-2026-03-17.toml b/providers/edenai/models/openai/gpt-5.4-mini-2026-03-17.toml new file mode 100644 index 0000000000..828703c8d0 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.4-mini-2026-03-17.toml @@ -0,0 +1,23 @@ +name = "gpt-5.4-mini-2026-03-17" +description = "GPT-5.4 mini brings the core capabilities of GPT-5.4 to a faster, more efficient model optimized for high-throughput workloads. It supports text and image inputs with strong performance across reasoning, coding,..." +release_date = "2026-03-17" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.75 +output = 4.5 +cache_read = 0.075 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.4-mini.toml b/providers/edenai/models/openai/gpt-5.4-mini.toml new file mode 100644 index 0000000000..07b4c1e513 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.4-mini.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5.4-mini" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.75 +output = 4.5 +cache_read = 0.075 + +[limit] +output = 400_000 + +[modalities] +input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.4-nano-2026-03-17.toml b/providers/edenai/models/openai/gpt-5.4-nano-2026-03-17.toml new file mode 100644 index 0000000000..46715032a8 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.4-nano-2026-03-17.toml @@ -0,0 +1,23 @@ +name = "gpt-5.4-nano-2026-03-17" +description = "GPT-5.4 nano is the most lightweight and cost-efficient variant of the GPT-5.4 family, optimized for speed-critical and high-volume tasks. It supports text and image inputs and is designed for low-latency..." +release_date = "2026-03-17" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 1.25 +cache_read = 0.02 + +[limit] +context = 400_000 +output = 400_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.4-nano.toml b/providers/edenai/models/openai/gpt-5.4-nano.toml new file mode 100644 index 0000000000..3a1bb0431c --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.4-nano.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5.4-nano" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.2 +output = 1.25 +cache_read = 0.02 + +[limit] +output = 400_000 + +[modalities] +input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.4-pro-2026-03-05.toml b/providers/edenai/models/openai/gpt-5.4-pro-2026-03-05.toml new file mode 100644 index 0000000000..9e44bc1f86 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.4-pro-2026-03-05.toml @@ -0,0 +1,23 @@ +name = "gpt-5.4-pro-2026-03-05" +description = "GPT-5.4 Pro is OpenAI's most advanced model, building on GPT-5.4's unified architecture with enhanced reasoning capabilities for complex, high-stakes tasks. It features a 1M+ token context window (922K input, 128K..." +release_date = "2026-03-05" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 30 +output = 180 +cache_read = 3 + +[limit] +context = 1_050_000 +output = 1_050_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.4-pro.toml b/providers/edenai/models/openai/gpt-5.4-pro.toml new file mode 100644 index 0000000000..7ad23bcba7 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.4-pro.toml @@ -0,0 +1,15 @@ +base_model = "openai/gpt-5.4-pro" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 30 +output = 180 +cache_read = 3 + +[limit] +output = 1_050_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.4.toml b/providers/edenai/models/openai/gpt-5.4.toml new file mode 100644 index 0000000000..fbf864f029 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.4.toml @@ -0,0 +1,11 @@ +base_model = "openai/gpt-5.4" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2.5 +output = 15 +cache_read = 0.25 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.5-2026-04-23.toml b/providers/edenai/models/openai/gpt-5.5-2026-04-23.toml new file mode 100644 index 0000000000..ae1f73db99 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.5-2026-04-23.toml @@ -0,0 +1,23 @@ +name = "gpt-5.5-2026-04-23" +description = "GPT-5.5 is OpenAI’s frontier model designed for complex professional workloads, building on GPT-5.4 with stronger reasoning, higher reliability, and improved token efficiency on hard tasks. It features a 1M+ token..." +release_date = "2026-04-24" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 5 +output = 30 +cache_read = 0.5 + +[limit] +context = 1_050_000 +output = 1_050_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.5-pro-2026-04-23.toml b/providers/edenai/models/openai/gpt-5.5-pro-2026-04-23.toml new file mode 100644 index 0000000000..1cca6848a7 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.5-pro-2026-04-23.toml @@ -0,0 +1,23 @@ +name = "gpt-5.5-pro-2026-04-23" +description = "GPT-5.5 Pro is OpenAI’s high-capability model optimized for deep reasoning and accuracy on complex, high-stakes workloads. It features a 1M+ token context window (922K input, 128K output) with support for..." +release_date = "2026-04-24" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 30 +output = 180 +cache_read = 3 + +[limit] +context = 1_050_000 +output = 1_050_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.5-pro.toml b/providers/edenai/models/openai/gpt-5.5-pro.toml new file mode 100644 index 0000000000..ad32124b92 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.5-pro.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-5.5-pro" +release_date = "2026-04-24" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 30 +output = 180 +cache_read = 3 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.5.toml b/providers/edenai/models/openai/gpt-5.5.toml new file mode 100644 index 0000000000..7f9b561ebe --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.5.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-5.5" +release_date = "2026-04-24" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 5 +output = 30 +cache_read = 0.5 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.6-luna.toml b/providers/edenai/models/openai/gpt-5.6-luna.toml new file mode 100644 index 0000000000..c88338874c --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.6-luna.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-5.6-luna" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.2 +output = 1.2 +cache_read = 0.02 +cache_write = 0.25 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.6-sol.toml b/providers/edenai/models/openai/gpt-5.6-sol.toml new file mode 100644 index 0000000000..1db7b68dba --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.6-sol.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-5.6-sol" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 5 +output = 30 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.6-terra.toml b/providers/edenai/models/openai/gpt-5.6-terra.toml new file mode 100644 index 0000000000..a6c2feb8e2 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.6-terra.toml @@ -0,0 +1,12 @@ +base_model = "openai/gpt-5.6-terra" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2 +output = 12 +cache_read = 0.2 +cache_write = 2.5 + +[limit] +output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.toml b/providers/edenai/models/openai/gpt-5.toml new file mode 100644 index 0000000000..395d3b5145 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +cache_read = 0.125 + +[limit] +output = 400_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/o1-2024-12-17.toml b/providers/edenai/models/openai/o1-2024-12-17.toml new file mode 100644 index 0000000000..1f3513ae66 --- /dev/null +++ b/providers/edenai/models/openai/o1-2024-12-17.toml @@ -0,0 +1,23 @@ +name = "o1-2024-12-17" +description = "O-series reasoning model for hard analysis, math, coding, and planning" +release_date = "2024-12-17" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 15 +output = 60 +cache_read = 7.5 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/o1-pro-2025-03-19.toml b/providers/edenai/models/openai/o1-pro-2025-03-19.toml new file mode 100644 index 0000000000..521d2e3ca2 --- /dev/null +++ b/providers/edenai/models/openai/o1-pro-2025-03-19.toml @@ -0,0 +1,22 @@ +name = "o1-pro-2025-03-19" +description = "O-series reasoning model for hard analysis, math, coding, and planning" +release_date = "2025-03-19" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 150 +output = 600 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/o1-pro.toml b/providers/edenai/models/openai/o1-pro.toml new file mode 100644 index 0000000000..44c480b239 --- /dev/null +++ b/providers/edenai/models/openai/o1-pro.toml @@ -0,0 +1,13 @@ +base_model = "openai/o1-pro" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 150 +output = 600 + +[limit] +output = 200_000 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/o1.toml b/providers/edenai/models/openai/o1.toml new file mode 100644 index 0000000000..8870c89c0c --- /dev/null +++ b/providers/edenai/models/openai/o1.toml @@ -0,0 +1,12 @@ +base_model = "openai/o1" +release_date = "2024-12-17" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 15 +output = 60 +cache_read = 7.5 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/openai/o3-2025-04-16.toml b/providers/edenai/models/openai/o3-2025-04-16.toml new file mode 100644 index 0000000000..5ba5101a80 --- /dev/null +++ b/providers/edenai/models/openai/o3-2025-04-16.toml @@ -0,0 +1,23 @@ +name = "o3-2025-04-16" +description = "O-series reasoning model for hard analysis, math, coding, and planning" +release_date = "2025-04-16" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 2 +output = 8 +cache_read = 0.5 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["image", "text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/o3-deep-research-2025-06-26.toml b/providers/edenai/models/openai/o3-deep-research-2025-06-26.toml new file mode 100644 index 0000000000..e352cec96d --- /dev/null +++ b/providers/edenai/models/openai/o3-deep-research-2025-06-26.toml @@ -0,0 +1,23 @@ +name = "o3-deep-research-2025-06-26" +description = "Research model for long-horizon investigation, synthesis, and analytical reports" +release_date = "2025-10-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 10 +output = 40 +cache_read = 2.5 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["image", "text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/o3-deep-research.toml b/providers/edenai/models/openai/o3-deep-research.toml new file mode 100644 index 0000000000..fc3c6001d2 --- /dev/null +++ b/providers/edenai/models/openai/o3-deep-research.toml @@ -0,0 +1,16 @@ +base_model = "openai/o3-deep-research" +release_date = "2025-10-10" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 10 +output = 40 +cache_read = 2.5 + +[limit] +output = 200_000 + +[modalities] +input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/o3-mini-2025-01-31.toml b/providers/edenai/models/openai/o3-mini-2025-01-31.toml new file mode 100644 index 0000000000..939f4602e7 --- /dev/null +++ b/providers/edenai/models/openai/o3-mini-2025-01-31.toml @@ -0,0 +1,23 @@ +name = "o3-mini-2025-01-31" +description = "OpenAI o3-mini is a cost-efficient language model optimized for STEM reasoning tasks, particularly excelling in science, mathematics, and coding. This model supports the `reasoning_effort` parameter, which can be set to..." +release_date = "2025-01-31" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.1 +output = 4.4 +cache_read = 0.55 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/o3-mini.toml b/providers/edenai/models/openai/o3-mini.toml new file mode 100644 index 0000000000..39ec4c403e --- /dev/null +++ b/providers/edenai/models/openai/o3-mini.toml @@ -0,0 +1,16 @@ +base_model = "openai/o3-mini" +release_date = "2025-01-31" +last_updated = "2026-08-01" +attachment = true +reasoning_options = [] + +[cost] +input = 1.1 +output = 4.4 +cache_read = 0.55 + +[limit] +output = 200_000 + +[modalities] +input = ["text", "pdf"] diff --git a/providers/edenai/models/openai/o3-pro-2025-06-10.toml b/providers/edenai/models/openai/o3-pro-2025-06-10.toml new file mode 100644 index 0000000000..1183d022d3 --- /dev/null +++ b/providers/edenai/models/openai/o3-pro-2025-06-10.toml @@ -0,0 +1,22 @@ +name = "o3-pro-2025-06-10" +description = "O-series reasoning model for hard analysis, math, coding, and planning" +release_date = "2025-06-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 20 +output = 80 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text", "pdf", "image"] +output = ["text"] diff --git a/providers/edenai/models/openai/o3-pro.toml b/providers/edenai/models/openai/o3-pro.toml new file mode 100644 index 0000000000..e6e411b649 --- /dev/null +++ b/providers/edenai/models/openai/o3-pro.toml @@ -0,0 +1,13 @@ +base_model = "openai/o3-pro" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 20 +output = 80 + +[limit] +output = 200_000 + +[modalities] +input = ["text", "pdf", "image"] diff --git a/providers/edenai/models/openai/o3.toml b/providers/edenai/models/openai/o3.toml new file mode 100644 index 0000000000..7a526cfef0 --- /dev/null +++ b/providers/edenai/models/openai/o3.toml @@ -0,0 +1,11 @@ +base_model = "openai/o3" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2 +output = 8 +cache_read = 0.5 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/openai/o4-mini-2025-04-16.toml b/providers/edenai/models/openai/o4-mini-2025-04-16.toml new file mode 100644 index 0000000000..f83fdd5137 --- /dev/null +++ b/providers/edenai/models/openai/o4-mini-2025-04-16.toml @@ -0,0 +1,23 @@ +name = "o4-mini-2025-04-16" +description = "O-series reasoning model for hard analysis, math, coding, and planning" +release_date = "2025-04-16" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.1 +output = 4.4 +cache_read = 0.275 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["image", "text", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/openai/o4-mini-deep-research-2025-06-26.toml b/providers/edenai/models/openai/o4-mini-deep-research-2025-06-26.toml new file mode 100644 index 0000000000..dc30f25cde --- /dev/null +++ b/providers/edenai/models/openai/o4-mini-deep-research-2025-06-26.toml @@ -0,0 +1,23 @@ +name = "o4-mini-deep-research-2025-06-26" +description = "Research model for long-horizon investigation, synthesis, and analytical reports" +release_date = "2025-10-10" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 2 +output = 8 +cache_read = 0.5 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/openai/o4-mini-deep-research.toml b/providers/edenai/models/openai/o4-mini-deep-research.toml new file mode 100644 index 0000000000..41bb38a650 --- /dev/null +++ b/providers/edenai/models/openai/o4-mini-deep-research.toml @@ -0,0 +1,16 @@ +base_model = "openai/o4-mini-deep-research" +release_date = "2025-10-10" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 2 +output = 8 +cache_read = 0.5 + +[limit] +output = 200_000 + +[modalities] +input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/o4-mini.toml b/providers/edenai/models/openai/o4-mini.toml new file mode 100644 index 0000000000..9c1f8626b0 --- /dev/null +++ b/providers/edenai/models/openai/o4-mini.toml @@ -0,0 +1,14 @@ +base_model = "openai/o4-mini" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.1 +output = 4.4 +cache_read = 0.275 + +[limit] +output = 200_000 + +[modalities] +input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/ovhcloud/Meta-Llama-3_3-70B-Instruct.toml b/providers/edenai/models/ovhcloud/Meta-Llama-3_3-70B-Instruct.toml new file mode 100644 index 0000000000..c2db95e261 --- /dev/null +++ b/providers/edenai/models/ovhcloud/Meta-Llama-3_3-70B-Instruct.toml @@ -0,0 +1,21 @@ +name = "Meta-Llama-3_3-70B-Instruct" +description = "Open Llama instruction model for multilingual chat, reasoning, and coding" +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.74 +output = 0.74 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Mistral-7B-Instruct-v0.3.toml b/providers/edenai/models/ovhcloud/Mistral-7B-Instruct-v0.3.toml new file mode 100644 index 0000000000..7adb744951 --- /dev/null +++ b/providers/edenai/models/ovhcloud/Mistral-7B-Instruct-v0.3.toml @@ -0,0 +1,21 @@ +name = "Mistral-7B-Instruct-v0.3" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.11 +output = 0.11 + +[limit] +context = 65_536 +output = 65_536 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Mistral-Nemo-Instruct-2407.toml b/providers/edenai/models/ovhcloud/Mistral-Nemo-Instruct-2407.toml new file mode 100644 index 0000000000..7d7352337a --- /dev/null +++ b/providers/edenai/models/ovhcloud/Mistral-Nemo-Instruct-2407.toml @@ -0,0 +1,21 @@ +name = "Mistral-Nemo-Instruct-2407" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.14 +output = 0.14 + +[limit] +context = 65_536 +output = 65_536 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Mistral-Small-3.2-24B-Instruct-2506.toml b/providers/edenai/models/ovhcloud/Mistral-Small-3.2-24B-Instruct-2506.toml new file mode 100644 index 0000000000..5a73a2b0ae --- /dev/null +++ b/providers/edenai/models/ovhcloud/Mistral-Small-3.2-24B-Instruct-2506.toml @@ -0,0 +1,21 @@ +name = "Mistral-Small-3.2-24B-Instruct-2506" +description = "Efficient Mistral model for fast chat, extraction, and production assistants" +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.1 +output = 0.31 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Qwen2.5-VL-72B-Instruct.toml b/providers/edenai/models/ovhcloud/Qwen2.5-VL-72B-Instruct.toml new file mode 100644 index 0000000000..ec7423c654 --- /dev/null +++ b/providers/edenai/models/ovhcloud/Qwen2.5-VL-72B-Instruct.toml @@ -0,0 +1,21 @@ +name = "Qwen2.5-VL-72B-Instruct" +description = "Multimodal model for analyzing text, images, documents, and rich media" +release_date = "2026-01-27" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = true +open_weights = false + +[cost] +input = 1.01 +output = 1.01 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Qwen3-32B.toml b/providers/edenai/models/ovhcloud/Qwen3-32B.toml new file mode 100644 index 0000000000..8187b3ab58 --- /dev/null +++ b/providers/edenai/models/ovhcloud/Qwen3-32B.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3-32b" +release_date = "2026-01-27" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.09 +output = 0.25 + +[limit] +context = 32_768 +output = 32_768 diff --git a/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml b/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml new file mode 100644 index 0000000000..10af7c623f --- /dev/null +++ b/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml @@ -0,0 +1,13 @@ +base_model = "alibaba/qwen3-coder-30b-a3b-instruct" +release_date = "2026-06-05" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.07 +output = 0.26 + +[limit] +output = 262_144 diff --git a/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml b/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml new file mode 100644 index 0000000000..7221770a83 --- /dev/null +++ b/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml @@ -0,0 +1,18 @@ +base_model = "alibaba/qwen3.5-397b-a17b" +release_date = "2026-06-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.71 +output = 4.25 + +[limit] +output = 262_144 + +[modalities] +input = ["text"] diff --git a/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml b/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml new file mode 100644 index 0000000000..5b3c6a129f --- /dev/null +++ b/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3.5-9b" +release_date = "2026-06-05" +last_updated = "2026-08-01" +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.12 +output = 0.18 + +[limit] +output = 262_144 diff --git a/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml b/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml new file mode 100644 index 0000000000..eb3687fa21 --- /dev/null +++ b/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml @@ -0,0 +1,18 @@ +base_model = "alibaba/qwen3.6-27b" +release_date = "2026-06-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.47 +output = 3.19 + +[limit] +output = 262_144 + +[modalities] +input = ["text"] diff --git a/providers/edenai/models/ovhcloud/gpt-oss-120b.toml b/providers/edenai/models/ovhcloud/gpt-oss-120b.toml new file mode 100644 index 0000000000..5ebec0cc73 --- /dev/null +++ b/providers/edenai/models/ovhcloud/gpt-oss-120b.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-oss-120b" +release_date = "2026-01-27" +last_updated = "2026-08-01" +tool_call = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.09 +output = 0.47 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/ovhcloud/gpt-oss-20b.toml b/providers/edenai/models/ovhcloud/gpt-oss-20b.toml new file mode 100644 index 0000000000..2e7e0d48e7 --- /dev/null +++ b/providers/edenai/models/ovhcloud/gpt-oss-20b.toml @@ -0,0 +1,13 @@ +base_model = "openai/gpt-oss-20b" +release_date = "2026-01-27" +last_updated = "2026-08-01" +tool_call = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.05 +output = 0.18 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/perplexityai/sonar-deep-research.toml b/providers/edenai/models/perplexityai/sonar-deep-research.toml new file mode 100644 index 0000000000..233b2c9379 --- /dev/null +++ b/providers/edenai/models/perplexityai/sonar-deep-research.toml @@ -0,0 +1,23 @@ +name = "sonar-deep-research" +description = "Sonar Deep Research is a research-focused model designed for multi-step retrieval, synthesis, and reasoning across complex topics. It autonomously searches, reads, and evaluates sources, refining its approach as it gathers..." +release_date = "2025-03-07" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 2 +output = 8 +reasoning = 3 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/perplexityai/sonar-pro.toml b/providers/edenai/models/perplexityai/sonar-pro.toml new file mode 100644 index 0000000000..388787be94 --- /dev/null +++ b/providers/edenai/models/perplexityai/sonar-pro.toml @@ -0,0 +1,11 @@ +base_model = "perplexity/sonar-pro" +release_date = "2025-03-07" +last_updated = "2026-08-01" +structured_output = false + +[cost] +input = 3 +output = 15 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml b/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml new file mode 100644 index 0000000000..7e451b9fbd --- /dev/null +++ b/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml @@ -0,0 +1,12 @@ +base_model = "perplexity/sonar-reasoning-pro" +release_date = "2025-03-07" +last_updated = "2026-08-01" +structured_output = false +reasoning_options = [] + +[cost] +input = 2 +output = 8 + +[limit] +output = 128_000 diff --git a/providers/edenai/models/perplexityai/sonar.toml b/providers/edenai/models/perplexityai/sonar.toml new file mode 100644 index 0000000000..564725bf09 --- /dev/null +++ b/providers/edenai/models/perplexityai/sonar.toml @@ -0,0 +1,16 @@ +base_model = "perplexity/sonar" +release_date = "2025-01-27" +last_updated = "2026-08-01" +attachment = true +structured_output = false + +[cost] +input = 1 +output = 1 + +[limit] +context = 127_072 +output = 127_072 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/qwen/deepseek-v3.2.toml b/providers/edenai/models/qwen/deepseek-v3.2.toml new file mode 100644 index 0000000000..376af3fd26 --- /dev/null +++ b/providers/edenai/models/qwen/deepseek-v3.2.toml @@ -0,0 +1,24 @@ +name = "deepseek-v3.2" +description = "DeepSeek-V3.2 is the official release of a model that incorporates DeepSeek Sparse Attention—a sparse attention mechanism. It’s also the first model launched by DeepSeek that integrates reasoning into tool usage, supporting both reasoning-enabled and non-reasoning tool calls." +release_date = "2025-12-01" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.3705 +output = 1.1115 +cache_read = 0.0741 +cache_write = 0.46345 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/deepseek-v4-flash.toml b/providers/edenai/models/qwen/deepseek-v4-flash.toml new file mode 100644 index 0000000000..2881d3634c --- /dev/null +++ b/providers/edenai/models/qwen/deepseek-v4-flash.toml @@ -0,0 +1,11 @@ +base_model = "deepseek/deepseek-v4-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.13 +output = 0.26 +cache_read = 0.026 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/deepseek-v4-pro.toml b/providers/edenai/models/qwen/deepseek-v4-pro.toml new file mode 100644 index 0000000000..bcd96bcf50 --- /dev/null +++ b/providers/edenai/models/qwen/deepseek-v4-pro.toml @@ -0,0 +1,11 @@ +base_model = "deepseek/deepseek-v4-pro" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.56 +output = 3.12 +cache_read = 0.13 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/glm-5.1.toml b/providers/edenai/models/qwen/glm-5.1.toml new file mode 100644 index 0000000000..5dddbcc413 --- /dev/null +++ b/providers/edenai/models/qwen/glm-5.1.toml @@ -0,0 +1,12 @@ +base_model = "zhipuai/glm-5.1" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.91 +output = 2.86 +cache_read = 0.169 + +[limit] +context = 202_745 +output = 202_745 diff --git a/providers/edenai/models/qwen/glm-5.2-fast-preview.toml b/providers/edenai/models/qwen/glm-5.2-fast-preview.toml new file mode 100644 index 0000000000..4fb5842cba --- /dev/null +++ b/providers/edenai/models/qwen/glm-5.2-fast-preview.toml @@ -0,0 +1,22 @@ +name = "glm-5.2-fast-preview" +description = "GLM-5.2-Fast-Preview is the high-speed variant of Zhipu AI's GLM-5.2, with 1M context and capabilities on par with the standard version. Inference-optimized to deliver 1.5–2× the output TPS, it fits latency-sensitive use cases such as real-time chat, multi-turn agents, and streaming code generation." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 1.82 +output = 5.72 +cache_read = 0.364 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/glm-5.2.toml b/providers/edenai/models/qwen/glm-5.2.toml new file mode 100644 index 0000000000..bfbff1c3b3 --- /dev/null +++ b/providers/edenai/models/qwen/glm-5.2.toml @@ -0,0 +1,13 @@ +base_model = "zhipuai/glm-5.2" +release_date = "2026-06-16" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.91 +output = 2.86 +cache_read = 0.182 + +[limit] +context = 1_048_576 +output = 1_048_576 diff --git a/providers/edenai/models/qwen/kimi-k2.7-code.toml b/providers/edenai/models/qwen/kimi-k2.7-code.toml new file mode 100644 index 0000000000..36aaca318c --- /dev/null +++ b/providers/edenai/models/qwen/kimi-k2.7-code.toml @@ -0,0 +1,8 @@ +base_model = "moonshotai/kimi-k2.7-code" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.6175 +output = 2.6 +cache_read = 0.1235 diff --git a/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml b/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml new file mode 100644 index 0000000000..10d0800358 --- /dev/null +++ b/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml @@ -0,0 +1,22 @@ +name = "qwen-flash-2025-07-28" +description = "The Qwen3 Flash model (snapshot 2025-07-28) offers a powerful fusion of thinking and non-thinking modes with dynamic in-conversation switching, excelling in complex reasoning while showing significant gains in instruction following and text comprehension. It supports a 1M context length and is billed on a tiered model corresponding to context usage." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.0325 +output = 0.26 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-flash-character.toml b/providers/edenai/models/qwen/qwen-flash-character.toml new file mode 100644 index 0000000000..e9fee8813c --- /dev/null +++ b/providers/edenai/models/qwen/qwen-flash-character.toml @@ -0,0 +1,22 @@ +name = "qwen-flash-character" +description = "The Qwen Role-Playing Model Series is specifically optimized for muti-language anthropomorphic interaction scenarios. It demonstrates advanced capabilities in character consistency maintenance, context-aware dialogue progression, and empathetic engagement, enabling precise personalized character embodiment. This version significantly enhances Japanese linguistic localization (including dialects and honorifics), human-like role-playing authenticity, narrative coherence control, and scenario-based cognitive intelligence." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = true + +[cost] +input = 0.0325 +output = 0.26 +cache_read = 0.0065 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-flash.toml b/providers/edenai/models/qwen/qwen-flash.toml new file mode 100644 index 0000000000..d6724a220b --- /dev/null +++ b/providers/edenai/models/qwen/qwen-flash.toml @@ -0,0 +1,16 @@ +base_model = "alibaba/qwen-flash" +release_date = "2026-07-30" +last_updated = "2026-08-01" +tool_call = false +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.0325 +output = 0.26 +cache_read = 0.0065 +cache_write = 0.04095 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen-max.toml b/providers/edenai/models/qwen/qwen-max.toml new file mode 100644 index 0000000000..39d16c656e --- /dev/null +++ b/providers/edenai/models/qwen/qwen-max.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen-max" +release_date = "2026-07-30" +last_updated = "2026-08-01" +tool_call = false +structured_output = true +open_weights = true + +[cost] +input = 1.04 +output = 4.16 +cache_read = 0.208 + +[limit] +output = 32_768 diff --git a/providers/edenai/models/qwen/qwen-mt-flash.toml b/providers/edenai/models/qwen/qwen-mt-flash.toml new file mode 100644 index 0000000000..cfe5b84ca9 --- /dev/null +++ b/providers/edenai/models/qwen/qwen-mt-flash.toml @@ -0,0 +1,21 @@ +name = "qwen-mt-flash" +description = "Qwen-MT-Flash, a large language model from the Qwen series, has been fully upgraded with the Qwen 3 architecture for significantly enhanced performance and translation quality. It provides rapid, cost-effective translation across 92 languages, while supporting advanced features such as terminology intervention, format preservation, and domain-specific adaptation. It is the ideal choice for applications requiring a powerful balance of speed, quality, and cost." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = true + +[cost] +input = 0.104 +output = 0.3185 + +[limit] +context = 16_384 +output = 16_384 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-mt-lite.toml b/providers/edenai/models/qwen/qwen-mt-lite.toml new file mode 100644 index 0000000000..281389b7a4 --- /dev/null +++ b/providers/edenai/models/qwen/qwen-mt-lite.toml @@ -0,0 +1,21 @@ +name = "qwen-mt-lite" +description = "Qwen-MT-Lite is a large language model of the Qwen model series that specializes in multi-lingual translation. It provides high-quality and rapid translation services across 32 languages at a cost-effective price. It offers features such as terminology intervention, format preservation, and domain-specific translation to cater to the diverse needs of various applications, ensuring both efficiency and performance." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = true + +[cost] +input = 0.078 +output = 0.234 + +[limit] +context = 16_384 +output = 16_384 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-mt-plus.toml b/providers/edenai/models/qwen/qwen-mt-plus.toml new file mode 100644 index 0000000000..c4106afa5e --- /dev/null +++ b/providers/edenai/models/qwen/qwen-mt-plus.toml @@ -0,0 +1,21 @@ +name = "qwen-mt-plus" +description = "Qwen-MT-Plus, the flagship translation model from our Qwen series, is now fully upgraded with the Qwen3 architecture. It supports 92 languages and delivers exceptionally accurate and natural-sounding translations. Its advanced capabilities in contextual understanding, terminology control, and format preservation make it a superior choice over traditional models, especially for specialized domains." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = true + +[cost] +input = 1.599 +output = 4.7905 + +[limit] +context = 4_096 +output = 4_096 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-mt-turbo.toml b/providers/edenai/models/qwen/qwen-mt-turbo.toml new file mode 100644 index 0000000000..aca9fa98be --- /dev/null +++ b/providers/edenai/models/qwen/qwen-mt-turbo.toml @@ -0,0 +1,21 @@ +name = "qwen-mt-turbo" +description = "Qwen-MT-Turbo is a large language model within the Qwen model series that specializes in multi-lingual translation. It provides high-quality and rapid translation services across 92 languages at a cost-effective price point. It also offers features such as terminology intervention, format preservation, and domain-specific translation to cater to the diverse needs of various applications, ensuring both efficiency and performance." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = true + +[cost] +input = 0.104 +output = 0.3185 + +[limit] +context = 4_096 +output = 4_096 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml b/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml new file mode 100644 index 0000000000..0b7409e947 --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml @@ -0,0 +1,22 @@ +name = "qwen-plus-2025-01-25" +description = "The Qwen series of models, which are well-balanced in capabilities, offer reasoning performance and speed that fall between Qwen-Max and Qwen-Turbo, making them suitable for moderately complex tasks. Compared to previous versions, it shows significant improvements in both Chinese and English code generation, logical reasoning, and multilingual abilities. The response style has been greatly adjusted to align with human preferences, with noticeable enhancements in the level of detail and clarity of responses. Specialized improvements have been made in creative writing, adherence to JSON formatting, and role-playing abilities." +release_date = "2025-09-08" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 0.78 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml b/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml new file mode 100644 index 0000000000..3c8009c15e --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml @@ -0,0 +1,23 @@ +name = "qwen-plus-2025-04-28" +description = "The Plus model of the Qwen3 series, effectively integrates thinking mode and non-thinking mode, allowing for mode switching during conversations. Its reasoning capabilities significantly surpass those of QwQ, and its general capabilities notably exceed those of Qwen2.5-Plus, reaching the SOTA level in the same scale within the industry. This model is the snapshot from April 28, 2025." +release_date = "2025-09-08" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 0.78 +reasoning = 2.6 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml b/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml new file mode 100644 index 0000000000..5758c53c8c --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml @@ -0,0 +1,23 @@ +name = "qwen-plus-2025-07-14" +description = "The Plus model of the Qwen3 Series, achieving effective integration of thinking mode and non-thinking mode, allows switching modes during conversations. This is a snapshot from July 14, 2025. Compared to the previous version, there has been a significant improvement in both Chinese and English capabilities under non-thinking mode, with enhanced tool-calling abilities." +release_date = "2025-09-08" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 0.78 +reasoning = 2.6 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml b/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml new file mode 100644 index 0000000000..8eeee37ada --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml @@ -0,0 +1,23 @@ +name = "qwen-plus-2025-07-28" +description = "Qwen3 series Plus model, integrates thinking and non-thinking modes and can switch modes during dialogue. Compared to the prior version, adds dedicated enhancements for Chinese & English capabilities and tool calling. This is a snapshot from 28 July, 2025; first to support 1 M context length, and uses tiered pricing." +release_date = "2025-09-08" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 0.78 +reasoning = 2.6 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml b/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml new file mode 100644 index 0000000000..abe74beda4 --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml @@ -0,0 +1,23 @@ +name = "qwen-plus-2025-09-11" +description = "As of the September 11, 2025 snapshot, this release features enhanced instruction following and streamlined summary responses in thinking mode. Non-thinking mode provides superior Chinese text understanding and augmented logical reasoning capabilities. The model supports a 1M context length with tiered pricing." +release_date = "2025-09-08" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 0.78 +reasoning = 2.6 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml b/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml new file mode 100644 index 0000000000..0bf74b1531 --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml @@ -0,0 +1,23 @@ +name = "qwen-plus-2025-12-01" +description = "This version is a snapshot as of December 1, 2025, and features improved reasoning capabilities compared to the July 28 snapshot. Agent capabilities and multi-turn tool invocation abilities have been further enhanced, and performance on subjective creative tasks has improved significantly. It supports a context length of up to 1 million tokens, with tiered pricing based on context length." +release_date = "2025-09-08" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 0.78 +reasoning = 2.6 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-character-ja.toml b/providers/edenai/models/qwen/qwen-plus-character-ja.toml new file mode 100644 index 0000000000..904508226e --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus-character-ja.toml @@ -0,0 +1,22 @@ +name = "qwen-plus-character-ja" +description = "The Qwen Role-Playing Model Series is specifically optimized for Japanese anthropomorphic interaction scenarios. It demonstrates advanced capabilities in character consistency maintenance, context-aware dialogue progression, and empathetic engagement, enabling precise personalized character embodiment. This version significantly enhances Japanese linguistic localization (including dialects and honorifics), human-like role-playing authenticity, narrative coherence control, and scenario-based cognitive intelligence." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = true + +[cost] +input = 0.325 +output = 0.91 +cache_read = 0.065 + +[limit] +context = 8_192 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-character.toml b/providers/edenai/models/qwen/qwen-plus-character.toml new file mode 100644 index 0000000000..c34b8a32b3 --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus-character.toml @@ -0,0 +1,22 @@ +name = "qwen-plus-character" +description = "The role-playing model of the Qwen series. This is a dynamically updated version, and notifications will be provided in advance for any model updates. It is suitable for anthropomorphic role-playing and has optimized capabilities in following predefined character instructions, advancing conversations, and demonstrating active listening and empathy. Additionally, it supports the deep restoration of personalized characters." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = true +open_weights = true + +[cost] +input = 0.325 +output = 0.91 +cache_read = 0.065 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-latest.toml b/providers/edenai/models/qwen/qwen-plus-latest.toml new file mode 100644 index 0000000000..7f69172f9b --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus-latest.toml @@ -0,0 +1,23 @@ +name = "qwen-plus-latest" +description = "The Qwen series model optimized for balanced performance, offering inference efficiency between Qwen-Max and Qwen-Turbo, is designed to handle moderately complex tasks effectively. This dynamically updated version implements changes without prior notice." +release_date = "2025-09-08" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 0.78 +reasoning = 2.6 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus.toml b/providers/edenai/models/qwen/qwen-plus.toml new file mode 100644 index 0000000000..5b18045a1b --- /dev/null +++ b/providers/edenai/models/qwen/qwen-plus.toml @@ -0,0 +1,16 @@ +base_model = "alibaba/qwen-plus" +release_date = "2025-09-08" +last_updated = "2026-08-01" +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 0.78 +reasoning = 2.6 +cache_read = 0.052 +cache_write = 0.325 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen-turbo.toml b/providers/edenai/models/qwen/qwen-turbo.toml new file mode 100644 index 0000000000..d41905ae3b --- /dev/null +++ b/providers/edenai/models/qwen/qwen-turbo.toml @@ -0,0 +1,17 @@ +base_model = "alibaba/qwen-turbo" +release_date = "2026-07-30" +last_updated = "2026-08-01" +tool_call = false +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.0325 +output = 0.13 +reasoning = 0.325 +cache_read = 0.0065 + +[limit] +context = 131_072 +output = 131_072 diff --git a/providers/edenai/models/qwen/qwen-vl-max.toml b/providers/edenai/models/qwen/qwen-vl-max.toml new file mode 100644 index 0000000000..3ddf27a082 --- /dev/null +++ b/providers/edenai/models/qwen/qwen-vl-max.toml @@ -0,0 +1,18 @@ +base_model = "alibaba/qwen-vl-max" +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +tool_call = false +structured_output = true +open_weights = true + +[cost] +input = 0.52 +output = 2.08 +cache_read = 0.104 + +[limit] +output = 131_072 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen-vl-plus.toml b/providers/edenai/models/qwen/qwen-vl-plus.toml new file mode 100644 index 0000000000..d53ff1fdcd --- /dev/null +++ b/providers/edenai/models/qwen/qwen-vl-plus.toml @@ -0,0 +1,18 @@ +base_model = "alibaba/qwen-vl-plus" +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +tool_call = false +structured_output = false +open_weights = true + +[cost] +input = 0.1365 +output = 0.4095 +cache_read = 0.0273 + +[limit] +output = 131_072 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3-14b.toml b/providers/edenai/models/qwen/qwen3-14b.toml new file mode 100644 index 0000000000..f8b6f18941 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-14b.toml @@ -0,0 +1,23 @@ +name = "qwen3-14b" +description = "Achieves effective integration of thinking and non-thinking modes, allowing mode switching during conversations. Its reasoning capability reaches the SOTA level in the same scale industry, and its general capability significantly surpasses Qwen2.5-14B." +release_date = "2025-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.2275 +output = 0.91 +reasoning = 2.73 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml b/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml new file mode 100644 index 0000000000..9a57897793 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml @@ -0,0 +1,21 @@ +name = "qwen3-235b-a22b-instruct-2507" +description = "Open-source Qwen3 non-thinking model; compared to the previous version (Qwen3-235B-A22B) shows slight improvements in subjective creativity and model safety." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = true +open_weights = true + +[cost] +input = 0.1495 +output = 0.598 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml b/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml new file mode 100644 index 0000000000..df57ade583 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml @@ -0,0 +1,22 @@ +name = "qwen3-235b-a22b-thinking-2507" +description = "Open-source Qwen3 thinking model; compared to the previous version (Qwen3-235B-A22B) shows major improvements in logical ability, general capabilities, knowledge enhancement, and creativity, suitable for high-difficulty, strong-thinking scenarios." +release_date = "2025-07-25" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.1495 +output = 1.495 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-235b-a22b.toml b/providers/edenai/models/qwen/qwen3-235b-a22b.toml new file mode 100644 index 0000000000..6d0220b22b --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-235b-a22b.toml @@ -0,0 +1,13 @@ +base_model = "alibaba/qwen3-235b-a22b" +release_date = "2025-04-28" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.455 +output = 1.82 +reasoning = 5.46 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml b/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml new file mode 100644 index 0000000000..dde686665b --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml @@ -0,0 +1,21 @@ +name = "qwen3-30b-a3b-instruct-2507" +description = "Open-source Qwen3 non-thinking model; compared to the previous version (Qwen3-30B-A3B) shows major improvements in Chinese, English, and overall multilingual general capabilities. Optimized for subjective open-ended tasks, delivering responses significantly more aligned with user preferences and more helpful." +release_date = "2025-07-29" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.13 +output = 0.52 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml b/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml new file mode 100644 index 0000000000..0aca733079 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml @@ -0,0 +1,22 @@ +name = "qwen3-30b-a3b-thinking-2507" +description = "Open-source Qwen3 thinking model; compared to the previous version (Qwen3-30B-A3B) excels in complex thinking tasks, including logic, math, science, code, and other challenging scenarios; instruction following, text understanding, and multilingual translation capabilities significantly improved." +release_date = "2025-08-28" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.13 +output = 1.56 + +[limit] +context = 81_920 +output = 81_920 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-30b-a3b.toml b/providers/edenai/models/qwen/qwen3-30b-a3b.toml new file mode 100644 index 0000000000..e25e4f40bd --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-30b-a3b.toml @@ -0,0 +1,23 @@ +name = "qwen3-30b-a3b" +description = "Achieves effective integration of thinking and non-thinking modes, allowing mode switching during conversations. Its reasoning capability rivals QwQ-32B with a smaller parameter size, and its general capability significantly surpasses Qwen2.5-14B, reaching the SOTA level in the same scale industry." +release_date = "2025-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.13 +output = 0.52 +reasoning = 1.56 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-32b.toml b/providers/edenai/models/qwen/qwen3-32b.toml new file mode 100644 index 0000000000..de98463608 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-32b.toml @@ -0,0 +1,13 @@ +base_model = "alibaba/qwen3-32b" +release_date = "2025-04-28" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.104 +output = 0.416 +reasoning = 0.416 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/qwen/qwen3-8b.toml b/providers/edenai/models/qwen/qwen3-8b.toml new file mode 100644 index 0000000000..e592ddb239 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-8b.toml @@ -0,0 +1,23 @@ +name = "qwen3-8b" +description = "Achieves effective integration of thinking and non-thinking modes, allowing mode switching during conversations. Its reasoning capability reaches the SOTA level in the same scale industry, and its general capability significantly surpasses Qwen2.5-7B." +release_date = "2025-04-28" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.117 +output = 0.455 +reasoning = 1.365 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml b/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml new file mode 100644 index 0000000000..a825e60d3e --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml @@ -0,0 +1,11 @@ +base_model = "alibaba/qwen3-coder-30b-a3b-instruct" +release_date = "2025-07-31" +last_updated = "2026-08-01" +structured_output = true + +[cost] +input = 0.2925 +output = 1.4625 + +[limit] +output = 262_144 diff --git a/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml b/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml new file mode 100644 index 0000000000..4f5df603bb --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml @@ -0,0 +1,12 @@ +base_model = "alibaba/qwen3-coder-480b-a35b-instruct" +release_date = "2026-07-30" +last_updated = "2026-08-01" +tool_call = false +structured_output = false + +[cost] +input = 0.975 +output = 4.875 + +[limit] +output = 262_144 diff --git a/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml b/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml new file mode 100644 index 0000000000..debc8f8c65 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml @@ -0,0 +1,21 @@ +name = "qwen3-coder-flash-2025-07-28" +description = "Based on Qwen3, this code generation model inherits the coding agent capabilities of Qwen3-Coder-Plus and supports multi-turn tool interaction. It features focused optimizations on repository-level understanding and enhanced tool-calling stability. This version is a snapshot dated July 28, 2025." +release_date = "2025-09-17" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.195 +output = 0.975 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-flash.toml b/providers/edenai/models/qwen/qwen3-coder-flash.toml new file mode 100644 index 0000000000..5235c6f598 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-coder-flash.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3-coder-flash" +release_date = "2025-09-17" +last_updated = "2026-08-01" +structured_output = true +open_weights = true + +[cost] +input = 0.195 +output = 0.975 +cache_read = 0.039 +cache_write = 0.24375 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3-coder-next.toml b/providers/edenai/models/qwen/qwen3-coder-next.toml new file mode 100644 index 0000000000..7d9d7ed83a --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-coder-next.toml @@ -0,0 +1,21 @@ +name = "qwen3-coder-next" +description = "The new-generation code generation model in the Qwen3 series delivers performance close to that of Qwen3-Coder-Plus while offering even better capabilities. The model has been optimized with a focus on repository-level understanding, supports multi-turn tool interactions, and enhances its compatibility with agentic coding tools." +release_date = "2026-02-04" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.195 +output = 0.975 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml b/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml new file mode 100644 index 0000000000..06fc00008e --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml @@ -0,0 +1,21 @@ +name = "qwen3-coder-plus-2025-07-22" +description = "Qwen3-based code generation model with strong coding agent power, excels at tool calling and environment interaction, capable of autonomous programming with outstanding code capability while maintaining general ability. This is a snapshot from 22 July, 2025." +release_date = "2025-09-23" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.65 +output = 3.25 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml b/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml new file mode 100644 index 0000000000..1eaca095a3 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml @@ -0,0 +1,21 @@ +name = "qwen3-coder-plus-2025-09-23" +description = "Qwen3-based code generation model with strong coding agent power, excels at tool calling and environment interaction, capable of autonomous programming with outstanding code capability while maintaining general ability. This is a snapshot from 23 September , 2025.Compared to the previous version (snapshot from July 22), it demonstrates improved robustness in downstream task performance and tool invocation, along with enhanced code security." +release_date = "2025-09-23" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.65 +output = 3.25 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-plus.toml b/providers/edenai/models/qwen/qwen3-coder-plus.toml new file mode 100644 index 0000000000..e05d4c69ec --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-coder-plus.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3-coder-plus" +release_date = "2025-09-23" +last_updated = "2026-08-01" +structured_output = true +open_weights = true + +[cost] +input = 0.65 +output = 3.25 +cache_read = 0.13 +cache_write = 0.8125 + +[limit] +context = 1_000_000 +output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml b/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml new file mode 100644 index 0000000000..d66f3e6bf2 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml @@ -0,0 +1,21 @@ +name = "qwen3-max-2025-09-23" +description = "The Qwen 3 series Max model has undergone specialized upgrades in agent programming and tool invocation compared to the preview version. The officially released model this time has achieved state-of-the-art (SOTA) performance in its field and is better suited to meet the demands of agents operating in more complex scenarios.This version is a snapshot as of September 23, 2025." +release_date = "2025-09-23" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.78 +output = 3.9 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml b/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml new file mode 100644 index 0000000000..54f10ca0e1 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml @@ -0,0 +1,22 @@ +name = "qwen3-max-2026-01-23" +description = "Compared with the snapshot as of September 23, 2025, the Qwen-3 series Max model in this release achieves an effective integration of thinking and non-thinking modes, resulting in a comprehensive and substantial improvement in the model’s overall performance. In thinking mode, the model simultaneously supports web search, web information extraction, and a code interpreter tool, enabling it to tackle more complex and challenging problems with greater accuracy by leveraging external tools while engaging in slow, deliberative reasoning. This version is based on a snapshot taken on January 23, 2026." +release_date = "2025-09-23" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.78 +output = 3.9 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-max-preview.toml b/providers/edenai/models/qwen/qwen3-max-preview.toml new file mode 100644 index 0000000000..6d508eed3a --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-max-preview.toml @@ -0,0 +1,23 @@ +name = "qwen3-max-preview" +description = "A preview version of the Max model in the Qwen 3 series, achieving an effective integration of thinking and non-thinking modes. In thinking mode, there is a significant enhancement in capabilities such as intelligent agent programming, common-sense reasoning, and reasoning across mathematics, science, and general domains." +release_date = "2025-09-23" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.78 +output = 3.9 +cache_read = 0.156 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-max.toml b/providers/edenai/models/qwen/qwen3-max.toml new file mode 100644 index 0000000000..630fcf718a --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-max.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3-max" +last_updated = "2026-08-01" +reasoning = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.78 +output = 3.9 +cache_read = 0.156 +cache_write = 0.975 + +[limit] +output = 262_144 diff --git a/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml b/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml new file mode 100644 index 0000000000..6bab130bb9 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml @@ -0,0 +1,11 @@ +base_model = "alibaba/qwen3-next-80b-a3b-instruct" +release_date = "2025-09-11" +last_updated = "2026-08-01" +structured_output = true + +[cost] +input = 0.0975 +output = 0.78 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml b/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml new file mode 100644 index 0000000000..2c25c3eeeb --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml @@ -0,0 +1,12 @@ +base_model = "alibaba/qwen3-next-80b-a3b-thinking" +release_date = "2025-09-11" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.0975 +output = 0.78 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml new file mode 100644 index 0000000000..bfe7a8f1a8 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml @@ -0,0 +1,21 @@ +name = "qwen3-vl-235b-a22b-instruct" +description = "The Qwen3 series VL models has been comprehensively upgraded in areas such as visual coding and spatial perception. Its visual perception and recognition capabilities have significantly improved, supporting the understanding of ultra-long videos, and its OCR functionality has undergone a major enhancement." +release_date = "2025-09-23" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.26 +output = 1.04 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml new file mode 100644 index 0000000000..e4664f2627 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml @@ -0,0 +1,22 @@ +name = "qwen3-vl-235b-a22b-thinking" +description = "Qwen3 series VL models feature significantly enhanced multimodal reasoning capabilities, with a particular focus on optimizing the model for STEM and mathematical reasoning. Visual perception and recognition abilities have been comprehensively improved, and OCR capabilities have undergone a major upgrade." +release_date = "2025-09-23" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 2.6 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml new file mode 100644 index 0000000000..eef3b54e53 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml @@ -0,0 +1,21 @@ +name = "qwen3-vl-30b-a3b-instruct" +description = "The Instruct version of the second-largest MoE model in the Qwen3-VL series offers rapid response speeds and supports extremely long contexts like lengthy videos and documents. It includes comprehensively upgraded image/video understanding, spatial awareness, and object recognition capabilities, as well as 2D/3D visual localization, enabling it to handle intricate real-world challenges." +release_date = "2025-10-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.13 +output = 0.52 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml new file mode 100644 index 0000000000..a52d4f11c6 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml @@ -0,0 +1,22 @@ +name = "qwen3-vl-30b-a3b-thinking" +description = "The Thinking version of the second-largest MoE model in the Qwen3-VL series features fast response speeds and enhanced multimodal understanding and reasoning capabilities, visual agents, and support for extremely long contexts such as lengthy videos and documents. It also boasts comprehensively upgraded image/video understanding, spatial awareness, and object recognition abilities, making it well-suited for complex real-world tasks." +release_date = "2025-10-06" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.13 +output = 1.56 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml new file mode 100644 index 0000000000..00109b8395 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml @@ -0,0 +1,21 @@ +name = "qwen3-vl-32b-instruct" +description = "The largest dense model in the Qwen3-VL series, in its non-inference version, delivers overall performance second only to Qwen3-VL-235B-Instruct. It excels in document recognition and comprehension, demonstrates strong spatial awareness and object identification capabilities, and achieves state-of-the-art performance in 2D visual detection and spatial reasoning. It is well-suited for complex perception tasks across a wide range of general-purpose scenarios." +release_date = "2025-10-23" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.104 +output = 0.416 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml new file mode 100644 index 0000000000..744350f3ad --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml @@ -0,0 +1,22 @@ +name = "qwen3-vl-32b-thinking" +description = "The largest dense model in the Qwen3-VL series, its reasoning version boasts multimodal reasoning capabilities second only to Qwen3-VL-235B-Thinking. It excels in STEM and math problem-solving, general image and video understanding, and achieves state-of-the-art performance in multimodal agent capabilities, making it ideal for complex multimodal reasoning tasks." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.104 +output = 0.416 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml new file mode 100644 index 0000000000..d7e3168d1f --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml @@ -0,0 +1,21 @@ +name = "qwen3-vl-8b-instruct" +description = "The Instruct version of the 8B Dense model in the Qwen3-VL series requires less GPU memory and provides comprehensively upgraded image/video understanding, support for extremely long contexts like lengthy videos and documents, spatial awareness, and object recognition capabilities, making it suitable for tackling complex real-world tasks." +release_date = "2025-10-14" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = true + +[cost] +input = 0.117 +output = 0.455 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["image", "text", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml new file mode 100644 index 0000000000..b61d3100bb --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml @@ -0,0 +1,22 @@ +name = "qwen3-vl-8b-thinking" +description = "The Thinking version of the 8B Dense model in the Qwen3-VL series consumes less GPU memory and is capable of performing multimodal understanding and reasoning. It supports extremely long contexts such as lengthy videos and documents, 2D/3D visual localization, and features comprehensively upgraded image/video understanding, spatial awareness, and object recognition abilities." +release_date = "2025-10-14" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.117 +output = 1.365 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["image", "text", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml b/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml new file mode 100644 index 0000000000..b52c7602df --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml @@ -0,0 +1,22 @@ +name = "qwen3-vl-flash-2025-10-15" +description = "The Qwen3 series of small-scale visual understanding models effectively integrates thinking and non-thinking modes, delivering superior performance compared to the open-source Qwen3-VL-30B-A3B while maintaining fast response speeds. It features a comprehensive upgrade in image/video understanding, supporting ultra-long contexts such as extended videos and documents, spatial awareness, and object recognition across various domains. Equipped with 2D/3D visual localization capabilities, it is well-suited for tackling complex real-world tasks.This version is a snapshot as of October 15, 2025." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.0325 +output = 0.26 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml b/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml new file mode 100644 index 0000000000..c90e0fb3b7 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml @@ -0,0 +1,21 @@ +name = "qwen3-vl-flash-2026-01-22" +description = "The Qwen3 series of small-sized visual understanding models effectively integrates thinking and non-thinking modes. Compared with the snapshot taken on October 15, 2025, the overall performance of the model has improved significantly: it delivers enhanced capabilities in general visual recognition and reasoning, and shows marked improvements in recognition accuracy across various business scenarios such as security, in-store inspections, equipment monitoring, and photo-based problem solving. This version is a snapshot as of January 22, 2026." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = true + +[cost] +input = 0.0325 +output = 0.26 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-flash.toml b/providers/edenai/models/qwen/qwen3-vl-flash.toml new file mode 100644 index 0000000000..5dee60bd59 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-flash.toml @@ -0,0 +1,24 @@ +name = "qwen3-vl-flash" +description = "The Qwen3 series of small-scale visual understanding models effectively integrates thinking and non-thinking modes, delivering superior performance compared to the open-source Qwen3-VL-30B-A3B while maintaining fast response speeds. It features a comprehensive upgrade in image/video understanding, supporting ultra-long contexts such as extended videos and documents, spatial awareness, and object recognition across various domains. Equipped with 2D/3D visual localization capabilities, it is well-suited for tackling complex real-world tasks." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.0325 +output = 0.26 +cache_read = 0.0065 +cache_write = 0.040625 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml b/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml new file mode 100644 index 0000000000..90d5c337cf --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml @@ -0,0 +1,22 @@ +name = "qwen3-vl-plus-2025-09-23" +description = "The Qwen3 series VL models effectively integrates thinking and non-thinking modes, achieving world-leading performance in visual agent capabilities on public benchmark datasets such as OS World. This version features comprehensive upgrades in areas like visual coding, spatial perception, and multimodal reasoning, significantly enhancing visual perception and recognition abilities, and supporting the understanding of ultra-long videos.This version is a snapshot as of September 23, 2025" +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.13 +output = 1.04 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml b/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml new file mode 100644 index 0000000000..d4b4e4ded0 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml @@ -0,0 +1,22 @@ +name = "qwen3-vl-plus-2025-12-19" +description = "The Qwen3 series of visual understanding models effectively integrates thinking and non-thinking modes. Compared to the snapshot released on September 23, this version delivers superior performance in reasoning and analysis tasks as well as style control, while also offering lower latency and faster response speeds. This version is based on a snapshot taken on December 19, 2025." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.13 +output = 1.04 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-plus.toml b/providers/edenai/models/qwen/qwen3-vl-plus.toml new file mode 100644 index 0000000000..9f3715d7af --- /dev/null +++ b/providers/edenai/models/qwen/qwen3-vl-plus.toml @@ -0,0 +1,20 @@ +base_model = "alibaba/qwen3-vl-plus" +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = true +open_weights = true + +[cost] +input = 0.13 +output = 1.04 +cache_read = 0.026 +cache_write = 0.1625 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml b/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml new file mode 100644 index 0000000000..db91512b3c --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3.5-122b-a10b" +release_date = "2026-02-25" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.26 +output = 2.08 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-27b.toml b/providers/edenai/models/qwen/qwen3.5-27b.toml new file mode 100644 index 0000000000..c856d73fa5 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.5-27b.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3.5-27b" +release_date = "2026-02-25" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.195 +output = 1.56 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml b/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml new file mode 100644 index 0000000000..8dce3af547 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3.5-35b-a3b" +release_date = "2026-02-25" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.1625 +output = 1.3 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml b/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml new file mode 100644 index 0000000000..ab80998c64 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3.5-397b-a17b" +release_date = "2026-02-16" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.39 +output = 2.34 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml b/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml new file mode 100644 index 0000000000..e260361a74 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml @@ -0,0 +1,22 @@ +name = "qwen3.5-flash-2026-02-23" +description = "The Qwen3.5 native vision-language Flash models are built on a hybrid architecture that integrates a linear attention mechanism with a sparse mixture-of-experts model, achieving higher inference efficiency. Compared to the 3 series, these models deliver a leap forward in performance for both pure text and multimodal tasks, offering fast response times while balancing inference speed and overall performance.This version is a snapshot as of February 23, 2026." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.065 +output = 0.26 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.5-flash.toml b/providers/edenai/models/qwen/qwen3.5-flash.toml new file mode 100644 index 0000000000..155c6111dd --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.5-flash.toml @@ -0,0 +1,23 @@ +name = "qwen3.5-flash" +description = "The Qwen3.5 native vision-language Flash models are built on a hybrid architecture that integrates a linear attention mechanism with a sparse mixture-of-experts model, achieving higher inference efficiency. Compared to the 3 series, these models deliver a leap forward in performance for both pure text and multimodal tasks, offering fast response times while balancing inference speed and overall performance." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.065 +output = 0.26 +cache_write = 0.08125 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml b/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml new file mode 100644 index 0000000000..a906a1c8a3 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml @@ -0,0 +1,22 @@ +name = "qwen3.5-plus-2026-02-15" +description = "The Qwen3.5 native vision-language series Plus models are built on a hybrid architecture that integrates linear attention mechanisms with sparse mixture-of-experts models, achieving higher inference efficiency. In a variety of task evaluations, the 3.5 series consistently demonstrates performance on par with state-of-the-art leading models. Compared to the 3 series, these models show a leap forward in both pure-text and multimodal capabilities.This version is a snapshot as of February 15, 2026." +release_date = "2026-04-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 1.56 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml b/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml new file mode 100644 index 0000000000..88672cd3b2 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml @@ -0,0 +1,23 @@ +name = "qwen3.5-plus-2026-04-20" +description = "The Qwen3.5 native vision-language series Plus model has seen a substantial improvement in agentic coding capabilities compared to the February 15th snapshot. Inference speed has also been significantly enhanced, while its knowledge retention, reasoning ability, and long-context processing remain at a high level, making it well-suited for complex agent-based tasks. It is ideal for applications such as coding agents, production workflows, and high-throughput scenarios. This version is based on a snapshot taken on April 20, 2026." +release_date = "2026-04-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 1.56 +cache_write = 0.325 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.5-plus.toml b/providers/edenai/models/qwen/qwen3.5-plus.toml new file mode 100644 index 0000000000..a108cccfaf --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.5-plus.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3.5-plus" +release_date = "2026-04-27" +last_updated = "2026-08-01" +attachment = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 1.56 +cache_write = 0.325 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3.6-27b.toml b/providers/edenai/models/qwen/qwen3.6-27b.toml new file mode 100644 index 0000000000..5a72f98bbd --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.6-27b.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3.6-27b" +release_date = "2026-04-27" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.39 +output = 2.34 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml b/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml new file mode 100644 index 0000000000..cec712e408 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3.6-35b-a3b" +release_date = "2026-07-30" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.24375 +output = 1.4625 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml b/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml new file mode 100644 index 0000000000..4c8f193e49 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml @@ -0,0 +1,22 @@ +name = "qwen3.6-flash-2026-04-16" +description = "The Qwen3.6 native vision-language Flash model series delivers a significant performance boost over the 3.5-Flash version. This model particularly excels in agentic coding capabilities, substantially outperforming its predecessor on multiple code-agent benchmarks, as well as in mathematical and code reasoning. In terms of vision, it features markedly improved spatial intelligence, with especially notable enhancements in object localization and object detection.This release is based on a snapshot taken on April 16, 2026." +release_date = "2026-04-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.1625 +output = 0.975 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.6-flash.toml b/providers/edenai/models/qwen/qwen3.6-flash.toml new file mode 100644 index 0000000000..7e2bd0ccb4 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.6-flash.toml @@ -0,0 +1,12 @@ +base_model = "alibaba/qwen3.6-flash" +last_updated = "2026-08-01" +open_weights = true +reasoning_options = [] + +[cost] +input = 0.1625 +output = 0.975 +cache_write = 0.203125 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3.6-max-preview.toml b/providers/edenai/models/qwen/qwen3.6-max-preview.toml new file mode 100644 index 0000000000..ab05afbe52 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.6-max-preview.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3.6-max-preview" +release_date = "2026-04-27" +last_updated = "2026-08-01" +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.845 +output = 5.07 +cache_write = 1.05625 + +[limit] +output = 262_144 diff --git a/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml b/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml new file mode 100644 index 0000000000..2b10a17fde --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml @@ -0,0 +1,22 @@ +name = "qwen3.6-plus-2026-04-02" +description = "The Qwen3.6 native vision-language Plus series models demonstrate exceptional performance on par with the current state-of-the-art models, with a significant improvement in overall results compared to the 3.5 series. The models have been markedly enhanced in code-related capabilities such as agentic coding, front-end programming, and Vibe coding, as well as in multi-modal general object recognition, OCR, and object localization.This version is a snapshot as of April 2, 2026." +release_date = "2026-04-02" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.325 +output = 1.95 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.6-plus.toml b/providers/edenai/models/qwen/qwen3.6-plus.toml new file mode 100644 index 0000000000..d806af707c --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.6-plus.toml @@ -0,0 +1,13 @@ +base_model = "alibaba/qwen3.6-plus" +last_updated = "2026-08-01" +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.325 +output = 1.95 +cache_write = 0.40625 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml b/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml new file mode 100644 index 0000000000..77a6fa1d63 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml @@ -0,0 +1,24 @@ +name = "qwen3.7-flash-2026-07-15" +description = "The Qwen3.7 native vision-language Flash model series delivers a comprehensive upgrade over 3.6-Flash in multimodal understanding and agent execution. This model particularly excels in enhanced multimodal foundations with stronger universal object recognition, further improved real-world perception and spatial intelligence, significantly upgraded multimodal agent capabilities for Search Agent and CI Agent scenarios with more stable end-to-end task execution, as well as optimized multimodal coding for a smoother vibe coding experience. This version is a snapshot from July 15, 2026." +release_date = "2026-07-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.0195 +output = 0.0845 +cache_read = 0.0039 +cache_write = 0.0247 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-flash.toml b/providers/edenai/models/qwen/qwen3.7-flash.toml new file mode 100644 index 0000000000..abeb1c0759 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.7-flash.toml @@ -0,0 +1,24 @@ +name = "qwen3.7-flash" +description = "The Qwen3.7 native vision-language Flash model series delivers a comprehensive upgrade over 3.6-Flash in multimodal understanding and agent execution. This model particularly excels in enhanced multimodal foundations with stronger universal object recognition, further improved real-world perception and spatial intelligence, significantly upgraded multimodal agent capabilities for Search Agent and CI Agent scenarios with more stable end-to-end task execution, as well as optimized multimodal coding for a smoother vibe coding experience." +release_date = "2026-07-27" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.0195 +output = 0.0845 +cache_read = 0.0039 +cache_write = 0.0247 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml b/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml new file mode 100644 index 0000000000..c8e8dbe296 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml @@ -0,0 +1,22 @@ +name = "qwen3.7-max-2026-05-17" +description = "The early version of the Max model in the Qwen3.7 series supports only the reasoning mode and makes its plain-text capabilities available for experimentation. Qwen3.7 is a next‑generation flagship model designed for the agent‑centric era, with major improvements in coding and agent‑level capabilities. This release is a snapshot as of May 17, 2026." +release_date = "2026-05-21" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 1.625 +output = 4.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml b/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml new file mode 100644 index 0000000000..9d4f26e573 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml @@ -0,0 +1,23 @@ +name = "qwen3.7-max-2026-05-20" +description = "The Max model, the largest and most capable in the Qwen3.7 series, currently offers a pure‑text‑only interface for public experimentation. Qwen3.7 is a next‑generation flagship model designed for the agent‑centric era, with its core strengths lying in the breadth and depth of its agent‑level capabilities: it excels at programming, office and productivity tasks, and long‑term autonomous execution.This version is a snapshot as of May 20, 2026." +release_date = "2026-05-21" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 1.625 +output = 4.875 +cache_write = 2.03125 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml b/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml new file mode 100644 index 0000000000..782924c46e --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml @@ -0,0 +1,24 @@ +name = "qwen3.7-max-2026-06-08" +description = "The Max model, the largest and most capable in the Qwen3.7 series, has added visual‑modal understanding compared to the May 20 snapshot, enabling it to perceive real‑world scenes and supporting multimodal interactive hybrid agent capabilities. This version is based on a snapshot taken on June 8, 2026." +release_date = "2026-05-21" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 1.625 +output = 4.875 +cache_read = 0.325 +cache_write = 2.03125 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max-preview.toml b/providers/edenai/models/qwen/qwen3.7-max-preview.toml new file mode 100644 index 0000000000..6de707f7b3 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.7-max-preview.toml @@ -0,0 +1,22 @@ +name = "qwen3.7-max-preview" +description = "The Max model, the largest and most capable variant in the Qwen3.7 series, is available as a preview and supports only thinking mode, offering a pure text‑only interface for experimentation. It is primarily optimized for general‑purpose conversational use cases, such as knowledge‑based question answering, instruction following, and creative writing." +release_date = "2026-05-21" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 1.625 +output = 4.875 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max.toml b/providers/edenai/models/qwen/qwen3.7-max.toml new file mode 100644 index 0000000000..c339a959f5 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.7-max.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwen3.7-max" +last_updated = "2026-08-01" +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 1.625 +output = 4.875 +cache_read = 0.325 +cache_write = 2.03125 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml b/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml new file mode 100644 index 0000000000..a213642f29 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml @@ -0,0 +1,24 @@ +name = "qwen3.7-plus-2026-05-26" +description = "Among the Qwen3.7 series, the cost-effective Plus model builds on its robust text capabilities while delivering a comprehensive upgrade to its vision‑language abilities, all while preserving its full‑stack agent‑level intelligence for coding, tool use, and productivity workflows. Its key distinguishing feature is multi‑modal interactive hybrid agent capabilities, enabling it to perceive real‑world scenes, read screens and interact with GUIs, generate code based on visual references, and perform end‑to‑end navigation within mobile apps.This version is a snapshot as of May 26, 2026." +release_date = "2026-06-03" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 1.04 +cache_read = 0.052 +cache_write = 0.325 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-plus.toml b/providers/edenai/models/qwen/qwen3.7-plus.toml new file mode 100644 index 0000000000..870107e8e6 --- /dev/null +++ b/providers/edenai/models/qwen/qwen3.7-plus.toml @@ -0,0 +1,15 @@ +base_model = "alibaba/qwen3.7-plus" +release_date = "2026-06-03" +last_updated = "2026-08-01" +structured_output = true +open_weights = true +reasoning_options = [] + +[cost] +input = 0.26 +output = 1.04 +cache_read = 0.052 +cache_write = 0.325 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwq-plus.toml b/providers/edenai/models/qwen/qwq-plus.toml new file mode 100644 index 0000000000..73272a484d --- /dev/null +++ b/providers/edenai/models/qwen/qwq-plus.toml @@ -0,0 +1,14 @@ +base_model = "alibaba/qwq-plus" +release_date = "2026-07-30" +last_updated = "2026-08-01" +tool_call = false +structured_output = false +open_weights = true +reasoning_options = [] + +[cost] +input = 0.52 +output = 1.56 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/scaleway/devstral-2-123b-instruct-2512.toml b/providers/edenai/models/scaleway/devstral-2-123b-instruct-2512.toml new file mode 100644 index 0000000000..3f4509d774 --- /dev/null +++ b/providers/edenai/models/scaleway/devstral-2-123b-instruct-2512.toml @@ -0,0 +1,21 @@ +name = "devstral-2-123b-instruct-2512" +description = "Mistral coding agent model for repository tasks and software engineering workflows" +release_date = "2025-12-23" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.4594 +output = 2.297 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/scaleway/gemma-3-27b-it.toml b/providers/edenai/models/scaleway/gemma-3-27b-it.toml new file mode 100644 index 0000000000..70979f5fcc --- /dev/null +++ b/providers/edenai/models/scaleway/gemma-3-27b-it.toml @@ -0,0 +1,21 @@ +name = "gemma-3-27b-it" +description = "Open Gemma instruction model for efficient chat and self-hosted deployments" +release_date = "2024-10-31" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.287125 +output = 0.57425 + +[limit] +context = 40_000 +output = 40_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml b/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml new file mode 100644 index 0000000000..2bc00816e8 --- /dev/null +++ b/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml @@ -0,0 +1,14 @@ +base_model = "google/gemma-4-26b-a4b-it" +release_date = "2026-04-29" +last_updated = "2026-08-01" +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.287125 +output = 0.57425 + +[limit] +context = 256_000 +output = 256_000 diff --git a/providers/edenai/models/scaleway/glm-5.2.toml b/providers/edenai/models/scaleway/glm-5.2.toml new file mode 100644 index 0000000000..47d123209a --- /dev/null +++ b/providers/edenai/models/scaleway/glm-5.2.toml @@ -0,0 +1,14 @@ +base_model = "zhipuai/glm-5.2" +release_date = "2026-06-25" +last_updated = "2026-08-01" +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 2.0673 +output = 6.316749 + +[limit] +context = 256_000 +output = 256_000 diff --git a/providers/edenai/models/scaleway/gpt-oss-120b.toml b/providers/edenai/models/scaleway/gpt-oss-120b.toml new file mode 100644 index 0000000000..00c983d69d --- /dev/null +++ b/providers/edenai/models/scaleway/gpt-oss-120b.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-oss-120b" +release_date = "2025-08-13" +last_updated = "2026-08-01" +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.172275 +output = 0.6891 + +[limit] +context = 128_000 +output = 128_000 diff --git a/providers/edenai/models/scaleway/holo2-30b-a3b.toml b/providers/edenai/models/scaleway/holo2-30b-a3b.toml new file mode 100644 index 0000000000..4cd2d1bc45 --- /dev/null +++ b/providers/edenai/models/scaleway/holo2-30b-a3b.toml @@ -0,0 +1,22 @@ +name = "holo2-30b-a3b" +description = "Multimodal reasoning model for visual analysis, planning, and tool use" +release_date = "2025-08-12" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.34455 +output = 0.80395 + +[limit] +context = 22_000 +output = 22_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml b/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml new file mode 100644 index 0000000000..1f42ed6e5b --- /dev/null +++ b/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml @@ -0,0 +1,13 @@ +base_model = "meta/llama-3.3-70b-instruct" +release_date = "2025-01-07" +last_updated = "2026-08-01" +attachment = false +structured_output = false +open_weights = false + +[cost] +input = 1.03365 +output = 1.03365 + +[limit] +output = 128_000 diff --git a/providers/edenai/models/scaleway/mistral-medium-3.5-128b.toml b/providers/edenai/models/scaleway/mistral-medium-3.5-128b.toml new file mode 100644 index 0000000000..22758da7fa --- /dev/null +++ b/providers/edenai/models/scaleway/mistral-medium-3.5-128b.toml @@ -0,0 +1,22 @@ +name = "mistral-medium-3.5-128b" +description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" +release_date = "2026-05-07" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 1.72275 +output = 8.613749 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/scaleway/mistral-small-3.2-24b-instruct-2506.toml b/providers/edenai/models/scaleway/mistral-small-3.2-24b-instruct-2506.toml new file mode 100644 index 0000000000..421c5ff5d6 --- /dev/null +++ b/providers/edenai/models/scaleway/mistral-small-3.2-24b-instruct-2506.toml @@ -0,0 +1,21 @@ +name = "mistral-small-3.2-24b-instruct-2506" +description = "Efficient Mistral model for fast chat, extraction, and production assistants" +release_date = "2025-08-12" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.172275 +output = 0.401975 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/scaleway/pixtral-12b-2409.toml b/providers/edenai/models/scaleway/pixtral-12b-2409.toml new file mode 100644 index 0000000000..54c51cf46a --- /dev/null +++ b/providers/edenai/models/scaleway/pixtral-12b-2409.toml @@ -0,0 +1,21 @@ +name = "pixtral-12b-2409" +description = "Mistral vision-language model for image understanding and multimodal chat" +release_date = "2024-10-31" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.2297 +output = 0.2297 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/edenai/models/scaleway/qwen3-235b-a22b-instruct-2507.toml b/providers/edenai/models/scaleway/qwen3-235b-a22b-instruct-2507.toml new file mode 100644 index 0000000000..bb6cceb785 --- /dev/null +++ b/providers/edenai/models/scaleway/qwen3-235b-a22b-instruct-2507.toml @@ -0,0 +1,21 @@ +name = "qwen3-235b-a22b-instruct-2507" +description = "Tool-capable chat model for instruction following and agentic application workflows" +release_date = "2025-08-01" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.861375 +output = 2.584125 + +[limit] +context = 250_000 +output = 250_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml b/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml new file mode 100644 index 0000000000..b2dcdba080 --- /dev/null +++ b/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml @@ -0,0 +1,13 @@ +base_model = "alibaba/qwen3-coder-30b-a3b-instruct" +release_date = "2025-08-12" +last_updated = "2026-08-01" +structured_output = false +open_weights = false + +[cost] +input = 0.2297 +output = 0.9188 + +[limit] +context = 128_000 +output = 128_000 diff --git a/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml b/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml new file mode 100644 index 0000000000..9fdea7d7bf --- /dev/null +++ b/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml @@ -0,0 +1,17 @@ +base_model = "alibaba/qwen3.5-397b-a17b" +release_date = "2026-03-13" +last_updated = "2026-08-01" +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6891 +output = 4.1346 + +[limit] +context = 250_000 +output = 250_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml b/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml new file mode 100644 index 0000000000..a54a34aea2 --- /dev/null +++ b/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml @@ -0,0 +1,17 @@ +base_model = "alibaba/qwen3.6-35b-a3b" +release_date = "2026-05-07" +last_updated = "2026-08-01" +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.287125 +output = 1.72275 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/scaleway/voxtral-small-24b-2507.toml b/providers/edenai/models/scaleway/voxtral-small-24b-2507.toml new file mode 100644 index 0000000000..08af193642 --- /dev/null +++ b/providers/edenai/models/scaleway/voxtral-small-24b-2507.toml @@ -0,0 +1,21 @@ +name = "voxtral-small-24b-2507" +description = "Efficient model for low-latency assistance, extraction, and routine automation" +release_date = "2025-09-08" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.172275 +output = 0.401975 + +[limit] +context = 32_000 +output = 32_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/LiquidAI/LFM2.5-8B-A1B.toml b/providers/edenai/models/together_ai/LiquidAI/LFM2.5-8B-A1B.toml new file mode 100644 index 0000000000..ac12d678ac --- /dev/null +++ b/providers/edenai/models/together_ai/LiquidAI/LFM2.5-8B-A1B.toml @@ -0,0 +1,21 @@ +name = "LiquidAI/LFM2.5-8B-A1B" +description = "General-purpose chat model for instruction following, writing, and analysis" +release_date = "2026-07-09" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.03 +output = 0.12 + +[limit] +context = 128_000 +output = 128_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/MiniMaxAI/MiniMax-M3.toml b/providers/edenai/models/together_ai/MiniMaxAI/MiniMax-M3.toml new file mode 100644 index 0000000000..54509e252c --- /dev/null +++ b/providers/edenai/models/together_ai/MiniMaxAI/MiniMax-M3.toml @@ -0,0 +1,23 @@ +name = "MiniMaxAI/MiniMax-M3" +description = "MiniMax-M3 is a multimodal foundation model from MiniMax. It supports text, image, and video inputs with text output, a 1M-token context window, and is suited for long-horizon agentic work, coding,..." +release_date = "2026-05-31" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 +cache_read = 0.06 + +[limit] +context = 524_288 +output = 524_288 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo.toml b/providers/edenai/models/together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo.toml new file mode 100644 index 0000000000..1fa724a264 --- /dev/null +++ b/providers/edenai/models/together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo.toml @@ -0,0 +1,21 @@ +name = "Qwen/Qwen2.5-7B-Instruct-Turbo" +description = "Efficient Qwen model for fast chat, extraction, and high-volume workloads" +release_date = "2026-06-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.3 +output = 0.3 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml b/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml new file mode 100644 index 0000000000..02242ef4ae --- /dev/null +++ b/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml @@ -0,0 +1,16 @@ +base_model = "alibaba/qwen3.5-9b" +release_date = "2026-03-10" +last_updated = "2026-08-01" +attachment = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.17 +output = 0.25 + +[limit] +output = 262_144 + +[modalities] +input = ["text", "image", "video"] diff --git a/providers/edenai/models/together_ai/arize-ai/qwen-2-1.5b-instruct.toml b/providers/edenai/models/together_ai/arize-ai/qwen-2-1.5b-instruct.toml new file mode 100644 index 0000000000..81b424218f --- /dev/null +++ b/providers/edenai/models/together_ai/arize-ai/qwen-2-1.5b-instruct.toml @@ -0,0 +1,21 @@ +name = "arize-ai/qwen-2-1.5b-instruct" +description = "Qwen instruction model for multilingual chat, reasoning, and tool use" +release_date = "2026-06-05" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.1 +output = 0.1 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/deepcogito/cogito-v2-1-671b.toml b/providers/edenai/models/together_ai/deepcogito/cogito-v2-1-671b.toml new file mode 100644 index 0000000000..804ac599cc --- /dev/null +++ b/providers/edenai/models/together_ai/deepcogito/cogito-v2-1-671b.toml @@ -0,0 +1,22 @@ +name = "deepcogito/cogito-v2-1-671b" +description = "Cogito v2.1 671B MoE represents one of the strongest open models globally, matching performance of frontier closed and open models. This model is trained using self play with reinforcement learning..." +release_date = "2025-11-13" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = false +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.25 +output = 1.25 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/deepseek-ai/DeepSeek-V4-Pro.toml b/providers/edenai/models/together_ai/deepseek-ai/DeepSeek-V4-Pro.toml new file mode 100644 index 0000000000..4ed4f41742 --- /dev/null +++ b/providers/edenai/models/together_ai/deepseek-ai/DeepSeek-V4-Pro.toml @@ -0,0 +1,23 @@ +name = "deepseek-ai/DeepSeek-V4-Pro" +description = "Flagship DeepSeek model for coding, reasoning, and agentic work" +release_date = "2026-04-24" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.74 +output = 3.48 +cache_read = 0.2 + +[limit] +context = 512_000 +output = 512_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/google/gemma-3n-E4B-it.toml b/providers/edenai/models/together_ai/google/gemma-3n-E4B-it.toml new file mode 100644 index 0000000000..0a26d0aa83 --- /dev/null +++ b/providers/edenai/models/together_ai/google/gemma-3n-E4B-it.toml @@ -0,0 +1,21 @@ +name = "google/gemma-3n-E4B-it" +description = "Gemma 3n E4B-it is optimized for efficient execution on mobile and low-resource devices, such as phones, laptops, and tablets. It supports multimodal inputs—including text, visual data, and audio—enabling diverse tasks..." +release_date = "2025-05-20" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = false +structured_output = true +open_weights = false + +[cost] +input = 0.06 +output = 0.12 + +[limit] +context = 32_768 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml b/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml new file mode 100644 index 0000000000..bd3f6fc188 --- /dev/null +++ b/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml @@ -0,0 +1,15 @@ +base_model = "google/gemma-4-31b-it" +last_updated = "2026-08-01" +tool_call = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.39 +output = 0.97 + +[limit] +output = 262_144 + +[modalities] +input = ["image", "text", "video"] diff --git a/providers/edenai/models/together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml b/providers/edenai/models/together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml new file mode 100644 index 0000000000..b8b607651f --- /dev/null +++ b/providers/edenai/models/together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Llama-3.3-70B-Instruct-Turbo" +description = "Compact Llama instruction model for fast chat and local deployment" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 1.04 +output = 1.04 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/meta-llama/Llama-Guard-4-12B.toml b/providers/edenai/models/together_ai/meta-llama/Llama-Guard-4-12B.toml new file mode 100644 index 0000000000..55843d8e1a --- /dev/null +++ b/providers/edenai/models/together_ai/meta-llama/Llama-Guard-4-12B.toml @@ -0,0 +1,21 @@ +name = "meta-llama/Llama-Guard-4-12B" +description = "Llama Guard 4 is a Llama 4 Scout-derived multimodal pretrained model, fine-tuned for content safety classification. Similar to previous versions, it can be used to classify content in both LLM..." +release_date = "2025-04-30" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = false +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.2 + +[limit] +context = 1_048_576 +output = 1_048_576 + +[modalities] +input = ["image", "text"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/moonshotai/Kimi-K2.6.toml b/providers/edenai/models/together_ai/moonshotai/Kimi-K2.6.toml new file mode 100644 index 0000000000..fb8245cbfa --- /dev/null +++ b/providers/edenai/models/together_ai/moonshotai/Kimi-K2.6.toml @@ -0,0 +1,13 @@ +base_model = "moonshotai/kimi-k2.6" +release_date = "2026-04-20" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 1.2 +output = 4.5 +cache_read = 0.2 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/together_ai/moonshotai/Kimi-K2.7-Code.toml b/providers/edenai/models/together_ai/moonshotai/Kimi-K2.7-Code.toml new file mode 100644 index 0000000000..70a7c54a37 --- /dev/null +++ b/providers/edenai/models/together_ai/moonshotai/Kimi-K2.7-Code.toml @@ -0,0 +1,12 @@ +base_model = "moonshotai/kimi-k2.7-code" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.95 +output = 4 +cache_read = 0.19 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml b/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml new file mode 100644 index 0000000000..e9a781ffed --- /dev/null +++ b/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml @@ -0,0 +1,16 @@ +base_model = "moonshotai/kimi-k3" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml b/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml new file mode 100644 index 0000000000..4fc29440c6 --- /dev/null +++ b/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml @@ -0,0 +1,14 @@ +base_model = "nvidia/nemotron-3-ultra-550b-a55b" +last_updated = "2026-08-01" +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 3.6 +cache_read = 0.2 + +[limit] +context = 512_288 +output = 512_288 diff --git a/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml b/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml new file mode 100644 index 0000000000..0c94b05cc3 --- /dev/null +++ b/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml @@ -0,0 +1,11 @@ +base_model = "openai/gpt-oss-120b" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 0.6 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml b/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml new file mode 100644 index 0000000000..99c6bb9520 --- /dev/null +++ b/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml @@ -0,0 +1,11 @@ +base_model = "openai/gpt-oss-20b" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 0.05 +output = 0.2 + +[limit] +output = 131_072 diff --git a/providers/edenai/models/together_ai/pearl-ai/gemma-4-31b-it.toml b/providers/edenai/models/together_ai/pearl-ai/gemma-4-31b-it.toml new file mode 100644 index 0000000000..0ddf03e9d5 --- /dev/null +++ b/providers/edenai/models/together_ai/pearl-ai/gemma-4-31b-it.toml @@ -0,0 +1,22 @@ +name = "pearl-ai/gemma-4-31b-it" +description = "Gemma 4 31B Instruct is Google DeepMind's 30.7B dense multimodal model supporting text and image input with text output. Features a 256K token context window, configurable thinking/reasoning mode, native function..." +release_date = "2026-04-02" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = false +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.28 +output = 0.86 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["image", "text", "video"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/thinkingmachines/Inkling-Small.toml b/providers/edenai/models/together_ai/thinkingmachines/Inkling-Small.toml new file mode 100644 index 0000000000..dbeb6bd1bc --- /dev/null +++ b/providers/edenai/models/together_ai/thinkingmachines/Inkling-Small.toml @@ -0,0 +1,23 @@ +name = "thinkingmachines/Inkling-Small" +description = "Inkling Small is an open-weight multimodal mixture-of-experts model from Thinking Machines Lab, with 12B active parameters out of 276B total. It is positioned as the smaller, more efficient member of..." +release_date = "2026-07-30" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.5 +output = 1.2 +cache_read = 0.1 + +[limit] +context = 524_288 +output = 524_288 + +[modalities] +input = ["text", "image", "audio"] +output = ["text"] diff --git a/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml b/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml new file mode 100644 index 0000000000..a6e0adcce8 --- /dev/null +++ b/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml @@ -0,0 +1,15 @@ +base_model = "thinkingmachines/inkling" +release_date = "2026-07-17" +last_updated = "2026-08-01" +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 1 +output = 4.05 +cache_read = 0.17 + +[limit] +context = 524_288 +output = 524_288 diff --git a/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml b/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml new file mode 100644 index 0000000000..207853580e --- /dev/null +++ b/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml @@ -0,0 +1,14 @@ +base_model = "zhipuai/glm-5.2" +release_date = "2026-06-16" +last_updated = "2026-08-01" +open_weights = false +reasoning_options = [] + +[cost] +input = 1.4 +output = 4.4 +cache_read = 0.26 + +[limit] +context = 512_000 +output = 512_000 diff --git a/providers/edenai/models/vertex/claude-fable-5.toml b/providers/edenai/models/vertex/claude-fable-5.toml new file mode 100644 index 0000000000..a04dce4701 --- /dev/null +++ b/providers/edenai/models/vertex/claude-fable-5.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-fable-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 10 +output = 50 +cache_read = 1 +cache_write = 12.5 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-fable-5@eu.toml b/providers/edenai/models/vertex/claude-fable-5@eu.toml new file mode 100644 index 0000000000..ed9d417a6f --- /dev/null +++ b/providers/edenai/models/vertex/claude-fable-5@eu.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-fable-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 11 +output = 55 +cache_read = 1.1 +cache_write = 13.75 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-haiku-4-5.toml b/providers/edenai/models/vertex/claude-haiku-4-5.toml new file mode 100644 index 0000000000..202b0b2eed --- /dev/null +++ b/providers/edenai/models/vertex/claude-haiku-4-5.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-haiku-4-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 1 +output = 5 +cache_read = 0.1 +cache_write = 1.25 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-1.toml b/providers/edenai/models/vertex/claude-opus-4-1.toml new file mode 100644 index 0000000000..1099122c81 --- /dev/null +++ b/providers/edenai/models/vertex/claude-opus-4-1.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-4-1" +last_updated = "2026-08-01" +structured_output = false +reasoning_options = [] + +[cost] +input = 15 +output = 75 +cache_read = 1.5 +cache_write = 18.75 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-5.toml b/providers/edenai/models/vertex/claude-opus-4-5.toml new file mode 100644 index 0000000000..f27adb3add --- /dev/null +++ b/providers/edenai/models/vertex/claude-opus-4-5.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-4-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 200_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-6.toml b/providers/edenai/models/vertex/claude-opus-4-6.toml new file mode 100644 index 0000000000..5f37c18a17 --- /dev/null +++ b/providers/edenai/models/vertex/claude-opus-4-6.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-opus-4-6" +release_date = "2026-02-04" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-7.toml b/providers/edenai/models/vertex/claude-opus-4-7.toml new file mode 100644 index 0000000000..3cc4cc4ec8 --- /dev/null +++ b/providers/edenai/models/vertex/claude-opus-4-7.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-4-7" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-7@eu.toml b/providers/edenai/models/vertex/claude-opus-4-7@eu.toml new file mode 100644 index 0000000000..6a78cac136 --- /dev/null +++ b/providers/edenai/models/vertex/claude-opus-4-7@eu.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-4-7" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-7@us.toml b/providers/edenai/models/vertex/claude-opus-4-7@us.toml new file mode 100644 index 0000000000..6a78cac136 --- /dev/null +++ b/providers/edenai/models/vertex/claude-opus-4-7@us.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-opus-4-7" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-8.toml b/providers/edenai/models/vertex/claude-opus-4-8.toml new file mode 100644 index 0000000000..b37d330646 --- /dev/null +++ b/providers/edenai/models/vertex/claude-opus-4-8.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-opus-4-8" +release_date = "2026-05-27" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-8@eu.toml b/providers/edenai/models/vertex/claude-opus-4-8@eu.toml new file mode 100644 index 0000000000..d01218df93 --- /dev/null +++ b/providers/edenai/models/vertex/claude-opus-4-8@eu.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-opus-4-8" +release_date = "2026-05-27" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-8@us.toml b/providers/edenai/models/vertex/claude-opus-4-8@us.toml new file mode 100644 index 0000000000..d01218df93 --- /dev/null +++ b/providers/edenai/models/vertex/claude-opus-4-8@us.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-opus-4-8" +release_date = "2026-05-27" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 5.5 +output = 27.5 +cache_read = 0.55 +cache_write = 6.875 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-4-5.toml b/providers/edenai/models/vertex/claude-sonnet-4-5.toml new file mode 100644 index 0000000000..226e4a04e4 --- /dev/null +++ b/providers/edenai/models/vertex/claude-sonnet-4-5.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-sonnet-4-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 +cache_write = 3.75 + +[limit] +context = 1_000_000 +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-4-6.toml b/providers/edenai/models/vertex/claude-sonnet-4-6.toml new file mode 100644 index 0000000000..39343b225d --- /dev/null +++ b/providers/edenai/models/vertex/claude-sonnet-4-6.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-sonnet-4-6" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 +cache_write = 3.75 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-5.toml b/providers/edenai/models/vertex/claude-sonnet-5.toml new file mode 100644 index 0000000000..89be7fa2b7 --- /dev/null +++ b/providers/edenai/models/vertex/claude-sonnet-5.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-sonnet-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 2 +output = 10 +cache_read = 0.2 +cache_write = 2.5 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-5@eu.toml b/providers/edenai/models/vertex/claude-sonnet-5@eu.toml new file mode 100644 index 0000000000..e0ed1bb86d --- /dev/null +++ b/providers/edenai/models/vertex/claude-sonnet-5@eu.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-sonnet-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 2.2 +output = 11 +cache_read = 0.22 +cache_write = 2.75 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-5@us.toml b/providers/edenai/models/vertex/claude-sonnet-5@us.toml new file mode 100644 index 0000000000..e0ed1bb86d --- /dev/null +++ b/providers/edenai/models/vertex/claude-sonnet-5@us.toml @@ -0,0 +1,13 @@ +base_model = "anthropic/claude-sonnet-5" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 2.2 +output = 11 +cache_read = 0.22 +cache_write = 2.75 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas.toml b/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas.toml new file mode 100644 index 0000000000..5a905a06ad --- /dev/null +++ b/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas.toml @@ -0,0 +1,22 @@ +name = "deepseek-ai/deepseek-v3.2-maas" +description = "DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance. It introduces DeepSeek Sparse Attention (DSA), a fine-grained sparse attention mechanism..." +release_date = "2025-12-01" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.56 +output = 1.68 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@eu.toml b/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@eu.toml new file mode 100644 index 0000000000..60a1fa8d4c --- /dev/null +++ b/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@eu.toml @@ -0,0 +1,22 @@ +name = "deepseek-ai/deepseek-v3.2-maas" +description = "DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance. It introduces DeepSeek Sparse Attention (DSA), a fine-grained sparse attention mechanism..." +release_date = "2025-12-01" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.616 +output = 1.848 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@us.toml b/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@us.toml new file mode 100644 index 0000000000..60a1fa8d4c --- /dev/null +++ b/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@us.toml @@ -0,0 +1,22 @@ +name = "deepseek-ai/deepseek-v3.2-maas" +description = "DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance. It introduces DeepSeek Sparse Attention (DSA), a fine-grained sparse attention mechanism..." +release_date = "2025-12-01" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.616 +output = 1.848 + +[limit] +context = 163_840 +output = 163_840 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/gemini-2.5-flash-image.toml b/providers/edenai/models/vertex/gemini-2.5-flash-image.toml new file mode 100644 index 0000000000..87b433d43e --- /dev/null +++ b/providers/edenai/models/vertex/gemini-2.5-flash-image.toml @@ -0,0 +1,12 @@ +base_model = "google/gemini-2.5-flash-image" +release_date = "2025-10-07" +last_updated = "2026-08-01" +reasoning = false +structured_output = true + +[cost] +input = 0.3 +output = 2.5 +cache_read = 0.03 +cache_write = 0.083333 +input_audio = 1 diff --git a/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml b/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml new file mode 100644 index 0000000000..2d173f174f --- /dev/null +++ b/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml @@ -0,0 +1,15 @@ +base_model = "google/gemini-2.5-flash-lite" +release_date = "2025-07-22" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.1 +output = 0.4 +reasoning = 0.4 +cache_read = 0.01 +cache_write = 0.083333 +input_audio = 0.3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-2.5-flash.toml b/providers/edenai/models/vertex/gemini-2.5-flash.toml new file mode 100644 index 0000000000..b9cdd36d61 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-2.5-flash.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-2.5-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +reasoning = 2.5 +cache_read = 0.03 +cache_write = 0.083333 +input_audio = 1 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-2.5-pro.toml b/providers/edenai/models/vertex/gemini-2.5-pro.toml new file mode 100644 index 0000000000..8ece6136f6 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-2.5-pro.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-2.5-pro" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +reasoning = 10 +cache_read = 0.125 +cache_write = 0.375 +input_audio = 1.25 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3-flash-preview.toml b/providers/edenai/models/vertex/gemini-3-flash-preview.toml new file mode 100644 index 0000000000..5456db9671 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3-flash-preview.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3-flash-preview" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.5 +output = 3 +reasoning = 3 +cache_read = 0.05 +cache_write = 0.083333 +input_audio = 1 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3-pro-image.toml b/providers/edenai/models/vertex/gemini-3-pro-image.toml new file mode 100644 index 0000000000..63f3d3fa62 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3-pro-image.toml @@ -0,0 +1,16 @@ +base_model = "google/gemini-3-pro-image" +release_date = "2026-06-18" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 2 +output = 12 +reasoning = 12 +cache_read = 0.2 +cache_write = 0.375 +input_audio = 2 + +[limit] +output = 65_536 diff --git a/providers/edenai/models/vertex/gemini-3.1-flash-image.toml b/providers/edenai/models/vertex/gemini-3.1-flash-image.toml new file mode 100644 index 0000000000..46a2d848f4 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.1-flash-image.toml @@ -0,0 +1,15 @@ +base_model = "google/gemini-3.1-flash-image" +release_date = "2026-06-18" +last_updated = "2026-08-01" +structured_output = true +reasoning_options = [] + +[cost] +input = 0.5 +output = 3 + +[limit] +output = 131_072 + +[modalities] +input = ["image", "text"] diff --git a/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml b/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml new file mode 100644 index 0000000000..48b0cae08b --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml @@ -0,0 +1,12 @@ +base_model = "google/gemini-3.1-flash-lite-image" +last_updated = "2026-08-01" +tool_call = false +structured_output = true +reasoning_options = [] + +[cost] +input = 0.25 +output = 1.5 + +[limit] +output = 65_536 diff --git a/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml b/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml new file mode 100644 index 0000000000..4aad224aa5 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.1-pro-preview" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2 +output = 12 +reasoning = 12 +cache_read = 0.2 +cache_write = 0.375 +input_audio = 2 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml b/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml new file mode 100644 index 0000000000..565c18b5b4 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.5-flash-lite" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +reasoning = 2.5 +cache_read = 0.03 +cache_write = 0.083333 +input_audio = 0.3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml b/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml new file mode 100644 index 0000000000..565c18b5b4 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.5-flash-lite" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +reasoning = 2.5 +cache_read = 0.03 +cache_write = 0.083333 +input_audio = 0.3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml b/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml new file mode 100644 index 0000000000..565c18b5b4 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.5-flash-lite" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +reasoning = 2.5 +cache_read = 0.03 +cache_write = 0.083333 +input_audio = 0.3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash.toml b/providers/edenai/models/vertex/gemini-3.5-flash.toml new file mode 100644 index 0000000000..341fe75c72 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.5-flash.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.5-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.5 +output = 9 +reasoning = 9 +cache_read = 0.15 +cache_write = 0.083333 +input_audio = 3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml b/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml new file mode 100644 index 0000000000..341fe75c72 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.5-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.5 +output = 9 +reasoning = 9 +cache_read = 0.15 +cache_write = 0.083333 +input_audio = 3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash@us.toml b/providers/edenai/models/vertex/gemini-3.5-flash@us.toml new file mode 100644 index 0000000000..341fe75c72 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.5-flash@us.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.5-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.5 +output = 9 +reasoning = 9 +cache_read = 0.15 +cache_write = 0.083333 +input_audio = 3 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.6-flash.toml b/providers/edenai/models/vertex/gemini-3.6-flash.toml new file mode 100644 index 0000000000..ed74c59262 --- /dev/null +++ b/providers/edenai/models/vertex/gemini-3.6-flash.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.6-flash" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.5 +output = 7.5 +reasoning = 7.5 +cache_read = 0.15 +cache_write = 0.083333 +input_audio = 1.5 + +[limit] +output = 1_048_576 diff --git a/providers/edenai/models/vertex/minimaxai/minimax-m2-maas.toml b/providers/edenai/models/vertex/minimaxai/minimax-m2-maas.toml new file mode 100644 index 0000000000..6cd6535b7d --- /dev/null +++ b/providers/edenai/models/vertex/minimaxai/minimax-m2-maas.toml @@ -0,0 +1,22 @@ +name = "minimaxai/minimax-m2-maas" +description = "MiniMax-M2 is a compact, high-efficiency large language model optimized for end-to-end coding and agentic workflows. With 10 billion activated parameters (230 billion total), it delivers near-frontier intelligence across general reasoning,..." +release_date = "2025-10-23" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 + +[limit] +context = 196_608 +output = 196_608 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/moonshotai/kimi-k2-thinking-maas.toml b/providers/edenai/models/vertex/moonshotai/kimi-k2-thinking-maas.toml new file mode 100644 index 0000000000..0af7145082 --- /dev/null +++ b/providers/edenai/models/vertex/moonshotai/kimi-k2-thinking-maas.toml @@ -0,0 +1,22 @@ +name = "moonshotai/kimi-k2-thinking-maas" +description = "Kimi K2 Thinking is Moonshot AI’s most advanced open reasoning model to date, extending the K2 series into agentic, long-horizon reasoning. Built on the trillion-parameter Mixture-of-Experts (MoE) architecture introduced in..." +release_date = "2025-11-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 2.5 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas.toml new file mode 100644 index 0000000000..2c9f00045f --- /dev/null +++ b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas.toml @@ -0,0 +1,21 @@ +name = "qwen/qwen3-next-80b-a3b-instruct-maas" +description = "Qwen3-Next-80B-A3B-Instruct is an instruction-tuned chat model in the Qwen3-Next series optimized for fast, stable responses without “thinking” traces. It targets complex tasks across reasoning, code generation, knowledge QA, and multilingual..." +release_date = "2025-09-11" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.15 +output = 1.2 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@eu.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@eu.toml new file mode 100644 index 0000000000..2d69a80d0d --- /dev/null +++ b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@eu.toml @@ -0,0 +1,21 @@ +name = "qwen/qwen3-next-80b-a3b-instruct-maas" +description = "Qwen3-Next-80B-A3B-Instruct is an instruction-tuned chat model in the Qwen3-Next series optimized for fast, stable responses without “thinking” traces. It targets complex tasks across reasoning, code generation, knowledge QA, and multilingual..." +release_date = "2025-09-11" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.165 +output = 1.32 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@us.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@us.toml new file mode 100644 index 0000000000..2d69a80d0d --- /dev/null +++ b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@us.toml @@ -0,0 +1,21 @@ +name = "qwen/qwen3-next-80b-a3b-instruct-maas" +description = "Qwen3-Next-80B-A3B-Instruct is an instruction-tuned chat model in the Qwen3-Next series optimized for fast, stable responses without “thinking” traces. It targets complex tasks across reasoning, code generation, knowledge QA, and multilingual..." +release_date = "2025-09-11" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.165 +output = 1.32 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas.toml new file mode 100644 index 0000000000..44e5de43f2 --- /dev/null +++ b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas.toml @@ -0,0 +1,22 @@ +name = "qwen/qwen3-next-80b-a3b-thinking-maas" +description = "Qwen3-Next-80B-A3B-Thinking is a reasoning-first chat model in the Qwen3-Next line that outputs structured “thinking” traces by default. It’s designed for hard multi-step problems; math proofs, code synthesis/debugging, logic, and agentic..." +release_date = "2025-09-11" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.15 +output = 1.2 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@eu.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@eu.toml new file mode 100644 index 0000000000..74cac97591 --- /dev/null +++ b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@eu.toml @@ -0,0 +1,22 @@ +name = "qwen/qwen3-next-80b-a3b-thinking-maas" +description = "Qwen3-Next-80B-A3B-Thinking is a reasoning-first chat model in the Qwen3-Next line that outputs structured “thinking” traces by default. It’s designed for hard multi-step problems; math proofs, code synthesis/debugging, logic, and agentic..." +release_date = "2025-09-11" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.165 +output = 1.32 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@us.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@us.toml new file mode 100644 index 0000000000..74cac97591 --- /dev/null +++ b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@us.toml @@ -0,0 +1,22 @@ +name = "qwen/qwen3-next-80b-a3b-thinking-maas" +description = "Qwen3-Next-80B-A3B-Thinking is a reasoning-first chat model in the Qwen3-Next line that outputs structured “thinking” traces by default. It’s designed for hard multi-step problems; math proofs, code synthesis/debugging, logic, and agentic..." +release_date = "2025-09-11" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.165 +output = 1.32 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/zai-org/glm-4.7-maas.toml b/providers/edenai/models/vertex/zai-org/glm-4.7-maas.toml new file mode 100644 index 0000000000..b7e0e42549 --- /dev/null +++ b/providers/edenai/models/vertex/zai-org/glm-4.7-maas.toml @@ -0,0 +1,22 @@ +name = "zai-org/glm-4.7-maas" +description = "GLM-4.7 is Z.ai’s latest flagship model, featuring upgrades in two key areas: enhanced programming capabilities and more stable multi-step reasoning/execution. It demonstrates significant improvements in executing complex agent tasks while..." +release_date = "2025-12-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 2.2 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/zai-org/glm-4.7-maas@eu.toml b/providers/edenai/models/vertex/zai-org/glm-4.7-maas@eu.toml new file mode 100644 index 0000000000..fbfbaad543 --- /dev/null +++ b/providers/edenai/models/vertex/zai-org/glm-4.7-maas@eu.toml @@ -0,0 +1,22 @@ +name = "zai-org/glm-4.7-maas" +description = "GLM-4.7 is Z.ai’s latest flagship model, featuring upgrades in two key areas: enhanced programming capabilities and more stable multi-step reasoning/execution. It demonstrates significant improvements in executing complex agent tasks while..." +release_date = "2025-12-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.66 +output = 2.42 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/vertex/zai-org/glm-4.7-maas@us.toml b/providers/edenai/models/vertex/zai-org/glm-4.7-maas@us.toml new file mode 100644 index 0000000000..fbfbaad543 --- /dev/null +++ b/providers/edenai/models/vertex/zai-org/glm-4.7-maas@us.toml @@ -0,0 +1,22 @@ +name = "zai-org/glm-4.7-maas" +description = "GLM-4.7 is Z.ai’s latest flagship model, featuring upgrades in two key areas: enhanced programming capabilities and more stable multi-step reasoning/execution. It demonstrates significant improvements in executing complex agent tasks while..." +release_date = "2025-12-22" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.66 +output = 2.42 + +[limit] +context = 200_000 +output = 200_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-beta.toml b/providers/edenai/models/xai/grok-3-beta.toml new file mode 100644 index 0000000000..8c648e2e57 --- /dev/null +++ b/providers/edenai/models/xai/grok-3-beta.toml @@ -0,0 +1,22 @@ +name = "grok-3-beta" +description = "Grok 3 is the latest model from xAI. It's their flagship model that excels at enterprise use cases like data extraction, coding, and text summarization. Possesses deep domain knowledge in..." +release_date = "2025-04-09" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3 +output = 15 +cache_read = 0.75 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-fast-beta.toml b/providers/edenai/models/xai/grok-3-fast-beta.toml new file mode 100644 index 0000000000..8101d9fafe --- /dev/null +++ b/providers/edenai/models/xai/grok-3-fast-beta.toml @@ -0,0 +1,22 @@ +name = "grok-3-fast-beta" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 5 +output = 25 +cache_read = 1.25 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-fast-latest.toml b/providers/edenai/models/xai/grok-3-fast-latest.toml new file mode 100644 index 0000000000..1f2b2ffbb0 --- /dev/null +++ b/providers/edenai/models/xai/grok-3-fast-latest.toml @@ -0,0 +1,22 @@ +name = "grok-3-fast-latest" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 5 +output = 25 +cache_read = 1.25 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-latest.toml b/providers/edenai/models/xai/grok-3-latest.toml new file mode 100644 index 0000000000..e6e5be47fa --- /dev/null +++ b/providers/edenai/models/xai/grok-3-latest.toml @@ -0,0 +1,22 @@ +name = "grok-3-latest" +description = "Grok model for agentic tool use, reasoning, coding, and live assistance" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3 +output = 15 +cache_read = 0.75 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-mini-fast-beta.toml b/providers/edenai/models/xai/grok-3-mini-fast-beta.toml new file mode 100644 index 0000000000..8ea120e261 --- /dev/null +++ b/providers/edenai/models/xai/grok-3-mini-fast-beta.toml @@ -0,0 +1,23 @@ +name = "grok-3-mini-fast-beta" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 4 +cache_read = 0.15 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-mini-fast-latest.toml b/providers/edenai/models/xai/grok-3-mini-fast-latest.toml new file mode 100644 index 0000000000..449dda35a2 --- /dev/null +++ b/providers/edenai/models/xai/grok-3-mini-fast-latest.toml @@ -0,0 +1,23 @@ +name = "grok-3-mini-fast-latest" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 4 +cache_read = 0.15 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-mini-fast.toml b/providers/edenai/models/xai/grok-3-mini-fast.toml new file mode 100644 index 0000000000..d1ec5bf461 --- /dev/null +++ b/providers/edenai/models/xai/grok-3-mini-fast.toml @@ -0,0 +1,23 @@ +name = "grok-3-mini-fast" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.6 +output = 4 +cache_read = 0.15 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-mini-latest.toml b/providers/edenai/models/xai/grok-3-mini-latest.toml new file mode 100644 index 0000000000..ece5a0d03e --- /dev/null +++ b/providers/edenai/models/xai/grok-3-mini-latest.toml @@ -0,0 +1,23 @@ +name = "grok-3-mini-latest" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.3 +output = 0.5 +cache_read = 0.075 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-3.toml b/providers/edenai/models/xai/grok-3.toml new file mode 100644 index 0000000000..a2206413e1 --- /dev/null +++ b/providers/edenai/models/xai/grok-3.toml @@ -0,0 +1,22 @@ +name = "grok-3" +description = "Grok 3 is the latest model from xAI. It's their flagship model that excels at enterprise use cases like data extraction, coding, and text summarization. Possesses deep domain knowledge in..." +release_date = "2025-06-10" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3 +output = 15 +cache_read = 0.75 + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-0709.toml b/providers/edenai/models/xai/grok-4-0709.toml new file mode 100644 index 0000000000..93d68f2e15 --- /dev/null +++ b/providers/edenai/models/xai/grok-4-0709.toml @@ -0,0 +1,21 @@ +name = "grok-4-0709" +description = "Grok model for agentic tool use, reasoning, coding, and live assistance" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3 +output = 15 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast-non-reasoning-latest.toml b/providers/edenai/models/xai/grok-4-1-fast-non-reasoning-latest.toml new file mode 100644 index 0000000000..2d66ae301d --- /dev/null +++ b/providers/edenai/models/xai/grok-4-1-fast-non-reasoning-latest.toml @@ -0,0 +1,22 @@ +name = "grok-4-1-fast-non-reasoning-latest" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.2 +output = 0.5 +cache_read = 0.05 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["audio", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast-non-reasoning.toml b/providers/edenai/models/xai/grok-4-1-fast-non-reasoning.toml new file mode 100644 index 0000000000..00eb3d5a19 --- /dev/null +++ b/providers/edenai/models/xai/grok-4-1-fast-non-reasoning.toml @@ -0,0 +1,22 @@ +name = "grok-4-1-fast-non-reasoning" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = true +open_weights = false + +[cost] +input = 0.2 +output = 0.5 +cache_read = 0.05 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["audio", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast-reasoning-latest.toml b/providers/edenai/models/xai/grok-4-1-fast-reasoning-latest.toml new file mode 100644 index 0000000000..d09b36c32a --- /dev/null +++ b/providers/edenai/models/xai/grok-4-1-fast-reasoning-latest.toml @@ -0,0 +1,23 @@ +name = "grok-4-1-fast-reasoning-latest" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 0.5 +cache_read = 0.05 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["audio", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast-reasoning.toml b/providers/edenai/models/xai/grok-4-1-fast-reasoning.toml new file mode 100644 index 0000000000..d242c3044a --- /dev/null +++ b/providers/edenai/models/xai/grok-4-1-fast-reasoning.toml @@ -0,0 +1,23 @@ +name = "grok-4-1-fast-reasoning" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 0.5 +cache_read = 0.05 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["audio", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast.toml b/providers/edenai/models/xai/grok-4-1-fast.toml new file mode 100644 index 0000000000..642a0aaa98 --- /dev/null +++ b/providers/edenai/models/xai/grok-4-1-fast.toml @@ -0,0 +1,23 @@ +name = "grok-4-1-fast" +description = "Grok 4.1 Fast is xAI's best agentic tool calling model that shines in real-world use cases like customer support and deep research. 2M context window. Reasoning can be enabled/disabled using..." +release_date = "2025-11-19" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 0.5 +cache_read = 0.05 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["audio", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-fast-non-reasoning.toml b/providers/edenai/models/xai/grok-4-fast-non-reasoning.toml new file mode 100644 index 0000000000..63f1c73a48 --- /dev/null +++ b/providers/edenai/models/xai/grok-4-fast-non-reasoning.toml @@ -0,0 +1,22 @@ +name = "grok-4-fast-non-reasoning" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.5 +cache_read = 0.05 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-fast-reasoning.toml b/providers/edenai/models/xai/grok-4-fast-reasoning.toml new file mode 100644 index 0000000000..6064eae96e --- /dev/null +++ b/providers/edenai/models/xai/grok-4-fast-reasoning.toml @@ -0,0 +1,22 @@ +name = "grok-4-fast-reasoning" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 0.2 +output = 0.5 +cache_read = 0.05 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-fast.toml b/providers/edenai/models/xai/grok-4-fast.toml new file mode 100644 index 0000000000..38e488310b --- /dev/null +++ b/providers/edenai/models/xai/grok-4-fast.toml @@ -0,0 +1,23 @@ +name = "grok-4-fast" +description = "Grok 4 Fast is xAI's latest multimodal model with SOTA cost-efficiency and a 2M token context window. It comes in two flavors: non-reasoning and reasoning. Read more about the model..." +release_date = "2025-09-19" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 0.5 +cache_read = 0.05 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["pdf", "image", "text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-latest.toml b/providers/edenai/models/xai/grok-4-latest.toml new file mode 100644 index 0000000000..342d81166b --- /dev/null +++ b/providers/edenai/models/xai/grok-4-latest.toml @@ -0,0 +1,21 @@ +name = "grok-4-latest" +description = "Grok model for agentic tool use, reasoning, coding, and live assistance" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3 +output = 15 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml b/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml new file mode 100644 index 0000000000..2f6d2f20b7 --- /dev/null +++ b/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml @@ -0,0 +1,16 @@ +base_model = "xai/grok-4.20-0309-non-reasoning" +release_date = "2026-06-05" +last_updated = "2026-08-01" +structured_output = false + +[cost] +input = 1.25 +output = 2.5 +cache_read = 0.2 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml b/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml new file mode 100644 index 0000000000..7a83b74240 --- /dev/null +++ b/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml @@ -0,0 +1,17 @@ +base_model = "xai/grok-4.20-0309-reasoning" +release_date = "2026-04-19" +last_updated = "2026-08-01" +structured_output = false +reasoning_options = [] + +[cost] +input = 1.25 +output = 2.5 +cache_read = 0.2 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/xai/grok-4.20-beta-0309-non-reasoning.toml b/providers/edenai/models/xai/grok-4.20-beta-0309-non-reasoning.toml new file mode 100644 index 0000000000..5bc198e143 --- /dev/null +++ b/providers/edenai/models/xai/grok-4.20-beta-0309-non-reasoning.toml @@ -0,0 +1,22 @@ +name = "grok-4.20-beta-0309-non-reasoning" +description = "Grok model for agentic tool use, reasoning, coding, and live assistance" +release_date = "2026-03-19" +last_updated = "2026-08-01" +attachment = true +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 2 +output = 6 +cache_read = 0.2 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["image", "text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.20-beta-0309-reasoning.toml b/providers/edenai/models/xai/grok-4.20-beta-0309-reasoning.toml new file mode 100644 index 0000000000..d27c6073bc --- /dev/null +++ b/providers/edenai/models/xai/grok-4.20-beta-0309-reasoning.toml @@ -0,0 +1,23 @@ +name = "grok-4.20-beta-0309-reasoning" +description = "Grok model for agentic tool use, reasoning, coding, and live assistance" +release_date = "2026-03-19" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 2 +output = 6 +cache_read = 0.2 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["image", "text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.20.toml b/providers/edenai/models/xai/grok-4.20.toml new file mode 100644 index 0000000000..8348b3aa15 --- /dev/null +++ b/providers/edenai/models/xai/grok-4.20.toml @@ -0,0 +1,23 @@ +name = "grok-4.20" +description = "Grok 4.20 is a reasoning model from xAI with industry-leading speed and agentic tool calling capabilities. It combines the lowest hallucination rate on the market with strict prompt adherance, delivering..." +release_date = "2026-03-31" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.25 +output = 2.5 +cache_read = 0.2 + +[limit] +context = 2_000_000 +output = 2_000_000 + +[modalities] +input = ["text", "image", "pdf"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.3-latest.toml b/providers/edenai/models/xai/grok-4.3-latest.toml new file mode 100644 index 0000000000..5491ad260b --- /dev/null +++ b/providers/edenai/models/xai/grok-4.3-latest.toml @@ -0,0 +1,23 @@ +name = "grok-4.3-latest" +description = "Grok model for agentic tool use, reasoning, coding, and live assistance" +release_date = "2026-05-07" +last_updated = "2026-08-01" +attachment = true +reasoning = true +tool_call = true +structured_output = true +open_weights = false +reasoning_options = [] + +[cost] +input = 1.25 +output = 2.5 +cache_read = 0.2 + +[limit] +context = 1_000_000 +output = 1_000_000 + +[modalities] +input = ["image", "text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.3.toml b/providers/edenai/models/xai/grok-4.3.toml new file mode 100644 index 0000000000..641de3eeb6 --- /dev/null +++ b/providers/edenai/models/xai/grok-4.3.toml @@ -0,0 +1,12 @@ +base_model = "xai/grok-4.3" +release_date = "2026-04-30" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1.25 +output = 2.5 +cache_read = 0.2 + +[limit] +output = 1_000_000 diff --git a/providers/edenai/models/xai/grok-4.5.toml b/providers/edenai/models/xai/grok-4.5.toml new file mode 100644 index 0000000000..c05a3d8385 --- /dev/null +++ b/providers/edenai/models/xai/grok-4.5.toml @@ -0,0 +1,11 @@ +base_model = "xai/grok-4.5" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 2 +output = 6 +cache_read = 0.3 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/xai/grok-4.toml b/providers/edenai/models/xai/grok-4.toml new file mode 100644 index 0000000000..f2462d6cc3 --- /dev/null +++ b/providers/edenai/models/xai/grok-4.toml @@ -0,0 +1,21 @@ +name = "grok-4" +description = "Grok 4 is xAI's latest reasoning model with a 256k context window. It supports parallel tool calling, structured outputs, and both image and text inputs. Note that reasoning is not..." +release_date = "2025-07-09" +last_updated = "2026-08-01" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3 +output = 15 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-build-0.1.toml b/providers/edenai/models/xai/grok-build-0.1.toml new file mode 100644 index 0000000000..0b62508a96 --- /dev/null +++ b/providers/edenai/models/xai/grok-build-0.1.toml @@ -0,0 +1,9 @@ +base_model = "xai/grok-build-0.1" +release_date = "2026-05-20" +last_updated = "2026-08-01" +reasoning_options = [] + +[cost] +input = 1 +output = 2 +cache_read = 0.2 diff --git a/providers/edenai/models/xai/grok-code-fast-1-0825.toml b/providers/edenai/models/xai/grok-code-fast-1-0825.toml new file mode 100644 index 0000000000..ff478bb14b --- /dev/null +++ b/providers/edenai/models/xai/grok-code-fast-1-0825.toml @@ -0,0 +1,23 @@ +name = "grok-code-fast-1-0825" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 1.5 +cache_read = 0.02 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-code-fast-1.toml b/providers/edenai/models/xai/grok-code-fast-1.toml new file mode 100644 index 0000000000..043d5f4e91 --- /dev/null +++ b/providers/edenai/models/xai/grok-code-fast-1.toml @@ -0,0 +1,23 @@ +name = "grok-code-fast-1" +description = "Grok Code Fast 1 is a speedy and economical reasoning model that excels at agentic coding. With reasoning traces visible in the response, developers can steer Grok Code for high-quality..." +release_date = "2025-08-26" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 1.5 +cache_read = 0.02 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/edenai/models/xai/grok-code-fast.toml b/providers/edenai/models/xai/grok-code-fast.toml new file mode 100644 index 0000000000..13a270234c --- /dev/null +++ b/providers/edenai/models/xai/grok-code-fast.toml @@ -0,0 +1,23 @@ +name = "grok-code-fast" +description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" +release_date = "2026-01-06" +last_updated = "2026-08-01" +attachment = false +reasoning = true +tool_call = true +structured_output = false +open_weights = false +reasoning_options = [] + +[cost] +input = 0.2 +output = 1.5 +cache_read = 0.02 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] From 079219474030b762a00f193a5b3810cb776a52ad Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 14:01:51 +0100 Subject: [PATCH 04/14] fix(edenai): use currentColor in logo Replace hardcoded #040F31 and #fff fills with a mask-based approach so the logo adapts to light/dark themes per AGENTS.md logo guidelines. The previous @media (prefers-color-scheme) rule did not work when the logo is served as an asset. --- providers/edenai/logo.svg | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/providers/edenai/logo.svg b/providers/edenai/logo.svg index b45aacf1bb..6582826819 100644 --- a/providers/edenai/logo.svg +++ b/providers/edenai/logo.svg @@ -1,15 +1,10 @@ - - - - - - - - + + + + + + + + + From e33e9e3fdaf8d91d1fb18ca8527c307b8f7c424f Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 14:28:42 +0100 Subject: [PATCH 05/14] fix(edenai): stop fabricating output limit and open_weights --- packages/core/src/sync/providers/edenai.ts | 18 ++++++------------ .../models/anthropic/claude-fable-5.toml | 3 --- .../anthropic/claude-haiku-4-5-20251001.toml | 3 --- .../models/anthropic/claude-haiku-4-5.toml | 3 --- .../anthropic/claude-opus-4-1-20250805.toml | 3 --- .../models/anthropic/claude-opus-4-1.toml | 3 --- .../anthropic/claude-opus-4-5-20251101.toml | 3 --- .../models/anthropic/claude-opus-4-5.toml | 3 --- .../models/anthropic/claude-opus-4-6.toml | 3 --- .../models/anthropic/claude-opus-4-7.toml | 3 --- .../models/anthropic/claude-opus-4-8.toml | 3 --- .../edenai/models/anthropic/claude-opus-5.toml | 3 --- .../anthropic/claude-sonnet-4-5-20250929.toml | 1 - .../models/anthropic/claude-sonnet-4-6.toml | 3 --- .../models/anthropic/claude-sonnet-5.toml | 3 --- providers/edenai/models/azure/gpt-4o-mini.toml | 3 --- .../edenai/models/azure/gpt-4o-mini@us.toml | 3 --- providers/edenai/models/azure/gpt-4o.toml | 3 --- providers/edenai/models/azure/gpt-4o@eu.toml | 3 --- providers/edenai/models/azure/gpt-4o@us.toml | 3 --- providers/edenai/models/azure/gpt-5-codex.toml | 1 - providers/edenai/models/azure/gpt-5-mini.toml | 1 - .../edenai/models/azure/gpt-5-mini@eu.toml | 1 - .../edenai/models/azure/gpt-5-mini@us.toml | 1 - providers/edenai/models/azure/gpt-5-nano.toml | 1 - .../edenai/models/azure/gpt-5-nano@eu.toml | 1 - .../edenai/models/azure/gpt-5-nano@us.toml | 1 - .../edenai/models/azure/gpt-5.1-codex-max.toml | 1 - .../models/azure/gpt-5.1-codex-mini.toml | 1 - .../edenai/models/azure/gpt-5.1-codex.toml | 1 - providers/edenai/models/azure/gpt-5.1.toml | 1 - providers/edenai/models/azure/gpt-5.1@eu.toml | 1 - providers/edenai/models/azure/gpt-5.1@us.toml | 1 - .../edenai/models/azure/gpt-5.2-codex.toml | 1 - providers/edenai/models/azure/gpt-5.2.toml | 1 - providers/edenai/models/azure/gpt-5.2@us.toml | 1 - .../edenai/models/azure/gpt-5.3-codex.toml | 1 - .../edenai/models/azure/gpt-5.4-mini.toml | 1 - .../edenai/models/azure/gpt-5.4-mini@eu.toml | 1 - .../edenai/models/azure/gpt-5.4-mini@us.toml | 1 - .../edenai/models/azure/gpt-5.4-nano.toml | 1 - .../edenai/models/azure/gpt-5.4-nano@us.toml | 1 - providers/edenai/models/azure/gpt-5.4-pro.toml | 3 --- providers/edenai/models/azure/gpt-5.4.toml | 3 --- providers/edenai/models/azure/gpt-5.4@eu.toml | 3 --- providers/edenai/models/azure/gpt-5.4@us.toml | 3 --- providers/edenai/models/azure/gpt-5.5.toml | 3 --- providers/edenai/models/azure/gpt-5.5@eu.toml | 3 --- providers/edenai/models/azure/gpt-5.5@us.toml | 3 --- .../edenai/models/azure/gpt-5.6-luna.toml | 3 --- .../edenai/models/azure/gpt-5.6-luna@eu.toml | 3 --- .../edenai/models/azure/gpt-5.6-luna@us.toml | 3 --- providers/edenai/models/azure/gpt-5.6-sol.toml | 3 --- .../edenai/models/azure/gpt-5.6-sol@eu.toml | 3 --- .../edenai/models/azure/gpt-5.6-sol@us.toml | 3 --- .../edenai/models/azure/gpt-5.6-terra.toml | 3 --- .../edenai/models/azure/gpt-5.6-terra@eu.toml | 3 --- .../edenai/models/azure/gpt-5.6-terra@us.toml | 3 --- providers/edenai/models/azure/gpt-5.toml | 1 - providers/edenai/models/azure/gpt-5@eu.toml | 1 - providers/edenai/models/azure/gpt-5@us.toml | 1 - providers/edenai/models/azure/o3.toml | 3 --- providers/edenai/models/azure/o3@eu.toml | 3 --- providers/edenai/models/azure/o3@us.toml | 3 --- .../models/bytedance/seed-1-6-250915.toml | 2 +- .../bytedance/seed-1-6-flash-250715.toml | 2 +- .../models/bytedance/seed-2-0-lite-260228.toml | 2 +- .../models/bytedance/seed-2-0-lite-260428.toml | 2 +- .../models/bytedance/seed-2-0-mini-260215.toml | 2 +- .../models/bytedance/seed-2-0-mini-260428.toml | 2 +- .../edenai/models/cerebras/gpt-oss-120b.toml | 3 --- .../models/cohere/command-a-03-2025.toml | 1 - .../models/cohere/command-r-08-2024.toml | 3 --- .../models/cohere/command-r-plus-08-2024.toml | 3 --- .../models/cohere/command-r7b-12-2024.toml | 1 - .../models/deepinfra/Qwen/Qwen3-235B-A22B.toml | 1 - .../models/deepinfra/Qwen/Qwen3-32B.toml | 1 - .../Qwen/Qwen3-Coder-480B-A35B-Instruct.toml | 3 --- .../models/deepinfra/Qwen/Qwen3-Max.toml | 1 - .../Qwen/Qwen3-Next-80B-A3B-Instruct.toml | 1 - .../deepinfra/Qwen/Qwen3.5-122B-A10B.toml | 3 --- .../models/deepinfra/Qwen/Qwen3.5-27B.toml | 3 --- .../models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml | 3 --- .../deepinfra/Qwen/Qwen3.5-397B-A17B.toml | 3 --- .../models/deepinfra/Qwen/Qwen3.5-9B.toml | 3 --- .../models/deepinfra/Qwen/Qwen3.6-27B.toml | 3 --- .../models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml | 3 --- .../models/deepinfra/Qwen/Qwen3.7-Max.toml | 1 - .../deepinfra/anthropic/claude-haiku-4-5.toml | 3 --- .../deepinfra/anthropic/claude-opus-4-7.toml | 3 --- .../deepinfra/anthropic/claude-opus-5.toml | 3 --- .../deepinfra/anthropic/claude-sonnet-4-6.toml | 3 --- .../deepinfra/google/gemini-2.5-flash.toml | 1 - .../deepinfra/google/gemini-2.5-pro.toml | 1 - .../google/gemini-3.1-flash-lite.toml | 1 - .../deepinfra/google/gemini-3.5-flash.toml | 1 - .../deepinfra/google/gemma-4-26B-A4B-it.toml | 3 --- .../deepinfra/google/gemma-4-31B-it.toml | 3 --- .../deepinfra/google/gemma-4-E4B-it.toml | 3 --- .../meta-llama/Llama-3.3-70B-Instruct.toml | 1 - .../deepinfra/nemotron-3-ultra-550b-a55b.toml | 1 - .../Llama-3.1-Nemotron-70B-Instruct.toml | 1 - ...Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml | 1 - .../models/deepinfra/openai/gpt-oss-120b.toml | 3 --- .../models/deepinfra/openai/gpt-oss-20b.toml | 3 --- .../deepinfra/stepfun-ai/Step-3.5-Flash.toml | 1 - .../deepinfra/stepfun-ai/Step-3.7-Flash.toml | 1 - .../edenai/models/deepinfra/tencent/Hy3.toml | 1 - .../deepinfra/thinkingmachines/Inkling.toml | 1 - .../models/deepinfra/zai-org/GLM-4.5.toml | 3 --- .../models/deepinfra/zai-org/GLM-4.6.toml | 1 - .../deepinfra/zai-org/GLM-4.7-Flash.toml | 1 - .../models/deepinfra/zai-org/GLM-4.7.toml | 1 - .../models/deepinfra/zai-org/GLM-5.1.toml | 1 - .../models/deepinfra/zai-org/GLM-5.2.toml | 1 - .../edenai/models/deepinfra/zai-org/GLM-5.toml | 1 - .../edenai/models/deepseek/deepseek-chat.toml | 2 +- .../models/deepseek/deepseek-reasoner.toml | 2 +- .../models/deepseek/deepseek-v4-flash.toml | 2 +- .../models/deepseek/deepseek-v4-pro.toml | 2 +- .../models/fireworks_ai/deepseek-v4-flash.toml | 1 - .../models/fireworks_ai/deepseek-v4-pro.toml | 1 - .../models/fireworks_ai/gpt-oss-120b.toml | 3 --- .../models/fireworks_ai/gpt-oss-20b.toml | 3 --- .../edenai/models/fireworks_ai/kimi-k3.toml | 3 --- .../models/google/gemini-2.5-flash-lite.toml | 3 --- .../edenai/models/google/gemini-2.5-flash.toml | 3 --- .../edenai/models/google/gemini-2.5-pro.toml | 3 --- .../models/google/gemini-3-flash-preview.toml | 3 --- .../google/gemini-3-pro-image-preview.toml | 3 --- .../models/google/gemini-3-pro-image.toml | 3 --- .../models/google/gemini-3.1-flash-image.toml | 1 - .../google/gemini-3.1-flash-lite-image.toml | 3 --- .../google/gemini-3.1-flash-lite-preview.toml | 3 --- .../models/google/gemini-3.1-flash-lite.toml | 3 --- .../gemini-3.1-pro-preview-customtools.toml | 3 --- .../models/google/gemini-3.1-pro-preview.toml | 3 --- .../models/google/gemini-3.5-flash-lite.toml | 3 --- .../edenai/models/google/gemini-3.5-flash.toml | 3 --- .../edenai/models/google/gemini-3.6-flash.toml | 3 --- .../models/google/gemma-4-26b-a4b-it.toml | 3 --- .../edenai/models/google/gemma-4-31b-it.toml | 3 --- .../models/groq/openai/gpt-oss-120b.toml | 3 --- .../edenai/models/groq/openai/gpt-oss-20b.toml | 3 --- .../edenai/models/groq/qwen/qwen3.6-27b.toml | 1 - .../models/lilac/google/gemma-4-31b-it.toml | 3 --- .../edenai/models/lilac/zai-org/glm-5.2.toml | 1 - providers/edenai/models/microsoft/gpt-4.toml | 1 - .../edenai/models/microsoft/gpt-4o-mini.toml | 3 --- providers/edenai/models/microsoft/gpt-4o.toml | 3 --- providers/edenai/models/microsoft/o3-mini.toml | 3 --- .../edenai/models/minimax/MiniMax-M2.1.toml | 4 +--- .../edenai/models/minimax/MiniMax-M2.5.toml | 4 +--- .../edenai/models/minimax/MiniMax-M2.7.toml | 4 +--- .../edenai/models/minimax/MiniMax-M2.toml | 2 +- .../edenai/models/minimax/MiniMax-M3.toml | 2 +- .../edenai/models/minimax/minimax-m1.toml | 2 +- .../edenai/models/mistral/codestral-2405.toml | 2 +- .../edenai/models/mistral/codestral-2508.toml | 2 +- .../models/mistral/codestral-latest.toml | 4 +--- .../edenai/models/mistral/devstral-2512.toml | 1 + .../edenai/models/mistral/devstral-latest.toml | 2 +- .../models/mistral/devstral-medium-latest.toml | 1 + .../models/mistral/devstral-small-latest.toml | 2 +- .../mistral/labs-devstral-small-2512.toml | 2 +- .../models/mistral/magistral-medium-2509.toml | 2 +- .../mistral/magistral-medium-latest.toml | 2 -- .../models/mistral/magistral-small-latest.toml | 2 +- .../models/mistral/ministral-14b-2512.toml | 2 +- .../models/mistral/ministral-3b-2512.toml | 2 +- .../models/mistral/ministral-8b-2512.toml | 2 +- .../models/mistral/ministral-8b-latest.toml | 2 +- .../models/mistral/mistral-large-2402.toml | 2 +- .../models/mistral/mistral-large-2407.toml | 2 +- .../models/mistral/mistral-large-2512.toml | 1 + .../models/mistral/mistral-large-latest.toml | 1 + .../models/mistral/mistral-medium-2312.toml | 2 +- .../models/mistral/mistral-medium-2505.toml | 1 - .../models/mistral/mistral-medium-2508.toml | 2 +- .../models/mistral/mistral-medium-2604.toml | 1 + .../models/mistral/mistral-medium-3-5.toml | 2 +- .../models/mistral/mistral-medium-3.5.toml | 2 +- .../models/mistral/mistral-medium-3.toml | 2 +- .../models/mistral/mistral-medium-latest.toml | 1 + .../edenai/models/mistral/mistral-medium.toml | 2 +- .../models/mistral/mistral-small-2603.toml | 2 +- .../models/mistral/mistral-small-latest.toml | 2 +- .../edenai/models/mistral/mistral-small.toml | 2 +- .../models/mistral/mistral-tiny-latest.toml | 2 +- .../edenai/models/mistral/mistral-tiny.toml | 2 +- .../edenai/models/mistral/open-mistral-7b.toml | 2 +- .../models/mistral/open-mistral-nemo-2407.toml | 2 +- .../models/mistral/open-mistral-nemo.toml | 2 +- .../models/mistral/open-mixtral-8x22b.toml | 2 +- .../models/mistral/open-mixtral-8x7b.toml | 2 +- .../models/mistral/pixtral-12b-2409.toml | 2 +- .../edenai/models/moonshot/kimi-k2.6.toml | 1 + .../edenai/models/moonshot/kimi-k2.7-code.toml | 1 + providers/edenai/models/moonshot/kimi-k3.toml | 4 +--- .../edenai/models/nebius/Qwen/Qwen3-32B.toml | 1 - .../Qwen/Qwen3-Next-80B-A3B-Thinking.toml | 1 - .../models/nebius/Qwen/Qwen3.5-397B-A17B.toml | 3 --- .../meta-llama/Llama-3.3-70B-Instruct.toml | 1 - .../nebius/moonshotai/Kimi-K2.7-Code.toml | 1 - .../models/nebius/moonshotai/Kimi-K3.toml | 3 --- .../nvidia/Nemotron-3-Ultra-550b-a55b.toml | 1 - .../models/nebius/openai/gpt-oss-120b.toml | 3 --- .../edenai/models/nebius/zai-org/GLM-5.1.toml | 1 - .../edenai/models/openai/gpt-3.5-turbo.toml | 3 --- .../edenai/models/openai/gpt-4-turbo.toml | 3 --- .../edenai/models/openai/gpt-4.1-mini.toml | 3 --- .../edenai/models/openai/gpt-4.1-nano.toml | 3 --- providers/edenai/models/openai/gpt-4.1.toml | 3 --- providers/edenai/models/openai/gpt-4.toml | 1 - .../models/openai/gpt-4o-2024-08-06.toml | 3 --- .../models/openai/gpt-4o-2024-11-20.toml | 3 --- .../edenai/models/openai/gpt-4o-mini.toml | 3 --- providers/edenai/models/openai/gpt-4o.toml | 3 --- providers/edenai/models/openai/gpt-5-mini.toml | 3 --- providers/edenai/models/openai/gpt-5-nano.toml | 3 --- providers/edenai/models/openai/gpt-5-pro.toml | 3 --- providers/edenai/models/openai/gpt-5.1.toml | 3 --- .../models/openai/gpt-5.2-chat-latest.toml | 3 --- .../edenai/models/openai/gpt-5.2-pro.toml | 3 --- providers/edenai/models/openai/gpt-5.2.toml | 3 --- .../models/openai/gpt-5.3-chat-latest.toml | 3 --- .../edenai/models/openai/gpt-5.3-codex.toml | 3 --- .../edenai/models/openai/gpt-5.4-mini.toml | 3 --- .../edenai/models/openai/gpt-5.4-nano.toml | 3 --- .../edenai/models/openai/gpt-5.4-pro.toml | 3 --- providers/edenai/models/openai/gpt-5.4.toml | 3 --- .../edenai/models/openai/gpt-5.5-pro.toml | 3 --- providers/edenai/models/openai/gpt-5.5.toml | 3 --- .../edenai/models/openai/gpt-5.6-luna.toml | 3 --- .../edenai/models/openai/gpt-5.6-sol.toml | 3 --- .../edenai/models/openai/gpt-5.6-terra.toml | 3 --- providers/edenai/models/openai/gpt-5.toml | 3 --- providers/edenai/models/openai/o1-pro.toml | 3 --- providers/edenai/models/openai/o1.toml | 3 --- .../edenai/models/openai/o3-deep-research.toml | 3 --- providers/edenai/models/openai/o3-mini.toml | 3 --- providers/edenai/models/openai/o3-pro.toml | 3 --- providers/edenai/models/openai/o3.toml | 3 --- .../models/openai/o4-mini-deep-research.toml | 3 --- providers/edenai/models/openai/o4-mini.toml | 3 --- .../edenai/models/ovhcloud/Qwen3-32B.toml | 1 - .../ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml | 3 --- .../models/ovhcloud/Qwen3.5-397B-A17B.toml | 3 --- .../edenai/models/ovhcloud/Qwen3.5-9B.toml | 3 --- .../edenai/models/ovhcloud/Qwen3.6-27B.toml | 3 --- .../edenai/models/ovhcloud/gpt-oss-120b.toml | 3 --- .../edenai/models/ovhcloud/gpt-oss-20b.toml | 3 --- .../edenai/models/perplexityai/sonar-pro.toml | 3 --- .../perplexityai/sonar-reasoning-pro.toml | 3 --- .../edenai/models/perplexityai/sonar.toml | 1 - .../edenai/models/qwen/deepseek-v3.2.toml | 2 +- .../edenai/models/qwen/deepseek-v4-flash.toml | 4 +--- .../edenai/models/qwen/deepseek-v4-pro.toml | 4 +--- providers/edenai/models/qwen/glm-5.1.toml | 2 +- .../models/qwen/glm-5.2-fast-preview.toml | 2 +- providers/edenai/models/qwen/glm-5.2.toml | 2 +- .../edenai/models/qwen/kimi-k2.7-code.toml | 1 + .../models/qwen/qwen-flash-2025-07-28.toml | 2 +- .../models/qwen/qwen-flash-character.toml | 2 +- providers/edenai/models/qwen/qwen-flash.toml | 4 ---- providers/edenai/models/qwen/qwen-max.toml | 4 ---- .../edenai/models/qwen/qwen-mt-flash.toml | 2 +- providers/edenai/models/qwen/qwen-mt-lite.toml | 2 +- providers/edenai/models/qwen/qwen-mt-plus.toml | 2 +- .../edenai/models/qwen/qwen-mt-turbo.toml | 2 +- .../models/qwen/qwen-plus-2025-01-25.toml | 2 +- .../models/qwen/qwen-plus-2025-04-28.toml | 2 +- .../models/qwen/qwen-plus-2025-07-14.toml | 2 +- .../models/qwen/qwen-plus-2025-07-28.toml | 2 +- .../models/qwen/qwen-plus-2025-09-11.toml | 2 +- .../models/qwen/qwen-plus-2025-12-01.toml | 2 +- .../models/qwen/qwen-plus-character-ja.toml | 2 +- .../models/qwen/qwen-plus-character.toml | 2 +- .../edenai/models/qwen/qwen-plus-latest.toml | 2 +- providers/edenai/models/qwen/qwen-plus.toml | 4 ---- providers/edenai/models/qwen/qwen-turbo.toml | 2 -- providers/edenai/models/qwen/qwen-vl-max.toml | 4 ---- providers/edenai/models/qwen/qwen-vl-plus.toml | 4 ---- providers/edenai/models/qwen/qwen3-14b.toml | 2 +- .../qwen/qwen3-235b-a22b-instruct-2507.toml | 2 +- .../qwen/qwen3-235b-a22b-thinking-2507.toml | 2 +- .../edenai/models/qwen/qwen3-235b-a22b.toml | 4 +--- .../qwen/qwen3-30b-a3b-instruct-2507.toml | 2 +- .../qwen/qwen3-30b-a3b-thinking-2507.toml | 2 +- .../edenai/models/qwen/qwen3-30b-a3b.toml | 2 +- providers/edenai/models/qwen/qwen3-32b.toml | 4 +--- providers/edenai/models/qwen/qwen3-8b.toml | 2 +- .../qwen/qwen3-coder-30b-a3b-instruct.toml | 4 +--- .../qwen/qwen3-coder-480b-a35b-instruct.toml | 4 +--- .../qwen/qwen3-coder-flash-2025-07-28.toml | 2 +- .../edenai/models/qwen/qwen3-coder-flash.toml | 4 ---- .../edenai/models/qwen/qwen3-coder-next.toml | 2 +- .../qwen/qwen3-coder-plus-2025-07-22.toml | 2 +- .../qwen/qwen3-coder-plus-2025-09-23.toml | 2 +- .../edenai/models/qwen/qwen3-coder-plus.toml | 2 -- .../models/qwen/qwen3-max-2025-09-23.toml | 2 +- .../models/qwen/qwen3-max-2026-01-23.toml | 2 +- .../edenai/models/qwen/qwen3-max-preview.toml | 2 +- providers/edenai/models/qwen/qwen3-max.toml | 4 ---- .../qwen/qwen3-next-80b-a3b-instruct.toml | 4 +--- .../qwen/qwen3-next-80b-a3b-thinking.toml | 4 +--- .../qwen/qwen3-vl-235b-a22b-instruct.toml | 2 +- .../qwen/qwen3-vl-235b-a22b-thinking.toml | 2 +- .../models/qwen/qwen3-vl-30b-a3b-instruct.toml | 2 +- .../models/qwen/qwen3-vl-30b-a3b-thinking.toml | 2 +- .../models/qwen/qwen3-vl-32b-instruct.toml | 2 +- .../models/qwen/qwen3-vl-32b-thinking.toml | 2 +- .../models/qwen/qwen3-vl-8b-instruct.toml | 2 +- .../models/qwen/qwen3-vl-8b-thinking.toml | 2 +- .../models/qwen/qwen3-vl-flash-2025-10-15.toml | 2 +- .../models/qwen/qwen3-vl-flash-2026-01-22.toml | 2 +- .../edenai/models/qwen/qwen3-vl-flash.toml | 2 +- .../models/qwen/qwen3-vl-plus-2025-09-23.toml | 2 +- .../models/qwen/qwen3-vl-plus-2025-12-19.toml | 2 +- .../edenai/models/qwen/qwen3-vl-plus.toml | 4 ---- .../edenai/models/qwen/qwen3.5-122b-a10b.toml | 4 +--- providers/edenai/models/qwen/qwen3.5-27b.toml | 4 +--- .../edenai/models/qwen/qwen3.5-35b-a3b.toml | 4 +--- .../edenai/models/qwen/qwen3.5-397b-a17b.toml | 4 +--- .../models/qwen/qwen3.5-flash-2026-02-23.toml | 2 +- .../edenai/models/qwen/qwen3.5-flash.toml | 2 +- .../models/qwen/qwen3.5-plus-2026-02-15.toml | 2 +- .../models/qwen/qwen3.5-plus-2026-04-20.toml | 2 +- providers/edenai/models/qwen/qwen3.5-plus.toml | 4 ---- providers/edenai/models/qwen/qwen3.6-27b.toml | 4 +--- .../edenai/models/qwen/qwen3.6-35b-a3b.toml | 4 +--- .../models/qwen/qwen3.6-flash-2026-04-16.toml | 2 +- .../edenai/models/qwen/qwen3.6-flash.toml | 4 ---- .../models/qwen/qwen3.6-max-preview.toml | 4 ---- .../models/qwen/qwen3.6-plus-2026-04-02.toml | 2 +- providers/edenai/models/qwen/qwen3.6-plus.toml | 4 ---- .../models/qwen/qwen3.7-flash-2026-07-15.toml | 2 +- .../edenai/models/qwen/qwen3.7-flash.toml | 2 +- .../models/qwen/qwen3.7-max-2026-05-17.toml | 2 +- .../models/qwen/qwen3.7-max-2026-05-20.toml | 2 +- .../models/qwen/qwen3.7-max-2026-06-08.toml | 2 +- .../models/qwen/qwen3.7-max-preview.toml | 2 +- providers/edenai/models/qwen/qwen3.7-max.toml | 4 ---- .../models/qwen/qwen3.7-plus-2026-05-26.toml | 2 +- providers/edenai/models/qwen/qwen3.7-plus.toml | 4 ---- providers/edenai/models/qwen/qwq-plus.toml | 4 ---- .../models/scaleway/gemma-4-26b-a4b-it.toml | 1 - providers/edenai/models/scaleway/glm-5.2.toml | 1 - .../edenai/models/scaleway/gpt-oss-120b.toml | 1 - .../scaleway/llama-3.3-70b-instruct.toml | 3 --- .../scaleway/qwen3-coder-30b-a3b-instruct.toml | 1 - .../models/scaleway/qwen3.5-397b-a17b.toml | 1 - .../models/scaleway/qwen3.6-35b-a3b.toml | 1 - .../models/together_ai/Qwen/Qwen3.5-9B.toml | 3 --- .../together_ai/google/gemma-4-31B-it.toml | 3 --- .../models/together_ai/moonshotai/Kimi-K3.toml | 1 - .../nvidia/nemotron-3-ultra-550b-a55b.toml | 1 - .../together_ai/openai/gpt-oss-120b.toml | 3 --- .../models/together_ai/openai/gpt-oss-20b.toml | 3 --- .../together_ai/thinkingmachines/Inkling.toml | 1 - .../models/together_ai/zai-org/GLM-5.2.toml | 1 - .../edenai/models/vertex/claude-fable-5.toml | 3 --- .../models/vertex/claude-fable-5@eu.toml | 3 --- .../edenai/models/vertex/claude-haiku-4-5.toml | 3 --- .../edenai/models/vertex/claude-opus-4-1.toml | 3 --- .../edenai/models/vertex/claude-opus-4-5.toml | 3 --- .../edenai/models/vertex/claude-opus-4-6.toml | 3 --- .../edenai/models/vertex/claude-opus-4-7.toml | 3 --- .../models/vertex/claude-opus-4-7@eu.toml | 3 --- .../models/vertex/claude-opus-4-7@us.toml | 3 --- .../edenai/models/vertex/claude-opus-4-8.toml | 3 --- .../models/vertex/claude-opus-4-8@eu.toml | 3 --- .../models/vertex/claude-opus-4-8@us.toml | 3 --- .../models/vertex/claude-sonnet-4-5.toml | 1 - .../models/vertex/claude-sonnet-4-6.toml | 3 --- .../edenai/models/vertex/claude-sonnet-5.toml | 3 --- .../models/vertex/claude-sonnet-5@eu.toml | 3 --- .../models/vertex/claude-sonnet-5@us.toml | 3 --- .../models/vertex/gemini-2.5-flash-lite.toml | 3 --- .../edenai/models/vertex/gemini-2.5-flash.toml | 3 --- .../edenai/models/vertex/gemini-2.5-pro.toml | 3 --- .../models/vertex/gemini-3-flash-preview.toml | 3 --- .../models/vertex/gemini-3-pro-image.toml | 3 --- .../models/vertex/gemini-3.1-flash-image.toml | 3 --- .../vertex/gemini-3.1-flash-lite-image.toml | 3 --- .../models/vertex/gemini-3.1-pro-preview.toml | 3 --- .../models/vertex/gemini-3.5-flash-lite.toml | 3 --- .../vertex/gemini-3.5-flash-lite@eu.toml | 3 --- .../vertex/gemini-3.5-flash-lite@us.toml | 3 --- .../edenai/models/vertex/gemini-3.5-flash.toml | 3 --- .../models/vertex/gemini-3.5-flash@eu.toml | 3 --- .../models/vertex/gemini-3.5-flash@us.toml | 3 --- .../edenai/models/vertex/gemini-3.6-flash.toml | 3 --- .../xai/grok-4.20-0309-non-reasoning.toml | 1 - .../models/xai/grok-4.20-0309-reasoning.toml | 1 - providers/edenai/models/xai/grok-4.3.toml | 3 --- 396 files changed, 136 insertions(+), 818 deletions(-) diff --git a/packages/core/src/sync/providers/edenai.ts b/packages/core/src/sync/providers/edenai.ts index 22e0d146b8..5a586f5d21 100644 --- a/packages/core/src/sync/providers/edenai.ts +++ b/packages/core/src/sync/providers/edenai.ts @@ -33,15 +33,6 @@ const DIRECT_METADATA_PROVIDER: Record = { xai: "xai", }; -const OPEN_WEIGHT_OWNERS = new Set([ - "bytedance", - "deepseek", - "minimax", - "mistral", - "moonshot", - "qwen", -]); - const Pricing = z .object({ input_cost_per_token: z.number().optional(), @@ -251,13 +242,15 @@ export function buildEdenAIModel( caps.supports_function_calling === true || caps.supports_tool_choice === true; const structuredOutput = caps.supports_response_schema === true; const attachment = input.some((value) => value !== "text"); - const openWeights = - existing?.open_weights ?? OPEN_WEIGHT_OWNERS.has(model.owned_by); + const openWeights = existing?.open_weights ?? false; const context = model.context_length ?? 0; + // Eden's /v3/models does not return max output tokens. Leave output undefined + // for factored files so base_model inheritance provides the authoritative + // value; inline files fall back to `context` below to satisfy the schema. const limit = { context, input: existing?.limit?.input, - output: existing?.limit?.output ?? context, + output: existing?.limit?.output, }; const releaseDate = existing?.release_date ?? dateFromTimestamp(model.created) ?? today; @@ -318,6 +311,7 @@ export function buildEdenAIModel( description, family: existing?.family, ...values, + limit: { ...limit, output: limit.output ?? context }, provider: existing?.provider, experimental: existing?.experimental, } satisfies SyncedFullModel; diff --git a/providers/edenai/models/anthropic/claude-fable-5.toml b/providers/edenai/models/anthropic/claude-fable-5.toml index a04dce4701..3c739cb629 100644 --- a/providers/edenai/models/anthropic/claude-fable-5.toml +++ b/providers/edenai/models/anthropic/claude-fable-5.toml @@ -8,6 +8,3 @@ input = 10 output = 50 cache_read = 1 cache_write = 12.5 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml b/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml index 77c42b6cb6..dfcc839140 100644 --- a/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml +++ b/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml @@ -8,6 +8,3 @@ input = 1 output = 5 cache_read = 0.1 cache_write = 1.25 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-haiku-4-5.toml b/providers/edenai/models/anthropic/claude-haiku-4-5.toml index 202b0b2eed..06fca54354 100644 --- a/providers/edenai/models/anthropic/claude-haiku-4-5.toml +++ b/providers/edenai/models/anthropic/claude-haiku-4-5.toml @@ -8,6 +8,3 @@ input = 1 output = 5 cache_read = 0.1 cache_write = 1.25 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml b/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml index 9aa690d49c..3a7c2180a0 100644 --- a/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml +++ b/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml @@ -8,6 +8,3 @@ input = 15 output = 75 cache_read = 1.5 cache_write = 18.75 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-1.toml b/providers/edenai/models/anthropic/claude-opus-4-1.toml index 722c572402..7e99aedff4 100644 --- a/providers/edenai/models/anthropic/claude-opus-4-1.toml +++ b/providers/edenai/models/anthropic/claude-opus-4-1.toml @@ -8,6 +8,3 @@ input = 15 output = 75 cache_read = 1.5 cache_write = 18.75 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml b/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml index b726d91c89..f447f02f35 100644 --- a/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml +++ b/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml @@ -9,6 +9,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-5.toml b/providers/edenai/models/anthropic/claude-opus-4-5.toml index f27adb3add..5eb221cdaf 100644 --- a/providers/edenai/models/anthropic/claude-opus-4-5.toml +++ b/providers/edenai/models/anthropic/claude-opus-4-5.toml @@ -8,6 +8,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-6.toml b/providers/edenai/models/anthropic/claude-opus-4-6.toml index 5f37c18a17..46b6d8b7c5 100644 --- a/providers/edenai/models/anthropic/claude-opus-4-6.toml +++ b/providers/edenai/models/anthropic/claude-opus-4-6.toml @@ -9,6 +9,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-7.toml b/providers/edenai/models/anthropic/claude-opus-4-7.toml index 3cc4cc4ec8..549fc82d5c 100644 --- a/providers/edenai/models/anthropic/claude-opus-4-7.toml +++ b/providers/edenai/models/anthropic/claude-opus-4-7.toml @@ -8,6 +8,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-opus-4-8.toml b/providers/edenai/models/anthropic/claude-opus-4-8.toml index b37d330646..41d61ef245 100644 --- a/providers/edenai/models/anthropic/claude-opus-4-8.toml +++ b/providers/edenai/models/anthropic/claude-opus-4-8.toml @@ -9,6 +9,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-opus-5.toml b/providers/edenai/models/anthropic/claude-opus-5.toml index b4ef8c1574..05baf00504 100644 --- a/providers/edenai/models/anthropic/claude-opus-5.toml +++ b/providers/edenai/models/anthropic/claude-opus-5.toml @@ -8,6 +8,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml b/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml index 0d4ce1d1b6..de1d64712d 100644 --- a/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml +++ b/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml @@ -11,4 +11,3 @@ cache_write = 3.75 [limit] context = 1_000_000 -output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-sonnet-4-6.toml b/providers/edenai/models/anthropic/claude-sonnet-4-6.toml index 39343b225d..2a98900c73 100644 --- a/providers/edenai/models/anthropic/claude-sonnet-4-6.toml +++ b/providers/edenai/models/anthropic/claude-sonnet-4-6.toml @@ -8,6 +8,3 @@ input = 3 output = 15 cache_read = 0.3 cache_write = 3.75 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-sonnet-5.toml b/providers/edenai/models/anthropic/claude-sonnet-5.toml index 89be7fa2b7..a341529363 100644 --- a/providers/edenai/models/anthropic/claude-sonnet-5.toml +++ b/providers/edenai/models/anthropic/claude-sonnet-5.toml @@ -8,6 +8,3 @@ input = 2 output = 10 cache_read = 0.2 cache_write = 2.5 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/azure/gpt-4o-mini.toml b/providers/edenai/models/azure/gpt-4o-mini.toml index fece36e4fe..3c4111aad9 100644 --- a/providers/edenai/models/azure/gpt-4o-mini.toml +++ b/providers/edenai/models/azure/gpt-4o-mini.toml @@ -7,8 +7,5 @@ input = 0.1815 output = 0.726 cache_read = 0.0825 -[limit] -output = 128_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o-mini@us.toml b/providers/edenai/models/azure/gpt-4o-mini@us.toml index fece36e4fe..3c4111aad9 100644 --- a/providers/edenai/models/azure/gpt-4o-mini@us.toml +++ b/providers/edenai/models/azure/gpt-4o-mini@us.toml @@ -7,8 +7,5 @@ input = 0.1815 output = 0.726 cache_read = 0.0825 -[limit] -output = 128_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o.toml b/providers/edenai/models/azure/gpt-4o.toml index c382f10665..70a9ddd8c2 100644 --- a/providers/edenai/models/azure/gpt-4o.toml +++ b/providers/edenai/models/azure/gpt-4o.toml @@ -7,8 +7,5 @@ input = 2.5 output = 10 cache_read = 1.25 -[limit] -output = 128_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o@eu.toml b/providers/edenai/models/azure/gpt-4o@eu.toml index 17bb56c532..b13c24a041 100644 --- a/providers/edenai/models/azure/gpt-4o@eu.toml +++ b/providers/edenai/models/azure/gpt-4o@eu.toml @@ -7,8 +7,5 @@ input = 2.75 output = 11 cache_read = 1.375 -[limit] -output = 128_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o@us.toml b/providers/edenai/models/azure/gpt-4o@us.toml index 17bb56c532..b13c24a041 100644 --- a/providers/edenai/models/azure/gpt-4o@us.toml +++ b/providers/edenai/models/azure/gpt-4o@us.toml @@ -7,8 +7,5 @@ input = 2.75 output = 11 cache_read = 1.375 -[limit] -output = 128_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-5-codex.toml b/providers/edenai/models/azure/gpt-5-codex.toml index 25d0dc6e90..44bae23e4f 100644 --- a/providers/edenai/models/azure/gpt-5-codex.toml +++ b/providers/edenai/models/azure/gpt-5-codex.toml @@ -12,7 +12,6 @@ cache_read = 0.125 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-mini.toml b/providers/edenai/models/azure/gpt-5-mini.toml index e6d938809f..31fd1b12de 100644 --- a/providers/edenai/models/azure/gpt-5-mini.toml +++ b/providers/edenai/models/azure/gpt-5-mini.toml @@ -11,7 +11,6 @@ cache_read = 0.025 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-mini@eu.toml b/providers/edenai/models/azure/gpt-5-mini@eu.toml index 0f8598e9fb..6b3c778204 100644 --- a/providers/edenai/models/azure/gpt-5-mini@eu.toml +++ b/providers/edenai/models/azure/gpt-5-mini@eu.toml @@ -11,7 +11,6 @@ cache_read = 0.0275 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-mini@us.toml b/providers/edenai/models/azure/gpt-5-mini@us.toml index 0f8598e9fb..6b3c778204 100644 --- a/providers/edenai/models/azure/gpt-5-mini@us.toml +++ b/providers/edenai/models/azure/gpt-5-mini@us.toml @@ -11,7 +11,6 @@ cache_read = 0.0275 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-nano.toml b/providers/edenai/models/azure/gpt-5-nano.toml index 330db93e51..1232a15cfe 100644 --- a/providers/edenai/models/azure/gpt-5-nano.toml +++ b/providers/edenai/models/azure/gpt-5-nano.toml @@ -11,7 +11,6 @@ cache_read = 0.005 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-nano@eu.toml b/providers/edenai/models/azure/gpt-5-nano@eu.toml index 0c1f2e8ab0..6fa04eb446 100644 --- a/providers/edenai/models/azure/gpt-5-nano@eu.toml +++ b/providers/edenai/models/azure/gpt-5-nano@eu.toml @@ -11,7 +11,6 @@ cache_read = 0.0055 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-nano@us.toml b/providers/edenai/models/azure/gpt-5-nano@us.toml index 0c1f2e8ab0..6fa04eb446 100644 --- a/providers/edenai/models/azure/gpt-5-nano@us.toml +++ b/providers/edenai/models/azure/gpt-5-nano@us.toml @@ -11,7 +11,6 @@ cache_read = 0.0055 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1-codex-max.toml b/providers/edenai/models/azure/gpt-5.1-codex-max.toml index c4b5fedf14..1d8a175454 100644 --- a/providers/edenai/models/azure/gpt-5.1-codex-max.toml +++ b/providers/edenai/models/azure/gpt-5.1-codex-max.toml @@ -11,7 +11,6 @@ cache_read = 0.125 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1-codex-mini.toml b/providers/edenai/models/azure/gpt-5.1-codex-mini.toml index 234186d29c..e8526f4947 100644 --- a/providers/edenai/models/azure/gpt-5.1-codex-mini.toml +++ b/providers/edenai/models/azure/gpt-5.1-codex-mini.toml @@ -11,7 +11,6 @@ cache_read = 0.025 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1-codex.toml b/providers/edenai/models/azure/gpt-5.1-codex.toml index f18f868bf8..8fb7d5962d 100644 --- a/providers/edenai/models/azure/gpt-5.1-codex.toml +++ b/providers/edenai/models/azure/gpt-5.1-codex.toml @@ -11,7 +11,6 @@ cache_read = 0.125 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1.toml b/providers/edenai/models/azure/gpt-5.1.toml index 0c67ba8a08..e70d6304e3 100644 --- a/providers/edenai/models/azure/gpt-5.1.toml +++ b/providers/edenai/models/azure/gpt-5.1.toml @@ -11,7 +11,6 @@ cache_read = 0.125 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1@eu.toml b/providers/edenai/models/azure/gpt-5.1@eu.toml index 5e57f87397..3ae0fa9415 100644 --- a/providers/edenai/models/azure/gpt-5.1@eu.toml +++ b/providers/edenai/models/azure/gpt-5.1@eu.toml @@ -11,7 +11,6 @@ cache_read = 0.1375 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1@us.toml b/providers/edenai/models/azure/gpt-5.1@us.toml index 5e57f87397..3ae0fa9415 100644 --- a/providers/edenai/models/azure/gpt-5.1@us.toml +++ b/providers/edenai/models/azure/gpt-5.1@us.toml @@ -11,7 +11,6 @@ cache_read = 0.1375 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.2-codex.toml b/providers/edenai/models/azure/gpt-5.2-codex.toml index 840e1425e7..58b8464245 100644 --- a/providers/edenai/models/azure/gpt-5.2-codex.toml +++ b/providers/edenai/models/azure/gpt-5.2-codex.toml @@ -11,4 +11,3 @@ cache_read = 0.175 [limit] context = 272_000 -output = 272_000 diff --git a/providers/edenai/models/azure/gpt-5.2.toml b/providers/edenai/models/azure/gpt-5.2.toml index fd3c505db1..22c4da71db 100644 --- a/providers/edenai/models/azure/gpt-5.2.toml +++ b/providers/edenai/models/azure/gpt-5.2.toml @@ -11,7 +11,6 @@ cache_read = 0.175 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.2@us.toml b/providers/edenai/models/azure/gpt-5.2@us.toml index 389a8f4bf4..fc1437e245 100644 --- a/providers/edenai/models/azure/gpt-5.2@us.toml +++ b/providers/edenai/models/azure/gpt-5.2@us.toml @@ -11,7 +11,6 @@ cache_read = 0.1925 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.3-codex.toml b/providers/edenai/models/azure/gpt-5.3-codex.toml index 7a508d815a..d73ecff0a9 100644 --- a/providers/edenai/models/azure/gpt-5.3-codex.toml +++ b/providers/edenai/models/azure/gpt-5.3-codex.toml @@ -11,4 +11,3 @@ cache_read = 0.175 [limit] context = 272_000 -output = 272_000 diff --git a/providers/edenai/models/azure/gpt-5.4-mini.toml b/providers/edenai/models/azure/gpt-5.4-mini.toml index dd9fba5358..21db8037f3 100644 --- a/providers/edenai/models/azure/gpt-5.4-mini.toml +++ b/providers/edenai/models/azure/gpt-5.4-mini.toml @@ -11,7 +11,6 @@ cache_read = 0.075 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-mini@eu.toml b/providers/edenai/models/azure/gpt-5.4-mini@eu.toml index 33532c3605..c291328339 100644 --- a/providers/edenai/models/azure/gpt-5.4-mini@eu.toml +++ b/providers/edenai/models/azure/gpt-5.4-mini@eu.toml @@ -11,7 +11,6 @@ cache_read = 0.0825 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-mini@us.toml b/providers/edenai/models/azure/gpt-5.4-mini@us.toml index 33532c3605..c291328339 100644 --- a/providers/edenai/models/azure/gpt-5.4-mini@us.toml +++ b/providers/edenai/models/azure/gpt-5.4-mini@us.toml @@ -11,7 +11,6 @@ cache_read = 0.0825 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-nano.toml b/providers/edenai/models/azure/gpt-5.4-nano.toml index 4a06a3222e..90f320db88 100644 --- a/providers/edenai/models/azure/gpt-5.4-nano.toml +++ b/providers/edenai/models/azure/gpt-5.4-nano.toml @@ -11,7 +11,6 @@ cache_read = 0.02 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-nano@us.toml b/providers/edenai/models/azure/gpt-5.4-nano@us.toml index 879a309cb3..24c5e59c23 100644 --- a/providers/edenai/models/azure/gpt-5.4-nano@us.toml +++ b/providers/edenai/models/azure/gpt-5.4-nano@us.toml @@ -11,7 +11,6 @@ cache_read = 0.022 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-pro.toml b/providers/edenai/models/azure/gpt-5.4-pro.toml index 50b37fec81..7babfc2a5f 100644 --- a/providers/edenai/models/azure/gpt-5.4-pro.toml +++ b/providers/edenai/models/azure/gpt-5.4-pro.toml @@ -8,8 +8,5 @@ input = 30 output = 180 cache_read = 3 -[limit] -output = 1_050_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4.toml b/providers/edenai/models/azure/gpt-5.4.toml index 55d05b7d64..8b872a1030 100644 --- a/providers/edenai/models/azure/gpt-5.4.toml +++ b/providers/edenai/models/azure/gpt-5.4.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 2.5 output = 15 cache_read = 0.25 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.4@eu.toml b/providers/edenai/models/azure/gpt-5.4@eu.toml index e8ec58d00e..959d09ab72 100644 --- a/providers/edenai/models/azure/gpt-5.4@eu.toml +++ b/providers/edenai/models/azure/gpt-5.4@eu.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 2.75 output = 16.5 cache_read = 0.275 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.4@us.toml b/providers/edenai/models/azure/gpt-5.4@us.toml index e8ec58d00e..959d09ab72 100644 --- a/providers/edenai/models/azure/gpt-5.4@us.toml +++ b/providers/edenai/models/azure/gpt-5.4@us.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 2.75 output = 16.5 cache_read = 0.275 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.5.toml b/providers/edenai/models/azure/gpt-5.5.toml index 8234307444..86acbe03e0 100644 --- a/providers/edenai/models/azure/gpt-5.5.toml +++ b/providers/edenai/models/azure/gpt-5.5.toml @@ -8,6 +8,3 @@ input = 5 output = 30 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.5@eu.toml b/providers/edenai/models/azure/gpt-5.5@eu.toml index 19198b37fe..ce63c77130 100644 --- a/providers/edenai/models/azure/gpt-5.5@eu.toml +++ b/providers/edenai/models/azure/gpt-5.5@eu.toml @@ -8,6 +8,3 @@ input = 5.5 output = 33 cache_read = 0.55 cache_write = 6.875 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.5@us.toml b/providers/edenai/models/azure/gpt-5.5@us.toml index 19198b37fe..ce63c77130 100644 --- a/providers/edenai/models/azure/gpt-5.5@us.toml +++ b/providers/edenai/models/azure/gpt-5.5@us.toml @@ -8,6 +8,3 @@ input = 5.5 output = 33 cache_read = 0.55 cache_write = 6.875 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-luna.toml b/providers/edenai/models/azure/gpt-5.6-luna.toml index cc1f5e0445..cc4f069910 100644 --- a/providers/edenai/models/azure/gpt-5.6-luna.toml +++ b/providers/edenai/models/azure/gpt-5.6-luna.toml @@ -8,6 +8,3 @@ input = 1 output = 6 cache_read = 0.1 cache_write = 1.25 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-luna@eu.toml b/providers/edenai/models/azure/gpt-5.6-luna@eu.toml index fef95f870a..b138b63a2e 100644 --- a/providers/edenai/models/azure/gpt-5.6-luna@eu.toml +++ b/providers/edenai/models/azure/gpt-5.6-luna@eu.toml @@ -8,6 +8,3 @@ input = 1.1 output = 6.6 cache_read = 0.11 cache_write = 1.375 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-luna@us.toml b/providers/edenai/models/azure/gpt-5.6-luna@us.toml index fef95f870a..b138b63a2e 100644 --- a/providers/edenai/models/azure/gpt-5.6-luna@us.toml +++ b/providers/edenai/models/azure/gpt-5.6-luna@us.toml @@ -8,6 +8,3 @@ input = 1.1 output = 6.6 cache_read = 0.11 cache_write = 1.375 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-sol.toml b/providers/edenai/models/azure/gpt-5.6-sol.toml index 25fef58156..c3ca2771c0 100644 --- a/providers/edenai/models/azure/gpt-5.6-sol.toml +++ b/providers/edenai/models/azure/gpt-5.6-sol.toml @@ -8,6 +8,3 @@ input = 5 output = 30 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-sol@eu.toml b/providers/edenai/models/azure/gpt-5.6-sol@eu.toml index 9af99fc45a..010e5a2da7 100644 --- a/providers/edenai/models/azure/gpt-5.6-sol@eu.toml +++ b/providers/edenai/models/azure/gpt-5.6-sol@eu.toml @@ -8,6 +8,3 @@ input = 5.5 output = 33 cache_read = 0.55 cache_write = 6.875 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-sol@us.toml b/providers/edenai/models/azure/gpt-5.6-sol@us.toml index 9af99fc45a..010e5a2da7 100644 --- a/providers/edenai/models/azure/gpt-5.6-sol@us.toml +++ b/providers/edenai/models/azure/gpt-5.6-sol@us.toml @@ -8,6 +8,3 @@ input = 5.5 output = 33 cache_read = 0.55 cache_write = 6.875 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-terra.toml b/providers/edenai/models/azure/gpt-5.6-terra.toml index c5d9d63579..712130f1ac 100644 --- a/providers/edenai/models/azure/gpt-5.6-terra.toml +++ b/providers/edenai/models/azure/gpt-5.6-terra.toml @@ -8,6 +8,3 @@ input = 2.5 output = 15 cache_read = 0.25 cache_write = 3.125 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-terra@eu.toml b/providers/edenai/models/azure/gpt-5.6-terra@eu.toml index 19dc227bbe..ee901914a6 100644 --- a/providers/edenai/models/azure/gpt-5.6-terra@eu.toml +++ b/providers/edenai/models/azure/gpt-5.6-terra@eu.toml @@ -8,6 +8,3 @@ input = 2.75 output = 16.5 cache_read = 0.275 cache_write = 3.4375 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.6-terra@us.toml b/providers/edenai/models/azure/gpt-5.6-terra@us.toml index 19dc227bbe..ee901914a6 100644 --- a/providers/edenai/models/azure/gpt-5.6-terra@us.toml +++ b/providers/edenai/models/azure/gpt-5.6-terra@us.toml @@ -8,6 +8,3 @@ input = 2.75 output = 16.5 cache_read = 0.275 cache_write = 3.4375 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/azure/gpt-5.toml b/providers/edenai/models/azure/gpt-5.toml index 7309a66ca3..bdc315b6bd 100644 --- a/providers/edenai/models/azure/gpt-5.toml +++ b/providers/edenai/models/azure/gpt-5.toml @@ -11,7 +11,6 @@ cache_read = 0.125 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5@eu.toml b/providers/edenai/models/azure/gpt-5@eu.toml index b18af24f19..4a8954daee 100644 --- a/providers/edenai/models/azure/gpt-5@eu.toml +++ b/providers/edenai/models/azure/gpt-5@eu.toml @@ -11,7 +11,6 @@ cache_read = 0.1375 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5@us.toml b/providers/edenai/models/azure/gpt-5@us.toml index b18af24f19..4a8954daee 100644 --- a/providers/edenai/models/azure/gpt-5@us.toml +++ b/providers/edenai/models/azure/gpt-5@us.toml @@ -11,7 +11,6 @@ cache_read = 0.1375 [limit] context = 272_000 -output = 272_000 [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/o3.toml b/providers/edenai/models/azure/o3.toml index 2694903782..9ae0782ebd 100644 --- a/providers/edenai/models/azure/o3.toml +++ b/providers/edenai/models/azure/o3.toml @@ -8,8 +8,5 @@ input = 2 output = 8 cache_read = 0.5 -[limit] -output = 200_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/azure/o3@eu.toml b/providers/edenai/models/azure/o3@eu.toml index 8ecc069dcc..598dc7de75 100644 --- a/providers/edenai/models/azure/o3@eu.toml +++ b/providers/edenai/models/azure/o3@eu.toml @@ -8,8 +8,5 @@ input = 2.2 output = 8.8 cache_read = 0.55 -[limit] -output = 200_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/azure/o3@us.toml b/providers/edenai/models/azure/o3@us.toml index 8ecc069dcc..598dc7de75 100644 --- a/providers/edenai/models/azure/o3@us.toml +++ b/providers/edenai/models/azure/o3@us.toml @@ -8,8 +8,5 @@ input = 2.2 output = 8.8 cache_read = 0.55 -[limit] -output = 200_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/bytedance/seed-1-6-250915.toml b/providers/edenai/models/bytedance/seed-1-6-250915.toml index e039921794..2bd9a671fc 100644 --- a/providers/edenai/models/bytedance/seed-1-6-250915.toml +++ b/providers/edenai/models/bytedance/seed-1-6-250915.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml b/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml index ee866a9a0a..f577c7acdb 100644 --- a/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml +++ b/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml b/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml index 985956fad6..2e7d7841d0 100644 --- a/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml +++ b/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml b/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml index cffab922b8..5c46dd802e 100644 --- a/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml +++ b/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml b/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml index 67b5f91916..79899d86cf 100644 --- a/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml +++ b/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml b/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml index 9503a76324..c7fd218005 100644 --- a/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml +++ b/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/cerebras/gpt-oss-120b.toml b/providers/edenai/models/cerebras/gpt-oss-120b.toml index 993ca38050..ddc438a3d3 100644 --- a/providers/edenai/models/cerebras/gpt-oss-120b.toml +++ b/providers/edenai/models/cerebras/gpt-oss-120b.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 0.35 output = 0.75 cache_read = 0.35 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/cohere/command-a-03-2025.toml b/providers/edenai/models/cohere/command-a-03-2025.toml index 385005e67b..93e4daf469 100644 --- a/providers/edenai/models/cohere/command-a-03-2025.toml +++ b/providers/edenai/models/cohere/command-a-03-2025.toml @@ -9,4 +9,3 @@ output = 10 [limit] context = 288_000 -output = 288_000 diff --git a/providers/edenai/models/cohere/command-r-08-2024.toml b/providers/edenai/models/cohere/command-r-08-2024.toml index 1b613d0b58..1621b2a5f2 100644 --- a/providers/edenai/models/cohere/command-r-08-2024.toml +++ b/providers/edenai/models/cohere/command-r-08-2024.toml @@ -6,6 +6,3 @@ open_weights = false [cost] input = 0.15 output = 0.6 - -[limit] -output = 128_000 diff --git a/providers/edenai/models/cohere/command-r-plus-08-2024.toml b/providers/edenai/models/cohere/command-r-plus-08-2024.toml index 30effcab6b..bb0ea0fd56 100644 --- a/providers/edenai/models/cohere/command-r-plus-08-2024.toml +++ b/providers/edenai/models/cohere/command-r-plus-08-2024.toml @@ -6,6 +6,3 @@ open_weights = false [cost] input = 2.5 output = 10 - -[limit] -output = 128_000 diff --git a/providers/edenai/models/cohere/command-r7b-12-2024.toml b/providers/edenai/models/cohere/command-r7b-12-2024.toml index 3cd3222b86..49aa29bc70 100644 --- a/providers/edenai/models/cohere/command-r7b-12-2024.toml +++ b/providers/edenai/models/cohere/command-r7b-12-2024.toml @@ -10,4 +10,3 @@ output = 0.15 [limit] context = 132_000 -output = 132_000 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml index 7c0cf6dfa1..ce3d39c23e 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml @@ -11,4 +11,3 @@ output = 0.54 [limit] context = 40_960 -output = 40_960 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml index 1fca136ae2..9839a2b1ef 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml @@ -11,4 +11,3 @@ output = 0.28 [limit] context = 40_960 -output = 40_960 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml index dfc0591c2f..133a9f184a 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml @@ -7,6 +7,3 @@ open_weights = false [cost] input = 0.4 output = 1.6 - -[limit] -output = 262_144 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml index b6ebaeeea8..bcedaf457c 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml @@ -13,4 +13,3 @@ cache_read = 0.24 [limit] context = 256_000 -output = 256_000 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml index 9f553f196d..b98e0b24b8 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml @@ -12,4 +12,3 @@ output = 1.1 [limit] context = 262_144 -output = 262_144 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml index 83a4df17ad..6b4e79fa5d 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 0.29 output = 2.4 -[limit] -output = 262_144 - [modalities] input = ["image", "text", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml index dfba864f16..3be262b6d5 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 0.26 output = 2.6 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml index 30ab6ca85f..c9d968de4b 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml @@ -10,8 +10,5 @@ input = 0.14 output = 1 cache_read = 0.05 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml index 7a96bd8afe..2509650367 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml @@ -9,8 +9,5 @@ input = 0.45 output = 3 cache_read = 0.22 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml index ec02baf921..bf80480087 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml @@ -9,8 +9,5 @@ reasoning_options = [] input = 0.1 output = 0.15 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml index 9b2b241766..19d75bbb1f 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 0.32 output = 3.2 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml index f9ab81102d..4c7d1e38a4 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 0.1 output = 0.95 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml index 8720492d17..ee4595f20a 100644 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml +++ b/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml @@ -12,4 +12,3 @@ cache_read = 0.5 [limit] context = 256_000 -output = 256_000 diff --git a/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml b/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml index fa7aa37b59..50a46bc7ca 100644 --- a/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml +++ b/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml @@ -9,8 +9,5 @@ reasoning_options = [] input = 1 output = 5 -[limit] -output = 200_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml b/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml index 4a77af0073..630e143532 100644 --- a/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml +++ b/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml @@ -9,8 +9,5 @@ reasoning_options = [] input = 5 output = 25 -[limit] -output = 1_000_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml b/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml index 7634acf023..d825617a9d 100644 --- a/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml +++ b/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml @@ -9,8 +9,5 @@ reasoning_options = [] input = 5 output = 25 -[limit] -output = 1_000_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml b/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml index 5a11bd61b8..65d059afa5 100644 --- a/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml +++ b/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml @@ -9,8 +9,5 @@ reasoning_options = [] input = 3 output = 15 -[limit] -output = 1_000_000 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml b/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml index 59bfe20ad4..812edcf6f3 100644 --- a/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml +++ b/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml @@ -10,7 +10,6 @@ output = 2.5 [limit] context = 1_000_000 -output = 1_000_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml b/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml index d6134b4ec8..735bda26de 100644 --- a/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml +++ b/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml @@ -10,7 +10,6 @@ output = 10 [limit] context = 1_000_000 -output = 1_000_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml b/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml index f3359bb90d..57a651f802 100644 --- a/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml +++ b/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml @@ -11,7 +11,6 @@ output = 1.5 [limit] context = 1_000_000 -output = 1_000_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml b/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml index e36d08836b..1145bb6b6a 100644 --- a/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml +++ b/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml @@ -11,7 +11,6 @@ output = 9 [limit] context = 1_000_000 -output = 1_000_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml b/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml index 68c765ad5f..be35965e5d 100644 --- a/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml +++ b/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 0.07 output = 0.34 -[limit] -output = 262_144 - [modalities] input = ["image", "text", "video"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml b/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml index b184cdffbe..1ab15459db 100644 --- a/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml +++ b/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml @@ -9,8 +9,5 @@ input = 0.13 output = 0.38 cache_read = 0.05 -[limit] -output = 262_144 - [modalities] input = ["image", "text", "video"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml b/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml index a3f543394a..8d62eff9ae 100644 --- a/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml +++ b/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml @@ -11,8 +11,5 @@ reasoning_options = [] input = 0.02 output = 0.1 -[limit] -output = 131_072 - [modalities] input = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml index fcf10dbec3..3232cbb621 100644 --- a/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml +++ b/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml @@ -10,4 +10,3 @@ output = 0.32 [limit] context = 131_072 -output = 131_072 diff --git a/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml b/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml index 76e00ce192..6cf5fc9cb0 100644 --- a/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml +++ b/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml @@ -11,4 +11,3 @@ cache_read = 0.1 [limit] context = 262_144 -output = 262_144 diff --git a/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml b/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml index 8fbe3e89a1..66baa7f783 100644 --- a/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml +++ b/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml @@ -10,4 +10,3 @@ output = 0.6 [limit] context = 131_072 -output = 131_072 diff --git a/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml b/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml index 4aefe1584d..7a7f4f85bb 100644 --- a/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml +++ b/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml @@ -12,7 +12,6 @@ output = 0.8 [limit] context = 262_144 -output = 262_144 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml index ca05a14179..476ce59f60 100644 --- a/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml +++ b/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml @@ -6,6 +6,3 @@ reasoning_options = [] [cost] input = 0.037 output = 0.17 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml index 6c5a1bb764..4867c51e3b 100644 --- a/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml +++ b/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml @@ -6,6 +6,3 @@ reasoning_options = [] [cost] input = 0.03 output = 0.14 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml index 3fd37fab16..073965ca72 100644 --- a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml +++ b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml @@ -12,4 +12,3 @@ cache_read = 0.02 [limit] context = 262_144 -output = 262_144 diff --git a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml index 230b1e6dfc..04c0a68411 100644 --- a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml +++ b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml @@ -13,4 +13,3 @@ cache_read = 0.04 [limit] context = 262_144 -output = 262_144 diff --git a/providers/edenai/models/deepinfra/tencent/Hy3.toml b/providers/edenai/models/deepinfra/tencent/Hy3.toml index b1829bb8f2..24c1ba2672 100644 --- a/providers/edenai/models/deepinfra/tencent/Hy3.toml +++ b/providers/edenai/models/deepinfra/tencent/Hy3.toml @@ -11,4 +11,3 @@ cache_read = 0.035 [limit] context = 262_144 -output = 262_144 diff --git a/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml b/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml index a8b37a003d..6c375f90b9 100644 --- a/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml +++ b/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml @@ -13,4 +13,3 @@ cache_read = 0.17 [limit] context = 524_288 -output = 524_288 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml index 2d68153134..d93c9f3d19 100644 --- a/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml +++ b/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml @@ -8,6 +8,3 @@ open_weights = false [cost] input = 0.4 output = 1.6 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml index 37c4f34648..9edc5e5f45 100644 --- a/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml +++ b/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml @@ -11,4 +11,3 @@ cache_read = 0.1 [limit] context = 202_752 -output = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml index 7ddef03c01..6657b99d47 100644 --- a/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml +++ b/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml @@ -11,4 +11,3 @@ cache_read = 0.01 [limit] context = 202_752 -output = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml index 251199cfbe..df337cd157 100644 --- a/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml +++ b/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml @@ -11,4 +11,3 @@ cache_read = 0.08 [limit] context = 202_752 -output = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml b/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml index f51158bad4..6c1d0d1666 100644 --- a/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml +++ b/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml @@ -10,4 +10,3 @@ cache_read = 0.205 [limit] context = 202_752 -output = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml b/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml index feb2173565..f29a4f656c 100644 --- a/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml +++ b/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml @@ -11,4 +11,3 @@ cache_read = 0.14 [limit] context = 1_048_576 -output = 1_048_576 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-5.toml b/providers/edenai/models/deepinfra/zai-org/GLM-5.toml index f6e3ea61ea..a32396e5eb 100644 --- a/providers/edenai/models/deepinfra/zai-org/GLM-5.toml +++ b/providers/edenai/models/deepinfra/zai-org/GLM-5.toml @@ -12,4 +12,3 @@ cache_read = 0.12 [limit] context = 202_752 -output = 202_752 diff --git a/providers/edenai/models/deepseek/deepseek-chat.toml b/providers/edenai/models/deepseek/deepseek-chat.toml index 68d9028732..4f06172fe0 100644 --- a/providers/edenai/models/deepseek/deepseek-chat.toml +++ b/providers/edenai/models/deepseek/deepseek-chat.toml @@ -3,6 +3,7 @@ release_date = "2026-01-06" last_updated = "2026-08-01" attachment = false structured_output = true +open_weights = false [cost] input = 0.28 @@ -11,4 +12,3 @@ cache_read = 0.028 [limit] context = 131_072 -output = 131_072 diff --git a/providers/edenai/models/deepseek/deepseek-reasoner.toml b/providers/edenai/models/deepseek/deepseek-reasoner.toml index b2fb68f364..1de978d98d 100644 --- a/providers/edenai/models/deepseek/deepseek-reasoner.toml +++ b/providers/edenai/models/deepseek/deepseek-reasoner.toml @@ -4,6 +4,7 @@ last_updated = "2026-08-01" attachment = false tool_call = false structured_output = true +open_weights = false reasoning_options = [] [cost] @@ -13,4 +14,3 @@ cache_read = 0.028 [limit] context = 131_072 -output = 131_072 diff --git a/providers/edenai/models/deepseek/deepseek-v4-flash.toml b/providers/edenai/models/deepseek/deepseek-v4-flash.toml index f8098ad7fa..277d2d67b5 100644 --- a/providers/edenai/models/deepseek/deepseek-v4-flash.toml +++ b/providers/edenai/models/deepseek/deepseek-v4-flash.toml @@ -1,5 +1,6 @@ base_model = "deepseek/deepseek-v4-flash" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] @@ -9,4 +10,3 @@ cache_read = 0.0028 [limit] context = 1_048_576 -output = 1_048_576 diff --git a/providers/edenai/models/deepseek/deepseek-v4-pro.toml b/providers/edenai/models/deepseek/deepseek-v4-pro.toml index 30724d6b76..8444d8fe09 100644 --- a/providers/edenai/models/deepseek/deepseek-v4-pro.toml +++ b/providers/edenai/models/deepseek/deepseek-v4-pro.toml @@ -1,5 +1,6 @@ base_model = "deepseek/deepseek-v4-pro" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] @@ -9,4 +10,3 @@ cache_read = 0.003625 [limit] context = 1_048_576 -output = 1_048_576 diff --git a/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml b/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml index 149717f86d..e84956dd5f 100644 --- a/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml +++ b/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml @@ -10,4 +10,3 @@ cache_read = 0.028 [limit] context = 1_048_576 -output = 1_048_576 diff --git a/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml b/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml index eff25c2c2d..ee832042ea 100644 --- a/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml +++ b/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml @@ -11,4 +11,3 @@ cache_read = 0.145 [limit] context = 1_048_576 -output = 1_048_576 diff --git a/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml b/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml index 362ed47d05..c0be3c2972 100644 --- a/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml +++ b/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml @@ -8,6 +8,3 @@ reasoning_options = [] input = 0.15 output = 0.6 cache_read = 0.014 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml b/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml index e24b94623f..a48c7f11b0 100644 --- a/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml +++ b/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 0.07 output = 0.3 cache_read = 0.035 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/fireworks_ai/kimi-k3.toml b/providers/edenai/models/fireworks_ai/kimi-k3.toml index 42cbb765b1..b32e21d2be 100644 --- a/providers/edenai/models/fireworks_ai/kimi-k3.toml +++ b/providers/edenai/models/fireworks_ai/kimi-k3.toml @@ -8,8 +8,5 @@ input = 3 output = 15 cache_read = 0.3 -[limit] -output = 1_048_576 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/google/gemini-2.5-flash-lite.toml b/providers/edenai/models/google/gemini-2.5-flash-lite.toml index 2d173f174f..8a35c9fb41 100644 --- a/providers/edenai/models/google/gemini-2.5-flash-lite.toml +++ b/providers/edenai/models/google/gemini-2.5-flash-lite.toml @@ -10,6 +10,3 @@ reasoning = 0.4 cache_read = 0.01 cache_write = 0.083333 input_audio = 0.3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-2.5-flash.toml b/providers/edenai/models/google/gemini-2.5-flash.toml index b9cdd36d61..446ecbc568 100644 --- a/providers/edenai/models/google/gemini-2.5-flash.toml +++ b/providers/edenai/models/google/gemini-2.5-flash.toml @@ -9,6 +9,3 @@ reasoning = 2.5 cache_read = 0.03 cache_write = 0.083333 input_audio = 1 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-2.5-pro.toml b/providers/edenai/models/google/gemini-2.5-pro.toml index 8ece6136f6..cf00e491e7 100644 --- a/providers/edenai/models/google/gemini-2.5-pro.toml +++ b/providers/edenai/models/google/gemini-2.5-pro.toml @@ -9,6 +9,3 @@ reasoning = 10 cache_read = 0.125 cache_write = 0.375 input_audio = 1.25 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3-flash-preview.toml b/providers/edenai/models/google/gemini-3-flash-preview.toml index 5456db9671..fc73b39efa 100644 --- a/providers/edenai/models/google/gemini-3-flash-preview.toml +++ b/providers/edenai/models/google/gemini-3-flash-preview.toml @@ -9,6 +9,3 @@ reasoning = 3 cache_read = 0.05 cache_write = 0.083333 input_audio = 1 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3-pro-image-preview.toml b/providers/edenai/models/google/gemini-3-pro-image-preview.toml index df3fd1976c..1c2b653379 100644 --- a/providers/edenai/models/google/gemini-3-pro-image-preview.toml +++ b/providers/edenai/models/google/gemini-3-pro-image-preview.toml @@ -10,6 +10,3 @@ reasoning = 12 cache_read = 0.2 cache_write = 0.375 input_audio = 2 - -[limit] -output = 65_536 diff --git a/providers/edenai/models/google/gemini-3-pro-image.toml b/providers/edenai/models/google/gemini-3-pro-image.toml index fcaec3d6b3..b419cde242 100644 --- a/providers/edenai/models/google/gemini-3-pro-image.toml +++ b/providers/edenai/models/google/gemini-3-pro-image.toml @@ -11,6 +11,3 @@ reasoning = 12 cache_read = 0.2 cache_write = 0.375 input_audio = 2 - -[limit] -output = 65_536 diff --git a/providers/edenai/models/google/gemini-3.1-flash-image.toml b/providers/edenai/models/google/gemini-3.1-flash-image.toml index 0bb8f40f3c..c52482e3fe 100644 --- a/providers/edenai/models/google/gemini-3.1-flash-image.toml +++ b/providers/edenai/models/google/gemini-3.1-flash-image.toml @@ -10,7 +10,6 @@ output = 3 [limit] context = 65_536 -output = 65_536 [modalities] input = ["image", "text"] diff --git a/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml b/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml index 48b0cae08b..2b8ebc0c51 100644 --- a/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml +++ b/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml @@ -7,6 +7,3 @@ reasoning_options = [] [cost] input = 0.25 output = 1.5 - -[limit] -output = 65_536 diff --git a/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml b/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml index a573fe4c5d..b899b7497b 100644 --- a/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml +++ b/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml @@ -10,6 +10,3 @@ reasoning = 1.5 cache_read = 0.025 cache_write = 0.083333 input_audio = 0.5 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.1-flash-lite.toml b/providers/edenai/models/google/gemini-3.1-flash-lite.toml index 230d1c99ed..f306ae08c7 100644 --- a/providers/edenai/models/google/gemini-3.1-flash-lite.toml +++ b/providers/edenai/models/google/gemini-3.1-flash-lite.toml @@ -9,6 +9,3 @@ reasoning = 1.5 cache_read = 0.025 cache_write = 0.083333 input_audio = 0.5 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml b/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml index 08786adc5f..c7542d08de 100644 --- a/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml +++ b/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml @@ -10,6 +10,3 @@ reasoning = 12 cache_read = 0.2 cache_write = 0.375 input_audio = 2 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.1-pro-preview.toml b/providers/edenai/models/google/gemini-3.1-pro-preview.toml index 4aad224aa5..47f1b71ebb 100644 --- a/providers/edenai/models/google/gemini-3.1-pro-preview.toml +++ b/providers/edenai/models/google/gemini-3.1-pro-preview.toml @@ -9,6 +9,3 @@ reasoning = 12 cache_read = 0.2 cache_write = 0.375 input_audio = 2 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.5-flash-lite.toml b/providers/edenai/models/google/gemini-3.5-flash-lite.toml index 565c18b5b4..d3809ec02a 100644 --- a/providers/edenai/models/google/gemini-3.5-flash-lite.toml +++ b/providers/edenai/models/google/gemini-3.5-flash-lite.toml @@ -9,6 +9,3 @@ reasoning = 2.5 cache_read = 0.03 cache_write = 0.083333 input_audio = 0.3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.5-flash.toml b/providers/edenai/models/google/gemini-3.5-flash.toml index 341fe75c72..45c1ca2aa2 100644 --- a/providers/edenai/models/google/gemini-3.5-flash.toml +++ b/providers/edenai/models/google/gemini-3.5-flash.toml @@ -9,6 +9,3 @@ reasoning = 9 cache_read = 0.15 cache_write = 0.083333 input_audio = 3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemini-3.6-flash.toml b/providers/edenai/models/google/gemini-3.6-flash.toml index ed74c59262..bbbf040226 100644 --- a/providers/edenai/models/google/gemini-3.6-flash.toml +++ b/providers/edenai/models/google/gemini-3.6-flash.toml @@ -9,6 +9,3 @@ reasoning = 7.5 cache_read = 0.15 cache_write = 0.083333 input_audio = 1.5 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/google/gemma-4-26b-a4b-it.toml b/providers/edenai/models/google/gemma-4-26b-a4b-it.toml index 6300dcd6be..88e1c680ef 100644 --- a/providers/edenai/models/google/gemma-4-26b-a4b-it.toml +++ b/providers/edenai/models/google/gemma-4-26b-a4b-it.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 0 output = 0 -[limit] -output = 262_144 - [modalities] input = ["image", "text", "video"] diff --git a/providers/edenai/models/google/gemma-4-31b-it.toml b/providers/edenai/models/google/gemma-4-31b-it.toml index a5d60bb15f..34f0e24b0b 100644 --- a/providers/edenai/models/google/gemma-4-31b-it.toml +++ b/providers/edenai/models/google/gemma-4-31b-it.toml @@ -7,8 +7,5 @@ reasoning_options = [] input = 0 output = 0 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/groq/openai/gpt-oss-120b.toml b/providers/edenai/models/groq/openai/gpt-oss-120b.toml index d1f746cf0a..f70c9c332f 100644 --- a/providers/edenai/models/groq/openai/gpt-oss-120b.toml +++ b/providers/edenai/models/groq/openai/gpt-oss-120b.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 0.15 output = 0.6 cache_read = 0.075 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/groq/openai/gpt-oss-20b.toml b/providers/edenai/models/groq/openai/gpt-oss-20b.toml index aaa0104f02..2761862d7b 100644 --- a/providers/edenai/models/groq/openai/gpt-oss-20b.toml +++ b/providers/edenai/models/groq/openai/gpt-oss-20b.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 0.075 output = 0.3 cache_read = 0.0375 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/groq/qwen/qwen3.6-27b.toml b/providers/edenai/models/groq/qwen/qwen3.6-27b.toml index 06fea14953..947366f4c5 100644 --- a/providers/edenai/models/groq/qwen/qwen3.6-27b.toml +++ b/providers/edenai/models/groq/qwen/qwen3.6-27b.toml @@ -11,7 +11,6 @@ cache_read = 0.3 [limit] context = 131_072 -output = 131_072 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/lilac/google/gemma-4-31b-it.toml b/providers/edenai/models/lilac/google/gemma-4-31b-it.toml index df9ee1558b..9de52db647 100644 --- a/providers/edenai/models/lilac/google/gemma-4-31b-it.toml +++ b/providers/edenai/models/lilac/google/gemma-4-31b-it.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 0.0825 output = 0.2625 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/lilac/zai-org/glm-5.2.toml b/providers/edenai/models/lilac/zai-org/glm-5.2.toml index 83be5472bd..cab1ade7be 100644 --- a/providers/edenai/models/lilac/zai-org/glm-5.2.toml +++ b/providers/edenai/models/lilac/zai-org/glm-5.2.toml @@ -11,4 +11,3 @@ cache_read = 0.1275 [limit] context = 524_288 -output = 524_288 diff --git a/providers/edenai/models/microsoft/gpt-4.toml b/providers/edenai/models/microsoft/gpt-4.toml index 63f0d4a66d..6c51fb4e6f 100644 --- a/providers/edenai/models/microsoft/gpt-4.toml +++ b/providers/edenai/models/microsoft/gpt-4.toml @@ -10,4 +10,3 @@ output = 60 [limit] context = 8_191 -output = 8_191 diff --git a/providers/edenai/models/microsoft/gpt-4o-mini.toml b/providers/edenai/models/microsoft/gpt-4o-mini.toml index fdc9e8eda0..6b4cd51cdb 100644 --- a/providers/edenai/models/microsoft/gpt-4o-mini.toml +++ b/providers/edenai/models/microsoft/gpt-4o-mini.toml @@ -6,6 +6,3 @@ tool_call = false input = 0.15 output = 0.6 cache_read = 0.075 - -[limit] -output = 128_000 diff --git a/providers/edenai/models/microsoft/gpt-4o.toml b/providers/edenai/models/microsoft/gpt-4o.toml index afe37ce611..67d293928d 100644 --- a/providers/edenai/models/microsoft/gpt-4o.toml +++ b/providers/edenai/models/microsoft/gpt-4o.toml @@ -5,6 +5,3 @@ last_updated = "2026-08-01" input = 2.5 output = 10 cache_read = 1.25 - -[limit] -output = 128_000 diff --git a/providers/edenai/models/microsoft/o3-mini.toml b/providers/edenai/models/microsoft/o3-mini.toml index 2f30073057..b113b46e2b 100644 --- a/providers/edenai/models/microsoft/o3-mini.toml +++ b/providers/edenai/models/microsoft/o3-mini.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 1.1 output = 4.4 cache_read = 0.55 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/minimax/MiniMax-M2.1.toml b/providers/edenai/models/minimax/MiniMax-M2.1.toml index 10ac73d660..13b1ed2549 100644 --- a/providers/edenai/models/minimax/MiniMax-M2.1.toml +++ b/providers/edenai/models/minimax/MiniMax-M2.1.toml @@ -1,12 +1,10 @@ base_model = "minimax/MiniMax-M2.1" last_updated = "2026-08-01" structured_output = true +open_weights = false reasoning_options = [] [cost] input = 0.3 output = 1.2 cache_read = 0.03 - -[limit] -output = 204_800 diff --git a/providers/edenai/models/minimax/MiniMax-M2.5.toml b/providers/edenai/models/minimax/MiniMax-M2.5.toml index 4dc6c9d9c2..aefb89aecc 100644 --- a/providers/edenai/models/minimax/MiniMax-M2.5.toml +++ b/providers/edenai/models/minimax/MiniMax-M2.5.toml @@ -1,12 +1,10 @@ base_model = "minimax/MiniMax-M2.5" last_updated = "2026-08-01" structured_output = true +open_weights = false reasoning_options = [] [cost] input = 0.3 output = 1.2 cache_read = 0.03 - -[limit] -output = 204_800 diff --git a/providers/edenai/models/minimax/MiniMax-M2.7.toml b/providers/edenai/models/minimax/MiniMax-M2.7.toml index 320522b53a..2617a726fa 100644 --- a/providers/edenai/models/minimax/MiniMax-M2.7.toml +++ b/providers/edenai/models/minimax/MiniMax-M2.7.toml @@ -1,12 +1,10 @@ base_model = "minimax/MiniMax-M2.7" last_updated = "2026-08-01" structured_output = true +open_weights = false reasoning_options = [] [cost] input = 0.3 output = 1.2 cache_read = 0.06 - -[limit] -output = 204_800 diff --git a/providers/edenai/models/minimax/MiniMax-M2.toml b/providers/edenai/models/minimax/MiniMax-M2.toml index 34e26eafd9..ddee2128e8 100644 --- a/providers/edenai/models/minimax/MiniMax-M2.toml +++ b/providers/edenai/models/minimax/MiniMax-M2.toml @@ -2,6 +2,7 @@ base_model = "minimax/MiniMax-M2" release_date = "2025-10-23" last_updated = "2026-08-01" structured_output = false +open_weights = false reasoning_options = [] [cost] @@ -10,4 +11,3 @@ output = 1.2 [limit] context = 204_800 -output = 204_800 diff --git a/providers/edenai/models/minimax/MiniMax-M3.toml b/providers/edenai/models/minimax/MiniMax-M3.toml index 20ae98bf08..9c6ec53f8a 100644 --- a/providers/edenai/models/minimax/MiniMax-M3.toml +++ b/providers/edenai/models/minimax/MiniMax-M3.toml @@ -2,6 +2,7 @@ base_model = "minimax/MiniMax-M3" release_date = "2026-05-31" last_updated = "2026-08-01" structured_output = true +open_weights = false reasoning_options = [] [cost] @@ -11,4 +12,3 @@ cache_read = 0.06 [limit] context = 524_288 -output = 524_288 diff --git a/providers/edenai/models/minimax/minimax-m1.toml b/providers/edenai/models/minimax/minimax-m1.toml index 43e16905a6..483efa0a2e 100644 --- a/providers/edenai/models/minimax/minimax-m1.toml +++ b/providers/edenai/models/minimax/minimax-m1.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = false structured_output = false -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/mistral/codestral-2405.toml b/providers/edenai/models/mistral/codestral-2405.toml index 3f582e9c3e..d8543ff3bf 100644 --- a/providers/edenai/models/mistral/codestral-2405.toml +++ b/providers/edenai/models/mistral/codestral-2405.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = false -open_weights = true +open_weights = false [cost] input = 1 diff --git a/providers/edenai/models/mistral/codestral-2508.toml b/providers/edenai/models/mistral/codestral-2508.toml index ad60af1704..c67445158e 100644 --- a/providers/edenai/models/mistral/codestral-2508.toml +++ b/providers/edenai/models/mistral/codestral-2508.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.3 diff --git a/providers/edenai/models/mistral/codestral-latest.toml b/providers/edenai/models/mistral/codestral-latest.toml index 7fb1c948bd..7513f52d6b 100644 --- a/providers/edenai/models/mistral/codestral-latest.toml +++ b/providers/edenai/models/mistral/codestral-latest.toml @@ -2,10 +2,8 @@ base_model = "mistral/codestral-latest" release_date = "2026-06-05" last_updated = "2026-08-01" structured_output = true +open_weights = false [cost] input = 1 output = 3 - -[limit] -output = 256_000 diff --git a/providers/edenai/models/mistral/devstral-2512.toml b/providers/edenai/models/mistral/devstral-2512.toml index 5e1f723423..5d9b3f794a 100644 --- a/providers/edenai/models/mistral/devstral-2512.toml +++ b/providers/edenai/models/mistral/devstral-2512.toml @@ -2,6 +2,7 @@ base_model = "mistral/devstral-2512" last_updated = "2026-08-01" attachment = true structured_output = true +open_weights = false [cost] input = 0.4 diff --git a/providers/edenai/models/mistral/devstral-latest.toml b/providers/edenai/models/mistral/devstral-latest.toml index 1a9c863479..c3eeb7f0ba 100644 --- a/providers/edenai/models/mistral/devstral-latest.toml +++ b/providers/edenai/models/mistral/devstral-latest.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.4 diff --git a/providers/edenai/models/mistral/devstral-medium-latest.toml b/providers/edenai/models/mistral/devstral-medium-latest.toml index 626c0598d8..62fc1db2c6 100644 --- a/providers/edenai/models/mistral/devstral-medium-latest.toml +++ b/providers/edenai/models/mistral/devstral-medium-latest.toml @@ -2,6 +2,7 @@ base_model = "mistral/devstral-medium-latest" release_date = "2026-02-20" last_updated = "2026-08-01" structured_output = true +open_weights = false [cost] input = 0.4 diff --git a/providers/edenai/models/mistral/devstral-small-latest.toml b/providers/edenai/models/mistral/devstral-small-latest.toml index 3667d557b7..f2bae846c3 100644 --- a/providers/edenai/models/mistral/devstral-small-latest.toml +++ b/providers/edenai/models/mistral/devstral-small-latest.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.1 diff --git a/providers/edenai/models/mistral/labs-devstral-small-2512.toml b/providers/edenai/models/mistral/labs-devstral-small-2512.toml index bba7df978f..b62ae9f3ce 100644 --- a/providers/edenai/models/mistral/labs-devstral-small-2512.toml +++ b/providers/edenai/models/mistral/labs-devstral-small-2512.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.1 diff --git a/providers/edenai/models/mistral/magistral-medium-2509.toml b/providers/edenai/models/mistral/magistral-medium-2509.toml index c818cfd08a..706604e20a 100644 --- a/providers/edenai/models/mistral/magistral-medium-2509.toml +++ b/providers/edenai/models/mistral/magistral-medium-2509.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/mistral/magistral-medium-latest.toml b/providers/edenai/models/mistral/magistral-medium-latest.toml index 2d12ff144f..048bf99cbf 100644 --- a/providers/edenai/models/mistral/magistral-medium-latest.toml +++ b/providers/edenai/models/mistral/magistral-medium-latest.toml @@ -3,7 +3,6 @@ release_date = "2026-01-06" last_updated = "2026-08-01" attachment = true structured_output = true -open_weights = true reasoning_options = [] [cost] @@ -12,7 +11,6 @@ output = 5 [limit] context = 131_072 -output = 131_072 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/mistral/magistral-small-latest.toml b/providers/edenai/models/mistral/magistral-small-latest.toml index bd82286f96..b20b5c5c16 100644 --- a/providers/edenai/models/mistral/magistral-small-latest.toml +++ b/providers/edenai/models/mistral/magistral-small-latest.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/mistral/ministral-14b-2512.toml b/providers/edenai/models/mistral/ministral-14b-2512.toml index 38db14f558..1ea6259369 100644 --- a/providers/edenai/models/mistral/ministral-14b-2512.toml +++ b/providers/edenai/models/mistral/ministral-14b-2512.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.2 diff --git a/providers/edenai/models/mistral/ministral-3b-2512.toml b/providers/edenai/models/mistral/ministral-3b-2512.toml index aee40d86a1..f74897bb01 100644 --- a/providers/edenai/models/mistral/ministral-3b-2512.toml +++ b/providers/edenai/models/mistral/ministral-3b-2512.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.1 diff --git a/providers/edenai/models/mistral/ministral-8b-2512.toml b/providers/edenai/models/mistral/ministral-8b-2512.toml index 0d80d646b5..f0f6819134 100644 --- a/providers/edenai/models/mistral/ministral-8b-2512.toml +++ b/providers/edenai/models/mistral/ministral-8b-2512.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.15 diff --git a/providers/edenai/models/mistral/ministral-8b-latest.toml b/providers/edenai/models/mistral/ministral-8b-latest.toml index e8f49c2038..902bf8f40e 100644 --- a/providers/edenai/models/mistral/ministral-8b-latest.toml +++ b/providers/edenai/models/mistral/ministral-8b-latest.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.15 diff --git a/providers/edenai/models/mistral/mistral-large-2402.toml b/providers/edenai/models/mistral/mistral-large-2402.toml index e7ab0e1326..09575c83bc 100644 --- a/providers/edenai/models/mistral/mistral-large-2402.toml +++ b/providers/edenai/models/mistral/mistral-large-2402.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 4 diff --git a/providers/edenai/models/mistral/mistral-large-2407.toml b/providers/edenai/models/mistral/mistral-large-2407.toml index 689df70ce6..6aaf0ead74 100644 --- a/providers/edenai/models/mistral/mistral-large-2407.toml +++ b/providers/edenai/models/mistral/mistral-large-2407.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 2 diff --git a/providers/edenai/models/mistral/mistral-large-2512.toml b/providers/edenai/models/mistral/mistral-large-2512.toml index 680455ad90..88ffa94d68 100644 --- a/providers/edenai/models/mistral/mistral-large-2512.toml +++ b/providers/edenai/models/mistral/mistral-large-2512.toml @@ -2,6 +2,7 @@ base_model = "mistral/mistral-large-2512" release_date = "2025-12-01" last_updated = "2026-08-01" structured_output = true +open_weights = false [cost] input = 0.5 diff --git a/providers/edenai/models/mistral/mistral-large-latest.toml b/providers/edenai/models/mistral/mistral-large-latest.toml index 619d5350e7..51b0776d72 100644 --- a/providers/edenai/models/mistral/mistral-large-latest.toml +++ b/providers/edenai/models/mistral/mistral-large-latest.toml @@ -2,6 +2,7 @@ base_model = "mistral/mistral-large-latest" release_date = "2024-02-26" last_updated = "2026-08-01" structured_output = true +open_weights = false [cost] input = 2 diff --git a/providers/edenai/models/mistral/mistral-medium-2312.toml b/providers/edenai/models/mistral/mistral-medium-2312.toml index 3230858ccf..b33d9c0957 100644 --- a/providers/edenai/models/mistral/mistral-medium-2312.toml +++ b/providers/edenai/models/mistral/mistral-medium-2312.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 2.7 diff --git a/providers/edenai/models/mistral/mistral-medium-2505.toml b/providers/edenai/models/mistral/mistral-medium-2505.toml index 013890f2cd..ae40ec8f8e 100644 --- a/providers/edenai/models/mistral/mistral-medium-2505.toml +++ b/providers/edenai/models/mistral/mistral-medium-2505.toml @@ -2,7 +2,6 @@ base_model = "mistral/mistral-medium-2505" release_date = "2026-01-06" last_updated = "2026-08-01" structured_output = true -open_weights = true [cost] input = 0.4 diff --git a/providers/edenai/models/mistral/mistral-medium-2508.toml b/providers/edenai/models/mistral/mistral-medium-2508.toml index 9ffacee828..56ffd9356b 100644 --- a/providers/edenai/models/mistral/mistral-medium-2508.toml +++ b/providers/edenai/models/mistral/mistral-medium-2508.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.4 diff --git a/providers/edenai/models/mistral/mistral-medium-2604.toml b/providers/edenai/models/mistral/mistral-medium-2604.toml index 28b0068aa1..7aa2d1377f 100644 --- a/providers/edenai/models/mistral/mistral-medium-2604.toml +++ b/providers/edenai/models/mistral/mistral-medium-2604.toml @@ -1,6 +1,7 @@ base_model = "mistral/mistral-medium-2604" release_date = "2026-06-29" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/mistral/mistral-medium-3-5.toml b/providers/edenai/models/mistral/mistral-medium-3-5.toml index 18f6e4a4e2..0342dd44fc 100644 --- a/providers/edenai/models/mistral/mistral-medium-3-5.toml +++ b/providers/edenai/models/mistral/mistral-medium-3-5.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/mistral/mistral-medium-3.5.toml b/providers/edenai/models/mistral/mistral-medium-3.5.toml index 93d13049ca..43e99f9e8c 100644 --- a/providers/edenai/models/mistral/mistral-medium-3.5.toml +++ b/providers/edenai/models/mistral/mistral-medium-3.5.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/mistral/mistral-medium-3.toml b/providers/edenai/models/mistral/mistral-medium-3.toml index 21fb3967e6..666257ea89 100644 --- a/providers/edenai/models/mistral/mistral-medium-3.toml +++ b/providers/edenai/models/mistral/mistral-medium-3.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/mistral/mistral-medium-latest.toml b/providers/edenai/models/mistral/mistral-medium-latest.toml index 4f6ad390e5..b1680d29e1 100644 --- a/providers/edenai/models/mistral/mistral-medium-latest.toml +++ b/providers/edenai/models/mistral/mistral-medium-latest.toml @@ -1,6 +1,7 @@ base_model = "mistral/mistral-medium-latest" release_date = "2026-01-06" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/mistral/mistral-medium.toml b/providers/edenai/models/mistral/mistral-medium.toml index 27bb7d8c19..4f846dded3 100644 --- a/providers/edenai/models/mistral/mistral-medium.toml +++ b/providers/edenai/models/mistral/mistral-medium.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/mistral/mistral-small-2603.toml b/providers/edenai/models/mistral/mistral-small-2603.toml index d5b0c40e46..4ecb254c27 100644 --- a/providers/edenai/models/mistral/mistral-small-2603.toml +++ b/providers/edenai/models/mistral/mistral-small-2603.toml @@ -1,6 +1,7 @@ base_model = "mistral/mistral-small-2603" last_updated = "2026-08-01" structured_output = true +open_weights = false reasoning_options = [] [cost] @@ -10,4 +11,3 @@ cache_read = 0.015 [limit] context = 262_144 -output = 262_144 diff --git a/providers/edenai/models/mistral/mistral-small-latest.toml b/providers/edenai/models/mistral/mistral-small-latest.toml index 4334668eb0..9107da65c6 100644 --- a/providers/edenai/models/mistral/mistral-small-latest.toml +++ b/providers/edenai/models/mistral/mistral-small-latest.toml @@ -2,6 +2,7 @@ base_model = "mistral/mistral-small-latest" release_date = "2026-01-06" last_updated = "2026-08-01" structured_output = true +open_weights = false reasoning_options = [] [cost] @@ -10,4 +11,3 @@ output = 0.18 [limit] context = 262_144 -output = 262_144 diff --git a/providers/edenai/models/mistral/mistral-small.toml b/providers/edenai/models/mistral/mistral-small.toml index 0dc13e98f9..65a165e717 100644 --- a/providers/edenai/models/mistral/mistral-small.toml +++ b/providers/edenai/models/mistral/mistral-small.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.1 diff --git a/providers/edenai/models/mistral/mistral-tiny-latest.toml b/providers/edenai/models/mistral/mistral-tiny-latest.toml index f7c99e7948..e237bdac76 100644 --- a/providers/edenai/models/mistral/mistral-tiny-latest.toml +++ b/providers/edenai/models/mistral/mistral-tiny-latest.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.25 diff --git a/providers/edenai/models/mistral/mistral-tiny.toml b/providers/edenai/models/mistral/mistral-tiny.toml index e384ea9440..5948a4b59b 100644 --- a/providers/edenai/models/mistral/mistral-tiny.toml +++ b/providers/edenai/models/mistral/mistral-tiny.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.25 diff --git a/providers/edenai/models/mistral/open-mistral-7b.toml b/providers/edenai/models/mistral/open-mistral-7b.toml index 4ccce014ff..dd12b0458d 100644 --- a/providers/edenai/models/mistral/open-mistral-7b.toml +++ b/providers/edenai/models/mistral/open-mistral-7b.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.25 diff --git a/providers/edenai/models/mistral/open-mistral-nemo-2407.toml b/providers/edenai/models/mistral/open-mistral-nemo-2407.toml index ada274be5d..eace166bae 100644 --- a/providers/edenai/models/mistral/open-mistral-nemo-2407.toml +++ b/providers/edenai/models/mistral/open-mistral-nemo-2407.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.3 diff --git a/providers/edenai/models/mistral/open-mistral-nemo.toml b/providers/edenai/models/mistral/open-mistral-nemo.toml index 24b9848fd4..09751404f8 100644 --- a/providers/edenai/models/mistral/open-mistral-nemo.toml +++ b/providers/edenai/models/mistral/open-mistral-nemo.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.3 diff --git a/providers/edenai/models/mistral/open-mixtral-8x22b.toml b/providers/edenai/models/mistral/open-mixtral-8x22b.toml index 4041c89401..3739e0a987 100644 --- a/providers/edenai/models/mistral/open-mixtral-8x22b.toml +++ b/providers/edenai/models/mistral/open-mixtral-8x22b.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 2 diff --git a/providers/edenai/models/mistral/open-mixtral-8x7b.toml b/providers/edenai/models/mistral/open-mixtral-8x7b.toml index 2369d1b9f5..fb5822838d 100644 --- a/providers/edenai/models/mistral/open-mixtral-8x7b.toml +++ b/providers/edenai/models/mistral/open-mixtral-8x7b.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.7 diff --git a/providers/edenai/models/mistral/pixtral-12b-2409.toml b/providers/edenai/models/mistral/pixtral-12b-2409.toml index ee5b0effa1..6999c76870 100644 --- a/providers/edenai/models/mistral/pixtral-12b-2409.toml +++ b/providers/edenai/models/mistral/pixtral-12b-2409.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.15 diff --git a/providers/edenai/models/moonshot/kimi-k2.6.toml b/providers/edenai/models/moonshot/kimi-k2.6.toml index 18618f964e..aee8a2299e 100644 --- a/providers/edenai/models/moonshot/kimi-k2.6.toml +++ b/providers/edenai/models/moonshot/kimi-k2.6.toml @@ -1,6 +1,7 @@ base_model = "moonshotai/kimi-k2.6" release_date = "2026-04-20" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/moonshot/kimi-k2.7-code.toml b/providers/edenai/models/moonshot/kimi-k2.7-code.toml index 057af0a405..70a7c54a37 100644 --- a/providers/edenai/models/moonshot/kimi-k2.7-code.toml +++ b/providers/edenai/models/moonshot/kimi-k2.7-code.toml @@ -1,5 +1,6 @@ base_model = "moonshotai/kimi-k2.7-code" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/moonshot/kimi-k3.toml b/providers/edenai/models/moonshot/kimi-k3.toml index 61ac8f8408..b32e21d2be 100644 --- a/providers/edenai/models/moonshot/kimi-k3.toml +++ b/providers/edenai/models/moonshot/kimi-k3.toml @@ -1,5 +1,6 @@ base_model = "moonshotai/kimi-k3" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] @@ -7,8 +8,5 @@ input = 3 output = 15 cache_read = 0.3 -[limit] -output = 1_048_576 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml b/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml index d4485e63b7..9ae82c8718 100644 --- a/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml +++ b/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml @@ -11,4 +11,3 @@ output = 0.3 [limit] context = 40_960 -output = 40_960 diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml b/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml index c13a07823f..b10d8eb142 100644 --- a/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml +++ b/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml @@ -11,4 +11,3 @@ output = 1.2 [limit] context = 128_000 -output = 128_000 diff --git a/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml b/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml index 22b60ad952..6f599c04f3 100644 --- a/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml +++ b/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml @@ -9,8 +9,5 @@ reasoning_options = [] input = 0.6 output = 3.6 -[limit] -output = 262_144 - [modalities] input = ["text"] diff --git a/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml b/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml index 67c35f8335..f005333c82 100644 --- a/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml +++ b/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml @@ -10,4 +10,3 @@ output = 0.4 [limit] context = 131_072 -output = 131_072 diff --git a/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml b/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml index ebe263f9bd..1218d3388f 100644 --- a/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml +++ b/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml @@ -9,7 +9,6 @@ output = 4 [limit] context = 8_000 -output = 8_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml b/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml index a63599529e..7918bda150 100644 --- a/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml +++ b/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml @@ -7,8 +7,5 @@ reasoning_options = [] input = 3 output = 15 -[limit] -output = 1_048_576 - [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml b/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml index d51ee6c6dd..e93c385157 100644 --- a/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml +++ b/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml @@ -10,4 +10,3 @@ output = 3 [limit] context = 1_048_576 -output = 1_048_576 diff --git a/providers/edenai/models/nebius/openai/gpt-oss-120b.toml b/providers/edenai/models/nebius/openai/gpt-oss-120b.toml index 0c94b05cc3..6165c4a61f 100644 --- a/providers/edenai/models/nebius/openai/gpt-oss-120b.toml +++ b/providers/edenai/models/nebius/openai/gpt-oss-120b.toml @@ -6,6 +6,3 @@ reasoning_options = [] [cost] input = 0.15 output = 0.6 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/nebius/zai-org/GLM-5.1.toml b/providers/edenai/models/nebius/zai-org/GLM-5.1.toml index 6b5d1a7d64..2da445259b 100644 --- a/providers/edenai/models/nebius/zai-org/GLM-5.1.toml +++ b/providers/edenai/models/nebius/zai-org/GLM-5.1.toml @@ -9,4 +9,3 @@ output = 4.4 [limit] context = 202_752 -output = 202_752 diff --git a/providers/edenai/models/openai/gpt-3.5-turbo.toml b/providers/edenai/models/openai/gpt-3.5-turbo.toml index 960e04a714..e6480830c0 100644 --- a/providers/edenai/models/openai/gpt-3.5-turbo.toml +++ b/providers/edenai/models/openai/gpt-3.5-turbo.toml @@ -7,6 +7,3 @@ structured_output = true [cost] input = 0.5 output = 1.5 - -[limit] -output = 16_385 diff --git a/providers/edenai/models/openai/gpt-4-turbo.toml b/providers/edenai/models/openai/gpt-4-turbo.toml index df6cf74fdf..01f8a80dcf 100644 --- a/providers/edenai/models/openai/gpt-4-turbo.toml +++ b/providers/edenai/models/openai/gpt-4-turbo.toml @@ -7,8 +7,5 @@ structured_output = true input = 10 output = 30 -[limit] -output = 128_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4.1-mini.toml b/providers/edenai/models/openai/gpt-4.1-mini.toml index 85d869086c..536c61a87d 100644 --- a/providers/edenai/models/openai/gpt-4.1-mini.toml +++ b/providers/edenai/models/openai/gpt-4.1-mini.toml @@ -5,6 +5,3 @@ last_updated = "2026-08-01" input = 0.4 output = 1.6 cache_read = 0.1 - -[limit] -output = 1_047_576 diff --git a/providers/edenai/models/openai/gpt-4.1-nano.toml b/providers/edenai/models/openai/gpt-4.1-nano.toml index 12673289bc..5af7475e1d 100644 --- a/providers/edenai/models/openai/gpt-4.1-nano.toml +++ b/providers/edenai/models/openai/gpt-4.1-nano.toml @@ -6,8 +6,5 @@ input = 0.1 output = 0.4 cache_read = 0.025 -[limit] -output = 1_047_576 - [modalities] input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4.1.toml b/providers/edenai/models/openai/gpt-4.1.toml index b7bca783f4..65c62d30c2 100644 --- a/providers/edenai/models/openai/gpt-4.1.toml +++ b/providers/edenai/models/openai/gpt-4.1.toml @@ -5,6 +5,3 @@ last_updated = "2026-08-01" input = 2 output = 8 cache_read = 0.5 - -[limit] -output = 1_047_576 diff --git a/providers/edenai/models/openai/gpt-4.toml b/providers/edenai/models/openai/gpt-4.toml index 63f0d4a66d..6c51fb4e6f 100644 --- a/providers/edenai/models/openai/gpt-4.toml +++ b/providers/edenai/models/openai/gpt-4.toml @@ -10,4 +10,3 @@ output = 60 [limit] context = 8_191 -output = 8_191 diff --git a/providers/edenai/models/openai/gpt-4o-2024-08-06.toml b/providers/edenai/models/openai/gpt-4o-2024-08-06.toml index a8dbf159ae..66e431ca19 100644 --- a/providers/edenai/models/openai/gpt-4o-2024-08-06.toml +++ b/providers/edenai/models/openai/gpt-4o-2024-08-06.toml @@ -7,8 +7,5 @@ input = 2.5 output = 10 cache_read = 1.25 -[limit] -output = 128_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4o-2024-11-20.toml b/providers/edenai/models/openai/gpt-4o-2024-11-20.toml index ab0dd6989c..646f161653 100644 --- a/providers/edenai/models/openai/gpt-4o-2024-11-20.toml +++ b/providers/edenai/models/openai/gpt-4o-2024-11-20.toml @@ -6,8 +6,5 @@ input = 2.5 output = 10 cache_read = 1.25 -[limit] -output = 128_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4o-mini.toml b/providers/edenai/models/openai/gpt-4o-mini.toml index 9eccce3f53..940dd1f5c5 100644 --- a/providers/edenai/models/openai/gpt-4o-mini.toml +++ b/providers/edenai/models/openai/gpt-4o-mini.toml @@ -5,6 +5,3 @@ last_updated = "2026-08-01" input = 0.15 output = 0.6 cache_read = 0.075 - -[limit] -output = 128_000 diff --git a/providers/edenai/models/openai/gpt-4o.toml b/providers/edenai/models/openai/gpt-4o.toml index 4f1d86b6fc..bca3eabd20 100644 --- a/providers/edenai/models/openai/gpt-4o.toml +++ b/providers/edenai/models/openai/gpt-4o.toml @@ -6,6 +6,3 @@ last_updated = "2026-08-01" input = 2.5 output = 10 cache_read = 1.25 - -[limit] -output = 128_000 diff --git a/providers/edenai/models/openai/gpt-5-mini.toml b/providers/edenai/models/openai/gpt-5-mini.toml index f86ec92829..f46e1a1adc 100644 --- a/providers/edenai/models/openai/gpt-5-mini.toml +++ b/providers/edenai/models/openai/gpt-5-mini.toml @@ -7,8 +7,5 @@ input = 0.25 output = 2 cache_read = 0.025 -[limit] -output = 400_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5-nano.toml b/providers/edenai/models/openai/gpt-5-nano.toml index 539272bf91..7e985eef52 100644 --- a/providers/edenai/models/openai/gpt-5-nano.toml +++ b/providers/edenai/models/openai/gpt-5-nano.toml @@ -7,8 +7,5 @@ input = 0.05 output = 0.4 cache_read = 0.005 -[limit] -output = 400_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5-pro.toml b/providers/edenai/models/openai/gpt-5-pro.toml index cd984a2441..0e876c68a5 100644 --- a/providers/edenai/models/openai/gpt-5-pro.toml +++ b/providers/edenai/models/openai/gpt-5-pro.toml @@ -6,8 +6,5 @@ reasoning_options = [] input = 15 output = 120 -[limit] -output = 400_000 - [modalities] input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.1.toml b/providers/edenai/models/openai/gpt-5.1.toml index ccf2879eca..958369506d 100644 --- a/providers/edenai/models/openai/gpt-5.1.toml +++ b/providers/edenai/models/openai/gpt-5.1.toml @@ -7,8 +7,5 @@ input = 1.25 output = 10 cache_read = 0.125 -[limit] -output = 400_000 - [modalities] input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.2-chat-latest.toml b/providers/edenai/models/openai/gpt-5.2-chat-latest.toml index 00c7d3d20d..b13930282f 100644 --- a/providers/edenai/models/openai/gpt-5.2-chat-latest.toml +++ b/providers/edenai/models/openai/gpt-5.2-chat-latest.toml @@ -8,8 +8,5 @@ input = 1.75 output = 14 cache_read = 0.175 -[limit] -output = 128_000 - [modalities] input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.2-pro.toml b/providers/edenai/models/openai/gpt-5.2-pro.toml index 4639d0a843..82dfa24f94 100644 --- a/providers/edenai/models/openai/gpt-5.2-pro.toml +++ b/providers/edenai/models/openai/gpt-5.2-pro.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 21 output = 168 -[limit] -output = 400_000 - [modalities] input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.2.toml b/providers/edenai/models/openai/gpt-5.2.toml index 5c42fc4940..a8cd82c20b 100644 --- a/providers/edenai/models/openai/gpt-5.2.toml +++ b/providers/edenai/models/openai/gpt-5.2.toml @@ -8,8 +8,5 @@ input = 1.75 output = 14 cache_read = 0.175 -[limit] -output = 400_000 - [modalities] input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.3-chat-latest.toml b/providers/edenai/models/openai/gpt-5.3-chat-latest.toml index 55ca6d54df..e470d48e49 100644 --- a/providers/edenai/models/openai/gpt-5.3-chat-latest.toml +++ b/providers/edenai/models/openai/gpt-5.3-chat-latest.toml @@ -8,8 +8,5 @@ input = 1.75 output = 14 cache_read = 0.175 -[limit] -output = 128_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.3-codex.toml b/providers/edenai/models/openai/gpt-5.3-codex.toml index c776590c4e..ee501d1d8e 100644 --- a/providers/edenai/models/openai/gpt-5.3-codex.toml +++ b/providers/edenai/models/openai/gpt-5.3-codex.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 1.75 output = 14 cache_read = 0.175 - -[limit] -output = 400_000 diff --git a/providers/edenai/models/openai/gpt-5.4-mini.toml b/providers/edenai/models/openai/gpt-5.4-mini.toml index 07b4c1e513..38a3b6939d 100644 --- a/providers/edenai/models/openai/gpt-5.4-mini.toml +++ b/providers/edenai/models/openai/gpt-5.4-mini.toml @@ -7,8 +7,5 @@ input = 0.75 output = 4.5 cache_read = 0.075 -[limit] -output = 400_000 - [modalities] input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.4-nano.toml b/providers/edenai/models/openai/gpt-5.4-nano.toml index 3a1bb0431c..ece5341e1a 100644 --- a/providers/edenai/models/openai/gpt-5.4-nano.toml +++ b/providers/edenai/models/openai/gpt-5.4-nano.toml @@ -7,8 +7,5 @@ input = 0.2 output = 1.25 cache_read = 0.02 -[limit] -output = 400_000 - [modalities] input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.4-pro.toml b/providers/edenai/models/openai/gpt-5.4-pro.toml index 7ad23bcba7..58ad015a55 100644 --- a/providers/edenai/models/openai/gpt-5.4-pro.toml +++ b/providers/edenai/models/openai/gpt-5.4-pro.toml @@ -8,8 +8,5 @@ input = 30 output = 180 cache_read = 3 -[limit] -output = 1_050_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.4.toml b/providers/edenai/models/openai/gpt-5.4.toml index fbf864f029..760560b9b7 100644 --- a/providers/edenai/models/openai/gpt-5.4.toml +++ b/providers/edenai/models/openai/gpt-5.4.toml @@ -6,6 +6,3 @@ reasoning_options = [] input = 2.5 output = 15 cache_read = 0.25 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.5-pro.toml b/providers/edenai/models/openai/gpt-5.5-pro.toml index ad32124b92..48eea8ad2d 100644 --- a/providers/edenai/models/openai/gpt-5.5-pro.toml +++ b/providers/edenai/models/openai/gpt-5.5-pro.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 30 output = 180 cache_read = 3 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.5.toml b/providers/edenai/models/openai/gpt-5.5.toml index 7f9b561ebe..fe70f98bba 100644 --- a/providers/edenai/models/openai/gpt-5.5.toml +++ b/providers/edenai/models/openai/gpt-5.5.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 5 output = 30 cache_read = 0.5 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.6-luna.toml b/providers/edenai/models/openai/gpt-5.6-luna.toml index c88338874c..e592e6fc04 100644 --- a/providers/edenai/models/openai/gpt-5.6-luna.toml +++ b/providers/edenai/models/openai/gpt-5.6-luna.toml @@ -7,6 +7,3 @@ input = 0.2 output = 1.2 cache_read = 0.02 cache_write = 0.25 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.6-sol.toml b/providers/edenai/models/openai/gpt-5.6-sol.toml index 1db7b68dba..555f893858 100644 --- a/providers/edenai/models/openai/gpt-5.6-sol.toml +++ b/providers/edenai/models/openai/gpt-5.6-sol.toml @@ -7,6 +7,3 @@ input = 5 output = 30 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.6-terra.toml b/providers/edenai/models/openai/gpt-5.6-terra.toml index a6c2feb8e2..e52ac6a6ba 100644 --- a/providers/edenai/models/openai/gpt-5.6-terra.toml +++ b/providers/edenai/models/openai/gpt-5.6-terra.toml @@ -7,6 +7,3 @@ input = 2 output = 12 cache_read = 0.2 cache_write = 2.5 - -[limit] -output = 1_050_000 diff --git a/providers/edenai/models/openai/gpt-5.toml b/providers/edenai/models/openai/gpt-5.toml index 395d3b5145..4368bfa591 100644 --- a/providers/edenai/models/openai/gpt-5.toml +++ b/providers/edenai/models/openai/gpt-5.toml @@ -7,8 +7,5 @@ input = 1.25 output = 10 cache_read = 0.125 -[limit] -output = 400_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/o1-pro.toml b/providers/edenai/models/openai/o1-pro.toml index 44c480b239..966705cd19 100644 --- a/providers/edenai/models/openai/o1-pro.toml +++ b/providers/edenai/models/openai/o1-pro.toml @@ -6,8 +6,5 @@ reasoning_options = [] input = 150 output = 600 -[limit] -output = 200_000 - [modalities] input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/o1.toml b/providers/edenai/models/openai/o1.toml index 8870c89c0c..44dcb2a836 100644 --- a/providers/edenai/models/openai/o1.toml +++ b/providers/edenai/models/openai/o1.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 15 output = 60 cache_read = 7.5 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/openai/o3-deep-research.toml b/providers/edenai/models/openai/o3-deep-research.toml index fc3c6001d2..820fa1772d 100644 --- a/providers/edenai/models/openai/o3-deep-research.toml +++ b/providers/edenai/models/openai/o3-deep-research.toml @@ -9,8 +9,5 @@ input = 10 output = 40 cache_read = 2.5 -[limit] -output = 200_000 - [modalities] input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/o3-mini.toml b/providers/edenai/models/openai/o3-mini.toml index 39ec4c403e..597097a822 100644 --- a/providers/edenai/models/openai/o3-mini.toml +++ b/providers/edenai/models/openai/o3-mini.toml @@ -9,8 +9,5 @@ input = 1.1 output = 4.4 cache_read = 0.55 -[limit] -output = 200_000 - [modalities] input = ["text", "pdf"] diff --git a/providers/edenai/models/openai/o3-pro.toml b/providers/edenai/models/openai/o3-pro.toml index e6e411b649..1a992ddf5d 100644 --- a/providers/edenai/models/openai/o3-pro.toml +++ b/providers/edenai/models/openai/o3-pro.toml @@ -6,8 +6,5 @@ reasoning_options = [] input = 20 output = 80 -[limit] -output = 200_000 - [modalities] input = ["text", "pdf", "image"] diff --git a/providers/edenai/models/openai/o3.toml b/providers/edenai/models/openai/o3.toml index 7a526cfef0..2baadbc7c0 100644 --- a/providers/edenai/models/openai/o3.toml +++ b/providers/edenai/models/openai/o3.toml @@ -6,6 +6,3 @@ reasoning_options = [] input = 2 output = 8 cache_read = 0.5 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/openai/o4-mini-deep-research.toml b/providers/edenai/models/openai/o4-mini-deep-research.toml index 41bb38a650..7a77acef91 100644 --- a/providers/edenai/models/openai/o4-mini-deep-research.toml +++ b/providers/edenai/models/openai/o4-mini-deep-research.toml @@ -9,8 +9,5 @@ input = 2 output = 8 cache_read = 0.5 -[limit] -output = 200_000 - [modalities] input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/o4-mini.toml b/providers/edenai/models/openai/o4-mini.toml index 9c1f8626b0..62c3e88a9d 100644 --- a/providers/edenai/models/openai/o4-mini.toml +++ b/providers/edenai/models/openai/o4-mini.toml @@ -7,8 +7,5 @@ input = 1.1 output = 4.4 cache_read = 0.275 -[limit] -output = 200_000 - [modalities] input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/ovhcloud/Qwen3-32B.toml b/providers/edenai/models/ovhcloud/Qwen3-32B.toml index 8187b3ab58..418c87168c 100644 --- a/providers/edenai/models/ovhcloud/Qwen3-32B.toml +++ b/providers/edenai/models/ovhcloud/Qwen3-32B.toml @@ -11,4 +11,3 @@ output = 0.25 [limit] context = 32_768 -output = 32_768 diff --git a/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml b/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml index 10af7c623f..0000d8ca76 100644 --- a/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml +++ b/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml @@ -8,6 +8,3 @@ open_weights = false [cost] input = 0.07 output = 0.26 - -[limit] -output = 262_144 diff --git a/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml b/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml index 7221770a83..0e3488dd40 100644 --- a/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml +++ b/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml @@ -11,8 +11,5 @@ open_weights = false input = 0.71 output = 4.25 -[limit] -output = 262_144 - [modalities] input = ["text"] diff --git a/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml b/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml index 5b3c6a129f..6b692f08e4 100644 --- a/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml +++ b/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml @@ -9,6 +9,3 @@ open_weights = false [cost] input = 0.12 output = 0.18 - -[limit] -output = 262_144 diff --git a/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml b/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml index eb3687fa21..5ea1aef47b 100644 --- a/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml +++ b/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml @@ -11,8 +11,5 @@ open_weights = false input = 0.47 output = 3.19 -[limit] -output = 262_144 - [modalities] input = ["text"] diff --git a/providers/edenai/models/ovhcloud/gpt-oss-120b.toml b/providers/edenai/models/ovhcloud/gpt-oss-120b.toml index 5ebec0cc73..187df93a3d 100644 --- a/providers/edenai/models/ovhcloud/gpt-oss-120b.toml +++ b/providers/edenai/models/ovhcloud/gpt-oss-120b.toml @@ -8,6 +8,3 @@ reasoning_options = [] [cost] input = 0.09 output = 0.47 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/ovhcloud/gpt-oss-20b.toml b/providers/edenai/models/ovhcloud/gpt-oss-20b.toml index 2e7e0d48e7..4c4533d332 100644 --- a/providers/edenai/models/ovhcloud/gpt-oss-20b.toml +++ b/providers/edenai/models/ovhcloud/gpt-oss-20b.toml @@ -8,6 +8,3 @@ reasoning_options = [] [cost] input = 0.05 output = 0.18 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/perplexityai/sonar-pro.toml b/providers/edenai/models/perplexityai/sonar-pro.toml index 388787be94..cb2865c725 100644 --- a/providers/edenai/models/perplexityai/sonar-pro.toml +++ b/providers/edenai/models/perplexityai/sonar-pro.toml @@ -6,6 +6,3 @@ structured_output = false [cost] input = 3 output = 15 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml b/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml index 7e451b9fbd..c29f60460b 100644 --- a/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml +++ b/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml @@ -7,6 +7,3 @@ reasoning_options = [] [cost] input = 2 output = 8 - -[limit] -output = 128_000 diff --git a/providers/edenai/models/perplexityai/sonar.toml b/providers/edenai/models/perplexityai/sonar.toml index 564725bf09..40c9d2d531 100644 --- a/providers/edenai/models/perplexityai/sonar.toml +++ b/providers/edenai/models/perplexityai/sonar.toml @@ -10,7 +10,6 @@ output = 1 [limit] context = 127_072 -output = 127_072 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/qwen/deepseek-v3.2.toml b/providers/edenai/models/qwen/deepseek-v3.2.toml index 376af3fd26..95a0e542e4 100644 --- a/providers/edenai/models/qwen/deepseek-v3.2.toml +++ b/providers/edenai/models/qwen/deepseek-v3.2.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/deepseek-v4-flash.toml b/providers/edenai/models/qwen/deepseek-v4-flash.toml index 2881d3634c..d970f13951 100644 --- a/providers/edenai/models/qwen/deepseek-v4-flash.toml +++ b/providers/edenai/models/qwen/deepseek-v4-flash.toml @@ -1,11 +1,9 @@ base_model = "deepseek/deepseek-v4-flash" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] input = 0.13 output = 0.26 cache_read = 0.026 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/deepseek-v4-pro.toml b/providers/edenai/models/qwen/deepseek-v4-pro.toml index bcd96bcf50..7b6c220485 100644 --- a/providers/edenai/models/qwen/deepseek-v4-pro.toml +++ b/providers/edenai/models/qwen/deepseek-v4-pro.toml @@ -1,11 +1,9 @@ base_model = "deepseek/deepseek-v4-pro" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] input = 1.56 output = 3.12 cache_read = 0.13 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/glm-5.1.toml b/providers/edenai/models/qwen/glm-5.1.toml index 5dddbcc413..4d7c22e272 100644 --- a/providers/edenai/models/qwen/glm-5.1.toml +++ b/providers/edenai/models/qwen/glm-5.1.toml @@ -1,5 +1,6 @@ base_model = "zhipuai/glm-5.1" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] @@ -9,4 +10,3 @@ cache_read = 0.169 [limit] context = 202_745 -output = 202_745 diff --git a/providers/edenai/models/qwen/glm-5.2-fast-preview.toml b/providers/edenai/models/qwen/glm-5.2-fast-preview.toml index 4fb5842cba..22149b72b3 100644 --- a/providers/edenai/models/qwen/glm-5.2-fast-preview.toml +++ b/providers/edenai/models/qwen/glm-5.2-fast-preview.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 1.82 diff --git a/providers/edenai/models/qwen/glm-5.2.toml b/providers/edenai/models/qwen/glm-5.2.toml index bfbff1c3b3..0268f51187 100644 --- a/providers/edenai/models/qwen/glm-5.2.toml +++ b/providers/edenai/models/qwen/glm-5.2.toml @@ -1,6 +1,7 @@ base_model = "zhipuai/glm-5.2" release_date = "2026-06-16" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] @@ -10,4 +11,3 @@ cache_read = 0.182 [limit] context = 1_048_576 -output = 1_048_576 diff --git a/providers/edenai/models/qwen/kimi-k2.7-code.toml b/providers/edenai/models/qwen/kimi-k2.7-code.toml index 36aaca318c..4a9396b3ef 100644 --- a/providers/edenai/models/qwen/kimi-k2.7-code.toml +++ b/providers/edenai/models/qwen/kimi-k2.7-code.toml @@ -1,5 +1,6 @@ base_model = "moonshotai/kimi-k2.7-code" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml b/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml index 10d0800358..d4c819b361 100644 --- a/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml +++ b/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = false structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen-flash-character.toml b/providers/edenai/models/qwen/qwen-flash-character.toml index e9fee8813c..64b89cee5c 100644 --- a/providers/edenai/models/qwen/qwen-flash-character.toml +++ b/providers/edenai/models/qwen/qwen-flash-character.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = false structured_output = false -open_weights = true +open_weights = false [cost] input = 0.0325 diff --git a/providers/edenai/models/qwen/qwen-flash.toml b/providers/edenai/models/qwen/qwen-flash.toml index d6724a220b..901f6ce4b4 100644 --- a/providers/edenai/models/qwen/qwen-flash.toml +++ b/providers/edenai/models/qwen/qwen-flash.toml @@ -3,7 +3,6 @@ release_date = "2026-07-30" last_updated = "2026-08-01" tool_call = false structured_output = true -open_weights = true reasoning_options = [] [cost] @@ -11,6 +10,3 @@ input = 0.0325 output = 0.26 cache_read = 0.0065 cache_write = 0.04095 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen-max.toml b/providers/edenai/models/qwen/qwen-max.toml index 39d16c656e..661c95d4a5 100644 --- a/providers/edenai/models/qwen/qwen-max.toml +++ b/providers/edenai/models/qwen/qwen-max.toml @@ -3,12 +3,8 @@ release_date = "2026-07-30" last_updated = "2026-08-01" tool_call = false structured_output = true -open_weights = true [cost] input = 1.04 output = 4.16 cache_read = 0.208 - -[limit] -output = 32_768 diff --git a/providers/edenai/models/qwen/qwen-mt-flash.toml b/providers/edenai/models/qwen/qwen-mt-flash.toml index cfe5b84ca9..23baf9d73f 100644 --- a/providers/edenai/models/qwen/qwen-mt-flash.toml +++ b/providers/edenai/models/qwen/qwen-mt-flash.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = false structured_output = false -open_weights = true +open_weights = false [cost] input = 0.104 diff --git a/providers/edenai/models/qwen/qwen-mt-lite.toml b/providers/edenai/models/qwen/qwen-mt-lite.toml index 281389b7a4..2461e8b68b 100644 --- a/providers/edenai/models/qwen/qwen-mt-lite.toml +++ b/providers/edenai/models/qwen/qwen-mt-lite.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = false structured_output = false -open_weights = true +open_weights = false [cost] input = 0.078 diff --git a/providers/edenai/models/qwen/qwen-mt-plus.toml b/providers/edenai/models/qwen/qwen-mt-plus.toml index c4106afa5e..4e5b909506 100644 --- a/providers/edenai/models/qwen/qwen-mt-plus.toml +++ b/providers/edenai/models/qwen/qwen-mt-plus.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = false structured_output = false -open_weights = true +open_weights = false [cost] input = 1.599 diff --git a/providers/edenai/models/qwen/qwen-mt-turbo.toml b/providers/edenai/models/qwen/qwen-mt-turbo.toml index aca9fa98be..c3abe4b2b9 100644 --- a/providers/edenai/models/qwen/qwen-mt-turbo.toml +++ b/providers/edenai/models/qwen/qwen-mt-turbo.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = false structured_output = false -open_weights = true +open_weights = false [cost] input = 0.104 diff --git a/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml b/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml index 0b7409e947..cd1ef01615 100644 --- a/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml +++ b/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml b/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml index 3c8009c15e..b5803ba0b8 100644 --- a/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml +++ b/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml b/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml index 5758c53c8c..cf1fb6abc5 100644 --- a/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml +++ b/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml b/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml index 8eeee37ada..b14a93b6e0 100644 --- a/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml +++ b/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml b/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml index abe74beda4..2fdb2b0835 100644 --- a/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml +++ b/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml b/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml index 0bf74b1531..64cf9e2755 100644 --- a/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml +++ b/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen-plus-character-ja.toml b/providers/edenai/models/qwen/qwen-plus-character-ja.toml index 904508226e..bc75e2efcf 100644 --- a/providers/edenai/models/qwen/qwen-plus-character-ja.toml +++ b/providers/edenai/models/qwen/qwen-plus-character-ja.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = false structured_output = false -open_weights = true +open_weights = false [cost] input = 0.325 diff --git a/providers/edenai/models/qwen/qwen-plus-character.toml b/providers/edenai/models/qwen/qwen-plus-character.toml index c34b8a32b3..834bbb84a8 100644 --- a/providers/edenai/models/qwen/qwen-plus-character.toml +++ b/providers/edenai/models/qwen/qwen-plus-character.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = false structured_output = true -open_weights = true +open_weights = false [cost] input = 0.325 diff --git a/providers/edenai/models/qwen/qwen-plus-latest.toml b/providers/edenai/models/qwen/qwen-plus-latest.toml index 7f69172f9b..bff7b0fff1 100644 --- a/providers/edenai/models/qwen/qwen-plus-latest.toml +++ b/providers/edenai/models/qwen/qwen-plus-latest.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen-plus.toml b/providers/edenai/models/qwen/qwen-plus.toml index 5b18045a1b..c26ed7c5a0 100644 --- a/providers/edenai/models/qwen/qwen-plus.toml +++ b/providers/edenai/models/qwen/qwen-plus.toml @@ -2,7 +2,6 @@ base_model = "alibaba/qwen-plus" release_date = "2025-09-08" last_updated = "2026-08-01" structured_output = true -open_weights = true reasoning_options = [] [cost] @@ -11,6 +10,3 @@ output = 0.78 reasoning = 2.6 cache_read = 0.052 cache_write = 0.325 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen-turbo.toml b/providers/edenai/models/qwen/qwen-turbo.toml index d41905ae3b..4c03571ae1 100644 --- a/providers/edenai/models/qwen/qwen-turbo.toml +++ b/providers/edenai/models/qwen/qwen-turbo.toml @@ -3,7 +3,6 @@ release_date = "2026-07-30" last_updated = "2026-08-01" tool_call = false structured_output = true -open_weights = true reasoning_options = [] [cost] @@ -14,4 +13,3 @@ cache_read = 0.0065 [limit] context = 131_072 -output = 131_072 diff --git a/providers/edenai/models/qwen/qwen-vl-max.toml b/providers/edenai/models/qwen/qwen-vl-max.toml index 3ddf27a082..e17c02c90d 100644 --- a/providers/edenai/models/qwen/qwen-vl-max.toml +++ b/providers/edenai/models/qwen/qwen-vl-max.toml @@ -4,15 +4,11 @@ last_updated = "2026-08-01" attachment = true tool_call = false structured_output = true -open_weights = true [cost] input = 0.52 output = 2.08 cache_read = 0.104 -[limit] -output = 131_072 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen-vl-plus.toml b/providers/edenai/models/qwen/qwen-vl-plus.toml index d53ff1fdcd..f8eb2cf634 100644 --- a/providers/edenai/models/qwen/qwen-vl-plus.toml +++ b/providers/edenai/models/qwen/qwen-vl-plus.toml @@ -4,15 +4,11 @@ last_updated = "2026-08-01" attachment = true tool_call = false structured_output = false -open_weights = true [cost] input = 0.1365 output = 0.4095 cache_read = 0.0273 -[limit] -output = 131_072 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3-14b.toml b/providers/edenai/models/qwen/qwen3-14b.toml index f8b6f18941..603074b8ba 100644 --- a/providers/edenai/models/qwen/qwen3-14b.toml +++ b/providers/edenai/models/qwen/qwen3-14b.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml b/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml index 9a57897793..f42ca4f809 100644 --- a/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml +++ b/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = false structured_output = true -open_weights = true +open_weights = false [cost] input = 0.1495 diff --git a/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml b/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml index df57ade583..ebd41871d2 100644 --- a/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml +++ b/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-235b-a22b.toml b/providers/edenai/models/qwen/qwen3-235b-a22b.toml index 6d0220b22b..d7d69d2fbb 100644 --- a/providers/edenai/models/qwen/qwen3-235b-a22b.toml +++ b/providers/edenai/models/qwen/qwen3-235b-a22b.toml @@ -2,12 +2,10 @@ base_model = "alibaba/qwen3-235b-a22b" release_date = "2025-04-28" last_updated = "2026-08-01" structured_output = true +open_weights = false reasoning_options = [] [cost] input = 0.455 output = 1.82 reasoning = 5.46 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml b/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml index dde686665b..e0a7de04a1 100644 --- a/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml +++ b/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.13 diff --git a/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml b/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml index 0aca733079..258f1f0a17 100644 --- a/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml +++ b/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-30b-a3b.toml b/providers/edenai/models/qwen/qwen3-30b-a3b.toml index e25e4f40bd..c211a82700 100644 --- a/providers/edenai/models/qwen/qwen3-30b-a3b.toml +++ b/providers/edenai/models/qwen/qwen3-30b-a3b.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-32b.toml b/providers/edenai/models/qwen/qwen3-32b.toml index de98463608..49a81373ce 100644 --- a/providers/edenai/models/qwen/qwen3-32b.toml +++ b/providers/edenai/models/qwen/qwen3-32b.toml @@ -2,12 +2,10 @@ base_model = "alibaba/qwen3-32b" release_date = "2025-04-28" last_updated = "2026-08-01" structured_output = true +open_weights = false reasoning_options = [] [cost] input = 0.104 output = 0.416 reasoning = 0.416 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/qwen/qwen3-8b.toml b/providers/edenai/models/qwen/qwen3-8b.toml index e592ddb239..6430cbc296 100644 --- a/providers/edenai/models/qwen/qwen3-8b.toml +++ b/providers/edenai/models/qwen/qwen3-8b.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml b/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml index a825e60d3e..fd19155eab 100644 --- a/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml +++ b/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml @@ -2,10 +2,8 @@ base_model = "alibaba/qwen3-coder-30b-a3b-instruct" release_date = "2025-07-31" last_updated = "2026-08-01" structured_output = true +open_weights = false [cost] input = 0.2925 output = 1.4625 - -[limit] -output = 262_144 diff --git a/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml b/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml index 4f5df603bb..192d479512 100644 --- a/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml +++ b/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml @@ -3,10 +3,8 @@ release_date = "2026-07-30" last_updated = "2026-08-01" tool_call = false structured_output = false +open_weights = false [cost] input = 0.975 output = 4.875 - -[limit] -output = 262_144 diff --git a/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml b/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml index debc8f8c65..37120a68e1 100644 --- a/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml +++ b/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.195 diff --git a/providers/edenai/models/qwen/qwen3-coder-flash.toml b/providers/edenai/models/qwen/qwen3-coder-flash.toml index 5235c6f598..a954160272 100644 --- a/providers/edenai/models/qwen/qwen3-coder-flash.toml +++ b/providers/edenai/models/qwen/qwen3-coder-flash.toml @@ -2,13 +2,9 @@ base_model = "alibaba/qwen3-coder-flash" release_date = "2025-09-17" last_updated = "2026-08-01" structured_output = true -open_weights = true [cost] input = 0.195 output = 0.975 cache_read = 0.039 cache_write = 0.24375 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3-coder-next.toml b/providers/edenai/models/qwen/qwen3-coder-next.toml index 7d9d7ed83a..bae65b49d3 100644 --- a/providers/edenai/models/qwen/qwen3-coder-next.toml +++ b/providers/edenai/models/qwen/qwen3-coder-next.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.195 diff --git a/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml b/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml index 06fc00008e..38b6a21fab 100644 --- a/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml +++ b/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.65 diff --git a/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml b/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml index 1eaca095a3..b18ea1611e 100644 --- a/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml +++ b/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.65 diff --git a/providers/edenai/models/qwen/qwen3-coder-plus.toml b/providers/edenai/models/qwen/qwen3-coder-plus.toml index e05d4c69ec..1892162bba 100644 --- a/providers/edenai/models/qwen/qwen3-coder-plus.toml +++ b/providers/edenai/models/qwen/qwen3-coder-plus.toml @@ -2,7 +2,6 @@ base_model = "alibaba/qwen3-coder-plus" release_date = "2025-09-23" last_updated = "2026-08-01" structured_output = true -open_weights = true [cost] input = 0.65 @@ -12,4 +11,3 @@ cache_write = 0.8125 [limit] context = 1_000_000 -output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml b/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml index d66f3e6bf2..7bd2c0f502 100644 --- a/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml +++ b/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml @@ -6,7 +6,7 @@ attachment = false reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.78 diff --git a/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml b/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml index 54f10ca0e1..ae93dd01a9 100644 --- a/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml +++ b/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-max-preview.toml b/providers/edenai/models/qwen/qwen3-max-preview.toml index 6d508eed3a..af01939ecb 100644 --- a/providers/edenai/models/qwen/qwen3-max-preview.toml +++ b/providers/edenai/models/qwen/qwen3-max-preview.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-max.toml b/providers/edenai/models/qwen/qwen3-max.toml index 630fcf718a..44a25e05ec 100644 --- a/providers/edenai/models/qwen/qwen3-max.toml +++ b/providers/edenai/models/qwen/qwen3-max.toml @@ -2,7 +2,6 @@ base_model = "alibaba/qwen3-max" last_updated = "2026-08-01" reasoning = true structured_output = true -open_weights = true reasoning_options = [] [cost] @@ -10,6 +9,3 @@ input = 0.78 output = 3.9 cache_read = 0.156 cache_write = 0.975 - -[limit] -output = 262_144 diff --git a/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml b/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml index 6bab130bb9..ef3b254637 100644 --- a/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml +++ b/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml @@ -2,10 +2,8 @@ base_model = "alibaba/qwen3-next-80b-a3b-instruct" release_date = "2025-09-11" last_updated = "2026-08-01" structured_output = true +open_weights = false [cost] input = 0.0975 output = 0.78 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml b/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml index 2c25c3eeeb..fe37aabd6e 100644 --- a/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml +++ b/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml @@ -2,11 +2,9 @@ base_model = "alibaba/qwen3-next-80b-a3b-thinking" release_date = "2025-09-11" last_updated = "2026-08-01" structured_output = true +open_weights = false reasoning_options = [] [cost] input = 0.0975 output = 0.78 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml index bfe7a8f1a8..5358ebbd62 100644 --- a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml +++ b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.26 diff --git a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml index e4664f2627..3c28e9dc39 100644 --- a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml +++ b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml index eef3b54e53..93b9d01d68 100644 --- a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml +++ b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.13 diff --git a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml index a52d4f11c6..82551c5665 100644 --- a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml +++ b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml index 00109b8395..8c84318e22 100644 --- a/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml +++ b/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.104 diff --git a/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml index 744350f3ad..a39e34f54b 100644 --- a/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml +++ b/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = false structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml index d7e3168d1f..56bae7f3a0 100644 --- a/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml +++ b/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = true structured_output = true -open_weights = true +open_weights = false [cost] input = 0.117 diff --git a/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml index b61d3100bb..0c8d77c7ea 100644 --- a/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml +++ b/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml b/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml index b52c7602df..380d38ad5e 100644 --- a/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml +++ b/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = false structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml b/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml index c90e0fb3b7..dc885c2026 100644 --- a/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml +++ b/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml @@ -6,7 +6,7 @@ attachment = true reasoning = false tool_call = false structured_output = false -open_weights = true +open_weights = false [cost] input = 0.0325 diff --git a/providers/edenai/models/qwen/qwen3-vl-flash.toml b/providers/edenai/models/qwen/qwen3-vl-flash.toml index 5dee60bd59..058c172110 100644 --- a/providers/edenai/models/qwen/qwen3-vl-flash.toml +++ b/providers/edenai/models/qwen/qwen3-vl-flash.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = false structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml b/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml index 90d5c337cf..58396a350c 100644 --- a/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml +++ b/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = false structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml b/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml index d4b4e4ded0..7c8b83fe11 100644 --- a/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml +++ b/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = false structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3-vl-plus.toml b/providers/edenai/models/qwen/qwen3-vl-plus.toml index 9f3715d7af..3c2b797e31 100644 --- a/providers/edenai/models/qwen/qwen3-vl-plus.toml +++ b/providers/edenai/models/qwen/qwen3-vl-plus.toml @@ -5,7 +5,6 @@ attachment = true reasoning = false tool_call = false structured_output = true -open_weights = true [cost] input = 0.13 @@ -13,8 +12,5 @@ output = 1.04 cache_read = 0.026 cache_write = 0.1625 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml b/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml index db91512b3c..38f782c92d 100644 --- a/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml +++ b/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml @@ -1,14 +1,12 @@ base_model = "alibaba/qwen3.5-122b-a10b" release_date = "2026-02-25" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] input = 0.26 output = 2.08 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-27b.toml b/providers/edenai/models/qwen/qwen3.5-27b.toml index c856d73fa5..27d1fcccfb 100644 --- a/providers/edenai/models/qwen/qwen3.5-27b.toml +++ b/providers/edenai/models/qwen/qwen3.5-27b.toml @@ -1,14 +1,12 @@ base_model = "alibaba/qwen3.5-27b" release_date = "2026-02-25" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] input = 0.195 output = 1.56 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml b/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml index 8dce3af547..2cbe54d157 100644 --- a/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml +++ b/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml @@ -1,14 +1,12 @@ base_model = "alibaba/qwen3.5-35b-a3b" release_date = "2026-02-25" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] input = 0.1625 output = 1.3 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml b/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml index ab80998c64..48a8ba88a1 100644 --- a/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml +++ b/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml @@ -1,14 +1,12 @@ base_model = "alibaba/qwen3.5-397b-a17b" release_date = "2026-02-16" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] input = 0.39 output = 2.34 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml b/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml index e260361a74..bea4c67ad9 100644 --- a/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml +++ b/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.5-flash.toml b/providers/edenai/models/qwen/qwen3.5-flash.toml index 155c6111dd..17883f9cb2 100644 --- a/providers/edenai/models/qwen/qwen3.5-flash.toml +++ b/providers/edenai/models/qwen/qwen3.5-flash.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml b/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml index a906a1c8a3..e73c2bfafd 100644 --- a/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml +++ b/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml b/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml index 88672cd3b2..e409a0a96b 100644 --- a/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml +++ b/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.5-plus.toml b/providers/edenai/models/qwen/qwen3.5-plus.toml index a108cccfaf..6cad2d6f12 100644 --- a/providers/edenai/models/qwen/qwen3.5-plus.toml +++ b/providers/edenai/models/qwen/qwen3.5-plus.toml @@ -3,13 +3,9 @@ release_date = "2026-04-27" last_updated = "2026-08-01" attachment = true structured_output = true -open_weights = true reasoning_options = [] [cost] input = 0.26 output = 1.56 cache_write = 0.325 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3.6-27b.toml b/providers/edenai/models/qwen/qwen3.6-27b.toml index 5a72f98bbd..2b5a750eb4 100644 --- a/providers/edenai/models/qwen/qwen3.6-27b.toml +++ b/providers/edenai/models/qwen/qwen3.6-27b.toml @@ -1,14 +1,12 @@ base_model = "alibaba/qwen3.6-27b" release_date = "2026-04-27" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] input = 0.39 output = 2.34 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml b/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml index cec712e408..b00412770d 100644 --- a/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml +++ b/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml @@ -1,14 +1,12 @@ base_model = "alibaba/qwen3.6-35b-a3b" release_date = "2026-07-30" last_updated = "2026-08-01" +open_weights = false reasoning_options = [] [cost] input = 0.24375 output = 1.4625 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml b/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml index 4c8f193e49..8e1a0717ca 100644 --- a/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml +++ b/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.6-flash.toml b/providers/edenai/models/qwen/qwen3.6-flash.toml index 7e2bd0ccb4..06b8041fe8 100644 --- a/providers/edenai/models/qwen/qwen3.6-flash.toml +++ b/providers/edenai/models/qwen/qwen3.6-flash.toml @@ -1,12 +1,8 @@ base_model = "alibaba/qwen3.6-flash" last_updated = "2026-08-01" -open_weights = true reasoning_options = [] [cost] input = 0.1625 output = 0.975 cache_write = 0.203125 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3.6-max-preview.toml b/providers/edenai/models/qwen/qwen3.6-max-preview.toml index ab05afbe52..739a765e13 100644 --- a/providers/edenai/models/qwen/qwen3.6-max-preview.toml +++ b/providers/edenai/models/qwen/qwen3.6-max-preview.toml @@ -2,13 +2,9 @@ base_model = "alibaba/qwen3.6-max-preview" release_date = "2026-04-27" last_updated = "2026-08-01" structured_output = true -open_weights = true reasoning_options = [] [cost] input = 0.845 output = 5.07 cache_write = 1.05625 - -[limit] -output = 262_144 diff --git a/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml b/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml index 2b10a17fde..3e472d024a 100644 --- a/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml +++ b/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.6-plus.toml b/providers/edenai/models/qwen/qwen3.6-plus.toml index d806af707c..7c36a121a0 100644 --- a/providers/edenai/models/qwen/qwen3.6-plus.toml +++ b/providers/edenai/models/qwen/qwen3.6-plus.toml @@ -1,13 +1,9 @@ base_model = "alibaba/qwen3.6-plus" last_updated = "2026-08-01" structured_output = true -open_weights = true reasoning_options = [] [cost] input = 0.325 output = 1.95 cache_write = 0.40625 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml b/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml index 77a6fa1d63..4790bb398d 100644 --- a/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml +++ b/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.7-flash.toml b/providers/edenai/models/qwen/qwen3.7-flash.toml index abeb1c0759..f02b80148c 100644 --- a/providers/edenai/models/qwen/qwen3.7-flash.toml +++ b/providers/edenai/models/qwen/qwen3.7-flash.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml b/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml index c8e8dbe296..199f11e948 100644 --- a/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml +++ b/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml b/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml index 9d4f26e573..0a011f1ec1 100644 --- a/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml +++ b/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml b/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml index 782924c46e..11575b3196 100644 --- a/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml +++ b/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.7-max-preview.toml b/providers/edenai/models/qwen/qwen3.7-max-preview.toml index 6de707f7b3..e0a07f48e5 100644 --- a/providers/edenai/models/qwen/qwen3.7-max-preview.toml +++ b/providers/edenai/models/qwen/qwen3.7-max-preview.toml @@ -6,7 +6,7 @@ attachment = false reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.7-max.toml b/providers/edenai/models/qwen/qwen3.7-max.toml index c339a959f5..8d2b198478 100644 --- a/providers/edenai/models/qwen/qwen3.7-max.toml +++ b/providers/edenai/models/qwen/qwen3.7-max.toml @@ -1,7 +1,6 @@ base_model = "alibaba/qwen3.7-max" last_updated = "2026-08-01" structured_output = true -open_weights = true reasoning_options = [] [cost] @@ -9,6 +8,3 @@ input = 1.625 output = 4.875 cache_read = 0.325 cache_write = 2.03125 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml b/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml index a213642f29..3bf38fa3b5 100644 --- a/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml +++ b/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml @@ -6,7 +6,7 @@ attachment = true reasoning = true tool_call = true structured_output = true -open_weights = true +open_weights = false reasoning_options = [] [cost] diff --git a/providers/edenai/models/qwen/qwen3.7-plus.toml b/providers/edenai/models/qwen/qwen3.7-plus.toml index 870107e8e6..1e93df7ce3 100644 --- a/providers/edenai/models/qwen/qwen3.7-plus.toml +++ b/providers/edenai/models/qwen/qwen3.7-plus.toml @@ -2,7 +2,6 @@ base_model = "alibaba/qwen3.7-plus" release_date = "2026-06-03" last_updated = "2026-08-01" structured_output = true -open_weights = true reasoning_options = [] [cost] @@ -10,6 +9,3 @@ input = 0.26 output = 1.04 cache_read = 0.052 cache_write = 0.325 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/qwen/qwq-plus.toml b/providers/edenai/models/qwen/qwq-plus.toml index 73272a484d..6221e8aea1 100644 --- a/providers/edenai/models/qwen/qwq-plus.toml +++ b/providers/edenai/models/qwen/qwq-plus.toml @@ -3,12 +3,8 @@ release_date = "2026-07-30" last_updated = "2026-08-01" tool_call = false structured_output = false -open_weights = true reasoning_options = [] [cost] input = 0.52 output = 1.56 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml b/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml index 2bc00816e8..1ec5c4616c 100644 --- a/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml +++ b/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml @@ -11,4 +11,3 @@ output = 0.57425 [limit] context = 256_000 -output = 256_000 diff --git a/providers/edenai/models/scaleway/glm-5.2.toml b/providers/edenai/models/scaleway/glm-5.2.toml index 47d123209a..687ecb4ee6 100644 --- a/providers/edenai/models/scaleway/glm-5.2.toml +++ b/providers/edenai/models/scaleway/glm-5.2.toml @@ -11,4 +11,3 @@ output = 6.316749 [limit] context = 256_000 -output = 256_000 diff --git a/providers/edenai/models/scaleway/gpt-oss-120b.toml b/providers/edenai/models/scaleway/gpt-oss-120b.toml index 00c983d69d..827551acaa 100644 --- a/providers/edenai/models/scaleway/gpt-oss-120b.toml +++ b/providers/edenai/models/scaleway/gpt-oss-120b.toml @@ -11,4 +11,3 @@ output = 0.6891 [limit] context = 128_000 -output = 128_000 diff --git a/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml b/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml index 1f42ed6e5b..6eba4c7f8e 100644 --- a/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml +++ b/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml @@ -8,6 +8,3 @@ open_weights = false [cost] input = 1.03365 output = 1.03365 - -[limit] -output = 128_000 diff --git a/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml b/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml index b2dcdba080..3f04374617 100644 --- a/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml +++ b/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml @@ -10,4 +10,3 @@ output = 0.9188 [limit] context = 128_000 -output = 128_000 diff --git a/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml b/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml index 9fdea7d7bf..4889ff2ff5 100644 --- a/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml +++ b/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml @@ -11,7 +11,6 @@ output = 4.1346 [limit] context = 250_000 -output = 250_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml b/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml index a54a34aea2..fdb70d4bdf 100644 --- a/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml +++ b/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml @@ -11,7 +11,6 @@ output = 1.72275 [limit] context = 256_000 -output = 256_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml b/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml index 02242ef4ae..e61177e38e 100644 --- a/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml +++ b/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml @@ -9,8 +9,5 @@ reasoning_options = [] input = 0.17 output = 0.25 -[limit] -output = 262_144 - [modalities] input = ["text", "image", "video"] diff --git a/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml b/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml index bd3f6fc188..a5950b5bfd 100644 --- a/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml +++ b/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 0.39 output = 0.97 -[limit] -output = 262_144 - [modalities] input = ["image", "text", "video"] diff --git a/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml b/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml index e9a781ffed..2b3a7209bb 100644 --- a/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml +++ b/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml @@ -10,7 +10,6 @@ cache_read = 0.3 [limit] context = 1_000_000 -output = 1_000_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml b/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml index 4fc29440c6..5f04cc67fc 100644 --- a/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml +++ b/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml @@ -11,4 +11,3 @@ cache_read = 0.2 [limit] context = 512_288 -output = 512_288 diff --git a/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml b/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml index 0c94b05cc3..6165c4a61f 100644 --- a/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml +++ b/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml @@ -6,6 +6,3 @@ reasoning_options = [] [cost] input = 0.15 output = 0.6 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml b/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml index 99c6bb9520..1d18c8547b 100644 --- a/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml +++ b/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml @@ -6,6 +6,3 @@ reasoning_options = [] [cost] input = 0.05 output = 0.2 - -[limit] -output = 131_072 diff --git a/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml b/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml index a6e0adcce8..add1613035 100644 --- a/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml +++ b/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml @@ -12,4 +12,3 @@ cache_read = 0.17 [limit] context = 524_288 -output = 524_288 diff --git a/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml b/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml index 207853580e..ad0eea5112 100644 --- a/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml +++ b/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml @@ -11,4 +11,3 @@ cache_read = 0.26 [limit] context = 512_000 -output = 512_000 diff --git a/providers/edenai/models/vertex/claude-fable-5.toml b/providers/edenai/models/vertex/claude-fable-5.toml index a04dce4701..3c739cb629 100644 --- a/providers/edenai/models/vertex/claude-fable-5.toml +++ b/providers/edenai/models/vertex/claude-fable-5.toml @@ -8,6 +8,3 @@ input = 10 output = 50 cache_read = 1 cache_write = 12.5 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-fable-5@eu.toml b/providers/edenai/models/vertex/claude-fable-5@eu.toml index ed9d417a6f..bdc3afff47 100644 --- a/providers/edenai/models/vertex/claude-fable-5@eu.toml +++ b/providers/edenai/models/vertex/claude-fable-5@eu.toml @@ -8,6 +8,3 @@ input = 11 output = 55 cache_read = 1.1 cache_write = 13.75 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-haiku-4-5.toml b/providers/edenai/models/vertex/claude-haiku-4-5.toml index 202b0b2eed..06fca54354 100644 --- a/providers/edenai/models/vertex/claude-haiku-4-5.toml +++ b/providers/edenai/models/vertex/claude-haiku-4-5.toml @@ -8,6 +8,3 @@ input = 1 output = 5 cache_read = 0.1 cache_write = 1.25 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-1.toml b/providers/edenai/models/vertex/claude-opus-4-1.toml index 1099122c81..08b1806a04 100644 --- a/providers/edenai/models/vertex/claude-opus-4-1.toml +++ b/providers/edenai/models/vertex/claude-opus-4-1.toml @@ -8,6 +8,3 @@ input = 15 output = 75 cache_read = 1.5 cache_write = 18.75 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-5.toml b/providers/edenai/models/vertex/claude-opus-4-5.toml index f27adb3add..5eb221cdaf 100644 --- a/providers/edenai/models/vertex/claude-opus-4-5.toml +++ b/providers/edenai/models/vertex/claude-opus-4-5.toml @@ -8,6 +8,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 200_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-6.toml b/providers/edenai/models/vertex/claude-opus-4-6.toml index 5f37c18a17..46b6d8b7c5 100644 --- a/providers/edenai/models/vertex/claude-opus-4-6.toml +++ b/providers/edenai/models/vertex/claude-opus-4-6.toml @@ -9,6 +9,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-7.toml b/providers/edenai/models/vertex/claude-opus-4-7.toml index 3cc4cc4ec8..549fc82d5c 100644 --- a/providers/edenai/models/vertex/claude-opus-4-7.toml +++ b/providers/edenai/models/vertex/claude-opus-4-7.toml @@ -8,6 +8,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-7@eu.toml b/providers/edenai/models/vertex/claude-opus-4-7@eu.toml index 6a78cac136..b630b13a9c 100644 --- a/providers/edenai/models/vertex/claude-opus-4-7@eu.toml +++ b/providers/edenai/models/vertex/claude-opus-4-7@eu.toml @@ -8,6 +8,3 @@ input = 5.5 output = 27.5 cache_read = 0.55 cache_write = 6.875 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-7@us.toml b/providers/edenai/models/vertex/claude-opus-4-7@us.toml index 6a78cac136..b630b13a9c 100644 --- a/providers/edenai/models/vertex/claude-opus-4-7@us.toml +++ b/providers/edenai/models/vertex/claude-opus-4-7@us.toml @@ -8,6 +8,3 @@ input = 5.5 output = 27.5 cache_read = 0.55 cache_write = 6.875 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-8.toml b/providers/edenai/models/vertex/claude-opus-4-8.toml index b37d330646..41d61ef245 100644 --- a/providers/edenai/models/vertex/claude-opus-4-8.toml +++ b/providers/edenai/models/vertex/claude-opus-4-8.toml @@ -9,6 +9,3 @@ input = 5 output = 25 cache_read = 0.5 cache_write = 6.25 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-8@eu.toml b/providers/edenai/models/vertex/claude-opus-4-8@eu.toml index d01218df93..081a5cb685 100644 --- a/providers/edenai/models/vertex/claude-opus-4-8@eu.toml +++ b/providers/edenai/models/vertex/claude-opus-4-8@eu.toml @@ -9,6 +9,3 @@ input = 5.5 output = 27.5 cache_read = 0.55 cache_write = 6.875 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-opus-4-8@us.toml b/providers/edenai/models/vertex/claude-opus-4-8@us.toml index d01218df93..081a5cb685 100644 --- a/providers/edenai/models/vertex/claude-opus-4-8@us.toml +++ b/providers/edenai/models/vertex/claude-opus-4-8@us.toml @@ -9,6 +9,3 @@ input = 5.5 output = 27.5 cache_read = 0.55 cache_write = 6.875 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-4-5.toml b/providers/edenai/models/vertex/claude-sonnet-4-5.toml index 226e4a04e4..410da17f7e 100644 --- a/providers/edenai/models/vertex/claude-sonnet-4-5.toml +++ b/providers/edenai/models/vertex/claude-sonnet-4-5.toml @@ -11,4 +11,3 @@ cache_write = 3.75 [limit] context = 1_000_000 -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-4-6.toml b/providers/edenai/models/vertex/claude-sonnet-4-6.toml index 39343b225d..2a98900c73 100644 --- a/providers/edenai/models/vertex/claude-sonnet-4-6.toml +++ b/providers/edenai/models/vertex/claude-sonnet-4-6.toml @@ -8,6 +8,3 @@ input = 3 output = 15 cache_read = 0.3 cache_write = 3.75 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-5.toml b/providers/edenai/models/vertex/claude-sonnet-5.toml index 89be7fa2b7..a341529363 100644 --- a/providers/edenai/models/vertex/claude-sonnet-5.toml +++ b/providers/edenai/models/vertex/claude-sonnet-5.toml @@ -8,6 +8,3 @@ input = 2 output = 10 cache_read = 0.2 cache_write = 2.5 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-5@eu.toml b/providers/edenai/models/vertex/claude-sonnet-5@eu.toml index e0ed1bb86d..fb58d97d3c 100644 --- a/providers/edenai/models/vertex/claude-sonnet-5@eu.toml +++ b/providers/edenai/models/vertex/claude-sonnet-5@eu.toml @@ -8,6 +8,3 @@ input = 2.2 output = 11 cache_read = 0.22 cache_write = 2.75 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-5@us.toml b/providers/edenai/models/vertex/claude-sonnet-5@us.toml index e0ed1bb86d..fb58d97d3c 100644 --- a/providers/edenai/models/vertex/claude-sonnet-5@us.toml +++ b/providers/edenai/models/vertex/claude-sonnet-5@us.toml @@ -8,6 +8,3 @@ input = 2.2 output = 11 cache_read = 0.22 cache_write = 2.75 - -[limit] -output = 1_000_000 diff --git a/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml b/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml index 2d173f174f..8a35c9fb41 100644 --- a/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml +++ b/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml @@ -10,6 +10,3 @@ reasoning = 0.4 cache_read = 0.01 cache_write = 0.083333 input_audio = 0.3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-2.5-flash.toml b/providers/edenai/models/vertex/gemini-2.5-flash.toml index b9cdd36d61..446ecbc568 100644 --- a/providers/edenai/models/vertex/gemini-2.5-flash.toml +++ b/providers/edenai/models/vertex/gemini-2.5-flash.toml @@ -9,6 +9,3 @@ reasoning = 2.5 cache_read = 0.03 cache_write = 0.083333 input_audio = 1 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-2.5-pro.toml b/providers/edenai/models/vertex/gemini-2.5-pro.toml index 8ece6136f6..cf00e491e7 100644 --- a/providers/edenai/models/vertex/gemini-2.5-pro.toml +++ b/providers/edenai/models/vertex/gemini-2.5-pro.toml @@ -9,6 +9,3 @@ reasoning = 10 cache_read = 0.125 cache_write = 0.375 input_audio = 1.25 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3-flash-preview.toml b/providers/edenai/models/vertex/gemini-3-flash-preview.toml index 5456db9671..fc73b39efa 100644 --- a/providers/edenai/models/vertex/gemini-3-flash-preview.toml +++ b/providers/edenai/models/vertex/gemini-3-flash-preview.toml @@ -9,6 +9,3 @@ reasoning = 3 cache_read = 0.05 cache_write = 0.083333 input_audio = 1 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3-pro-image.toml b/providers/edenai/models/vertex/gemini-3-pro-image.toml index 63f3d3fa62..f1aaa59f85 100644 --- a/providers/edenai/models/vertex/gemini-3-pro-image.toml +++ b/providers/edenai/models/vertex/gemini-3-pro-image.toml @@ -11,6 +11,3 @@ reasoning = 12 cache_read = 0.2 cache_write = 0.375 input_audio = 2 - -[limit] -output = 65_536 diff --git a/providers/edenai/models/vertex/gemini-3.1-flash-image.toml b/providers/edenai/models/vertex/gemini-3.1-flash-image.toml index 46a2d848f4..9b22e48977 100644 --- a/providers/edenai/models/vertex/gemini-3.1-flash-image.toml +++ b/providers/edenai/models/vertex/gemini-3.1-flash-image.toml @@ -8,8 +8,5 @@ reasoning_options = [] input = 0.5 output = 3 -[limit] -output = 131_072 - [modalities] input = ["image", "text"] diff --git a/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml b/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml index 48b0cae08b..2b8ebc0c51 100644 --- a/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml +++ b/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml @@ -7,6 +7,3 @@ reasoning_options = [] [cost] input = 0.25 output = 1.5 - -[limit] -output = 65_536 diff --git a/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml b/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml index 4aad224aa5..47f1b71ebb 100644 --- a/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml +++ b/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml @@ -9,6 +9,3 @@ reasoning = 12 cache_read = 0.2 cache_write = 0.375 input_audio = 2 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml b/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml index 565c18b5b4..d3809ec02a 100644 --- a/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml +++ b/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml @@ -9,6 +9,3 @@ reasoning = 2.5 cache_read = 0.03 cache_write = 0.083333 input_audio = 0.3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml b/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml index 565c18b5b4..d3809ec02a 100644 --- a/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml +++ b/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml @@ -9,6 +9,3 @@ reasoning = 2.5 cache_read = 0.03 cache_write = 0.083333 input_audio = 0.3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml b/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml index 565c18b5b4..d3809ec02a 100644 --- a/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml +++ b/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml @@ -9,6 +9,3 @@ reasoning = 2.5 cache_read = 0.03 cache_write = 0.083333 input_audio = 0.3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash.toml b/providers/edenai/models/vertex/gemini-3.5-flash.toml index 341fe75c72..45c1ca2aa2 100644 --- a/providers/edenai/models/vertex/gemini-3.5-flash.toml +++ b/providers/edenai/models/vertex/gemini-3.5-flash.toml @@ -9,6 +9,3 @@ reasoning = 9 cache_read = 0.15 cache_write = 0.083333 input_audio = 3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml b/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml index 341fe75c72..45c1ca2aa2 100644 --- a/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml +++ b/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml @@ -9,6 +9,3 @@ reasoning = 9 cache_read = 0.15 cache_write = 0.083333 input_audio = 3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash@us.toml b/providers/edenai/models/vertex/gemini-3.5-flash@us.toml index 341fe75c72..45c1ca2aa2 100644 --- a/providers/edenai/models/vertex/gemini-3.5-flash@us.toml +++ b/providers/edenai/models/vertex/gemini-3.5-flash@us.toml @@ -9,6 +9,3 @@ reasoning = 9 cache_read = 0.15 cache_write = 0.083333 input_audio = 3 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/vertex/gemini-3.6-flash.toml b/providers/edenai/models/vertex/gemini-3.6-flash.toml index ed74c59262..bbbf040226 100644 --- a/providers/edenai/models/vertex/gemini-3.6-flash.toml +++ b/providers/edenai/models/vertex/gemini-3.6-flash.toml @@ -9,6 +9,3 @@ reasoning = 7.5 cache_read = 0.15 cache_write = 0.083333 input_audio = 1.5 - -[limit] -output = 1_048_576 diff --git a/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml b/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml index 2f6d2f20b7..346a2cd9a9 100644 --- a/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml +++ b/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml @@ -10,7 +10,6 @@ cache_read = 0.2 [limit] context = 2_000_000 -output = 2_000_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml b/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml index 7a83b74240..41d33ca629 100644 --- a/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml +++ b/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml @@ -11,7 +11,6 @@ cache_read = 0.2 [limit] context = 2_000_000 -output = 2_000_000 [modalities] input = ["text", "image"] diff --git a/providers/edenai/models/xai/grok-4.3.toml b/providers/edenai/models/xai/grok-4.3.toml index 641de3eeb6..bc19cdcc9c 100644 --- a/providers/edenai/models/xai/grok-4.3.toml +++ b/providers/edenai/models/xai/grok-4.3.toml @@ -7,6 +7,3 @@ reasoning_options = [] input = 1.25 output = 2.5 cache_read = 0.2 - -[limit] -output = 1_000_000 From e30a7a98b2ec410299e3dac407b597562e6cafbd Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 15:19:25 +0100 Subject: [PATCH 06/14] chore(edenai): defer catalog to automated sync --- .../amazon/ai21.jamba-1-5-large-v1:0.toml | 21 ---------------- .../amazon/ai21.jamba-1-5-mini-v1:0.toml | 21 ---------------- .../amazon/amazon.nova-2-lite-v1:0.toml | 23 ------------------ .../amazon/amazon.nova-2-lite-v1:0@eu.toml | 23 ------------------ .../amazon/amazon.nova-2-lite-v1:0@us.toml | 23 ------------------ .../models/amazon/amazon.nova-lite-v1:0.toml | 21 ---------------- .../amazon/amazon.nova-lite-v1:0@us.toml | 21 ---------------- .../models/amazon/amazon.nova-micro-v1:0.toml | 21 ---------------- .../amazon/amazon.nova-micro-v1:0@us.toml | 21 ---------------- .../models/amazon/amazon.nova-pro-v1:0.toml | 21 ---------------- .../amazon/amazon.nova-pro-v1:0@us.toml | 21 ---------------- ...nthropic.claude-3-haiku-20240307-v1:0.toml | 23 ------------------ ...thropic.claude-3-sonnet-20240229-v1:0.toml | 23 ------------------ ...hropic.claude-haiku-4-5-20251001-v1:0.toml | 24 ------------------- ...pic.claude-haiku-4-5-20251001-v1:0@eu.toml | 24 ------------------- ...pic.claude-haiku-4-5-20251001-v1:0@us.toml | 24 ------------------- ...thropic.claude-opus-4-1-20250805-v1:0.toml | 24 ------------------- ...thropic.claude-opus-4-5-20251101-v1:0.toml | 24 ------------------- ...opic.claude-opus-4-5-20251101-v1:0@eu.toml | 24 ------------------- ...opic.claude-opus-4-5-20251101-v1:0@us.toml | 24 ------------------- .../amazon/anthropic.claude-opus-4-6-v1.toml | 24 ------------------- .../anthropic.claude-opus-4-6-v1@eu.toml | 24 ------------------- .../anthropic.claude-opus-4-6-v1@us.toml | 24 ------------------- .../amazon/anthropic.claude-opus-4-7.toml | 24 ------------------- .../amazon/anthropic.claude-opus-4-7@eu.toml | 24 ------------------- .../amazon/anthropic.claude-opus-4-7@us.toml | 24 ------------------- .../amazon/anthropic.claude-opus-4-8.toml | 24 ------------------- .../amazon/anthropic.claude-opus-4-8@eu.toml | 24 ------------------- .../amazon/anthropic.claude-opus-4-8@us.toml | 24 ------------------- .../amazon/anthropic.claude-opus-5.toml | 24 ------------------- .../amazon/anthropic.claude-opus-5@eu.toml | 24 ------------------- .../amazon/anthropic.claude-opus-5@us.toml | 24 ------------------- ...ropic.claude-sonnet-4-5-20250929-v1:0.toml | 24 ------------------- ...ic.claude-sonnet-4-5-20250929-v1:0@eu.toml | 24 ------------------- ...ic.claude-sonnet-4-5-20250929-v1:0@us.toml | 24 ------------------- .../amazon/anthropic.claude-sonnet-4-6.toml | 24 ------------------- .../anthropic.claude-sonnet-4-6@eu.toml | 24 ------------------- .../anthropic.claude-sonnet-4-6@us.toml | 24 ------------------- .../amazon/anthropic.claude-sonnet-5.toml | 24 ------------------- .../amazon/anthropic.claude-sonnet-5@eu.toml | 24 ------------------- .../amazon/anthropic.claude-sonnet-5@us.toml | 24 ------------------- .../amazon/cohere.command-r-plus-v1:0.toml | 21 ---------------- .../models/amazon/cohere.command-r-v1:0.toml | 21 ---------------- .../models/amazon/deepseek.r1-v1:0.toml | 22 ----------------- .../edenai/models/amazon/deepseek.v3.2.toml | 22 ----------------- .../models/amazon/google.gemma-3-12b-it.toml | 21 ---------------- .../amazon/google.gemma-3-12b-it@us.toml | 21 ---------------- .../models/amazon/google.gemma-3-27b-it.toml | 21 ---------------- .../amazon/google.gemma-3-27b-it@us.toml | 21 ---------------- .../models/amazon/google.gemma-3-4b-it.toml | 21 ---------------- .../amazon/google.gemma-3-4b-it@us.toml | 21 ---------------- .../meta.llama3-1-70b-instruct-v1:0.toml | 21 ---------------- .../meta.llama3-1-8b-instruct-v1:0.toml | 21 ---------------- .../meta.llama3-3-70b-instruct-v1:0.toml | 21 ---------------- .../amazon/meta.llama3-70b-instruct-v1:0.toml | 21 ---------------- .../amazon/meta.llama3-8b-instruct-v1:0.toml | 21 ---------------- .../models/amazon/minimax.minimax-m2.1.toml | 21 ---------------- .../amazon/minimax.minimax-m2.1@us.toml | 21 ---------------- .../models/amazon/minimax.minimax-m2.5.toml | 22 ----------------- .../amazon/minimax.minimax-m2.5@us.toml | 22 ----------------- .../models/amazon/minimax.minimax-m2.toml | 21 ---------------- .../models/amazon/minimax.minimax-m2@us.toml | 21 ---------------- .../amazon/mistral.devstral-2-123b.toml | 21 ---------------- .../amazon/mistral.devstral-2-123b@us.toml | 21 ---------------- .../amazon/mistral.magistral-small-2509.toml | 22 ----------------- .../mistral.magistral-small-2509@us.toml | 22 ----------------- .../mistral.ministral-3-14b-instruct.toml | 21 ---------------- .../mistral.ministral-3-14b-instruct@us.toml | 21 ---------------- .../mistral.ministral-3-3b-instruct.toml | 21 ---------------- .../mistral.ministral-3-3b-instruct@us.toml | 21 ---------------- .../mistral.ministral-3-8b-instruct.toml | 21 ---------------- .../mistral.ministral-3-8b-instruct@us.toml | 21 ---------------- .../mistral.mistral-7b-instruct-v0:2.toml | 21 ---------------- .../mistral.mistral-7b-instruct-v0:2@us.toml | 21 ---------------- .../mistral.mistral-large-2402-v1:0.toml | 21 ---------------- .../mistral.mistral-large-2402-v1:0@us.toml | 21 ---------------- ...mistral.mistral-large-3-675b-instruct.toml | 21 ---------------- .../mistral.mistral-small-2402-v1:0.toml | 21 ---------------- .../mistral.mixtral-8x7b-instruct-v0:1.toml | 21 ---------------- ...mistral.mixtral-8x7b-instruct-v0:1@us.toml | 21 ---------------- .../mistral.pixtral-large-2502-v1:0.toml | 21 ---------------- .../mistral.pixtral-large-2502-v1:0@us.toml | 21 ---------------- .../amazon/mistral.voxtral-mini-3b-2507.toml | 21 ---------------- .../mistral.voxtral-mini-3b-2507@us.toml | 21 ---------------- .../mistral.voxtral-small-24b-2507.toml | 21 ---------------- .../mistral.voxtral-small-24b-2507@us.toml | 21 ---------------- .../amazon/moonshot.kimi-k2-thinking.toml | 22 ----------------- .../models/amazon/moonshotai.kimi-k2.5.toml | 22 ----------------- .../amazon/nvidia.nemotron-nano-12b-v2.toml | 21 ---------------- .../nvidia.nemotron-nano-12b-v2@us.toml | 21 ---------------- .../amazon/nvidia.nemotron-nano-3-30b.toml | 21 ---------------- .../amazon/nvidia.nemotron-nano-3-30b@us.toml | 21 ---------------- .../amazon/nvidia.nemotron-nano-9b-v2.toml | 21 ---------------- .../amazon/nvidia.nemotron-nano-9b-v2@us.toml | 21 ---------------- .../amazon/nvidia.nemotron-super-3-120b.toml | 22 ----------------- .../nvidia.nemotron-super-3-120b@us.toml | 22 ----------------- .../amazon/openai.gpt-oss-120b-1:0.toml | 22 ----------------- .../amazon/openai.gpt-oss-120b-1:0@us.toml | 22 ----------------- .../models/amazon/openai.gpt-oss-20b-1:0.toml | 22 ----------------- .../amazon/openai.gpt-oss-20b-1:0@us.toml | 22 ----------------- .../amazon/openai.gpt-oss-safeguard-120b.toml | 21 ---------------- .../openai.gpt-oss-safeguard-120b@us.toml | 21 ---------------- .../amazon/openai.gpt-oss-safeguard-20b.toml | 21 ---------------- .../openai.gpt-oss-safeguard-20b@us.toml | 21 ---------------- .../models/amazon/qwen.qwen3-32b-v1:0.toml | 22 ----------------- .../models/amazon/qwen.qwen3-32b-v1:0@us.toml | 22 ----------------- .../amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml | 22 ----------------- .../qwen.qwen3-coder-30b-a3b-v1:0@us.toml | 22 ----------------- .../models/amazon/qwen.qwen3-coder-next.toml | 21 ---------------- .../amazon/qwen.qwen3-next-80b-a3b.toml | 21 ---------------- .../amazon/qwen.qwen3-next-80b-a3b@us.toml | 21 ---------------- .../amazon/qwen.qwen3-vl-235b-a22b.toml | 21 ---------------- .../amazon/qwen.qwen3-vl-235b-a22b@us.toml | 21 ---------------- .../models/amazon/writer.palmyra-x4-v1:0.toml | 21 ---------------- .../models/amazon/writer.palmyra-x5-v1:0.toml | 21 ---------------- .../models/amazon/zai.glm-4.7-flash.toml | 22 ----------------- .../models/amazon/zai.glm-4.7-flash@us.toml | 22 ----------------- .../edenai/models/amazon/zai.glm-4.7.toml | 22 ----------------- providers/edenai/models/amazon/zai.glm-5.toml | 22 ----------------- .../models/anthropic/claude-fable-5.toml | 10 -------- .../anthropic/claude-haiku-4-5-20251001.toml | 10 -------- .../models/anthropic/claude-haiku-4-5.toml | 10 -------- .../anthropic/claude-opus-4-1-20250805.toml | 10 -------- .../models/anthropic/claude-opus-4-1.toml | 10 -------- .../anthropic/claude-opus-4-5-20251101.toml | 11 --------- .../models/anthropic/claude-opus-4-5.toml | 10 -------- .../models/anthropic/claude-opus-4-6.toml | 11 --------- .../models/anthropic/claude-opus-4-7.toml | 10 -------- .../models/anthropic/claude-opus-4-8.toml | 11 --------- .../models/anthropic/claude-opus-5.toml | 10 -------- .../anthropic/claude-sonnet-4-5-20250929.toml | 13 ---------- .../models/anthropic/claude-sonnet-4-6.toml | 10 -------- .../models/anthropic/claude-sonnet-5.toml | 10 -------- .../edenai/models/azure/gpt-4o-mini.toml | 11 --------- .../edenai/models/azure/gpt-4o-mini@us.toml | 11 --------- providers/edenai/models/azure/gpt-4o.toml | 11 --------- providers/edenai/models/azure/gpt-4o@eu.toml | 11 --------- providers/edenai/models/azure/gpt-4o@us.toml | 11 --------- .../edenai/models/azure/gpt-5-codex.toml | 17 ------------- providers/edenai/models/azure/gpt-5-mini.toml | 16 ------------- .../edenai/models/azure/gpt-5-mini@eu.toml | 16 ------------- .../edenai/models/azure/gpt-5-mini@us.toml | 16 ------------- providers/edenai/models/azure/gpt-5-nano.toml | 16 ------------- .../edenai/models/azure/gpt-5-nano@eu.toml | 16 ------------- .../edenai/models/azure/gpt-5-nano@us.toml | 16 ------------- providers/edenai/models/azure/gpt-5-pro.toml | 15 ------------ .../models/azure/gpt-5.1-codex-max.toml | 16 ------------- .../models/azure/gpt-5.1-codex-mini.toml | 16 ------------- .../edenai/models/azure/gpt-5.1-codex.toml | 16 ------------- providers/edenai/models/azure/gpt-5.1.toml | 16 ------------- providers/edenai/models/azure/gpt-5.1@eu.toml | 16 ------------- providers/edenai/models/azure/gpt-5.1@us.toml | 16 ------------- .../edenai/models/azure/gpt-5.2-codex.toml | 13 ---------- providers/edenai/models/azure/gpt-5.2.toml | 16 ------------- providers/edenai/models/azure/gpt-5.2@us.toml | 16 ------------- .../edenai/models/azure/gpt-5.3-codex.toml | 13 ---------- .../edenai/models/azure/gpt-5.4-mini.toml | 16 ------------- .../edenai/models/azure/gpt-5.4-mini@eu.toml | 16 ------------- .../edenai/models/azure/gpt-5.4-mini@us.toml | 16 ------------- .../edenai/models/azure/gpt-5.4-nano.toml | 16 ------------- .../edenai/models/azure/gpt-5.4-nano@us.toml | 16 ------------- .../edenai/models/azure/gpt-5.4-pro.toml | 12 ---------- providers/edenai/models/azure/gpt-5.4.toml | 9 ------- providers/edenai/models/azure/gpt-5.4@eu.toml | 9 ------- providers/edenai/models/azure/gpt-5.4@us.toml | 9 ------- providers/edenai/models/azure/gpt-5.5.toml | 10 -------- providers/edenai/models/azure/gpt-5.5@eu.toml | 10 -------- providers/edenai/models/azure/gpt-5.5@us.toml | 10 -------- .../edenai/models/azure/gpt-5.6-luna.toml | 10 -------- .../edenai/models/azure/gpt-5.6-luna@eu.toml | 10 -------- .../edenai/models/azure/gpt-5.6-luna@us.toml | 10 -------- .../edenai/models/azure/gpt-5.6-sol.toml | 10 -------- .../edenai/models/azure/gpt-5.6-sol@eu.toml | 10 -------- .../edenai/models/azure/gpt-5.6-sol@us.toml | 10 -------- .../edenai/models/azure/gpt-5.6-terra.toml | 10 -------- .../edenai/models/azure/gpt-5.6-terra@eu.toml | 10 -------- .../edenai/models/azure/gpt-5.6-terra@us.toml | 10 -------- providers/edenai/models/azure/gpt-5.toml | 16 ------------- providers/edenai/models/azure/gpt-5@eu.toml | 16 ------------- providers/edenai/models/azure/gpt-5@us.toml | 16 ------------- providers/edenai/models/azure/o3.toml | 12 ---------- providers/edenai/models/azure/o3@eu.toml | 12 ---------- providers/edenai/models/azure/o3@us.toml | 12 ---------- .../models/bytedance/seed-1-6-250915.toml | 22 ----------------- .../bytedance/seed-1-6-flash-250715.toml | 22 ----------------- .../bytedance/seed-2-0-lite-260228.toml | 23 ------------------ .../bytedance/seed-2-0-lite-260428.toml | 22 ----------------- .../bytedance/seed-2-0-mini-260215.toml | 23 ------------------ .../bytedance/seed-2-0-mini-260428.toml | 22 ----------------- .../edenai/models/cerebras/gpt-oss-120b.toml | 9 ------- .../edenai/models/cerebras/zai-glm-4.7.toml | 22 ----------------- .../aisingapore/gemma-sea-lion-v4-27b-it.toml | 21 ---------------- .../deepseek-r1-distill-qwen-32b.toml | 22 ----------------- .../@cf/google/gemma-2b-it-lora.toml | 21 ---------------- .../@cf/google/gemma-4-26b-a4b-it.toml | 22 ----------------- .../@cf/google/gemma-7b-it-lora.toml | 21 ---------------- .../@cf/ibm-granite/granite-4.0-h-micro.toml | 21 ---------------- .../meta-llama/llama-2-7b-chat-hf-lora.toml | 21 ---------------- .../@cf/meta/llama-3.1-8b-instruct-fp8.toml | 21 ---------------- .../@cf/meta/llama-3.2-1b-instruct.toml | 21 ---------------- .../@cf/meta/llama-3.2-3b-instruct.toml | 21 ---------------- .../meta/llama-3.3-70b-instruct-fp8-fast.toml | 21 ---------------- .../meta/llama-4-scout-17b-16e-instruct.toml | 21 ---------------- .../cloudflare/@cf/meta/llama-guard-3-8b.toml | 21 ---------------- .../mistral-7b-instruct-v0.2-lora.toml | 21 ---------------- .../mistral-small-3.1-24b-instruct.toml | 21 ---------------- .../cloudflare/@cf/moonshotai/kimi-k2.6.toml | 23 ------------------ .../@cf/moonshotai/kimi-k2.7-code.toml | 23 ------------------ .../@cf/nvidia/nemotron-3-120b-a12b.toml | 22 ----------------- .../cloudflare/@cf/openai/gpt-oss-120b.toml | 22 ----------------- .../cloudflare/@cf/openai/gpt-oss-20b.toml | 22 ----------------- .../@cf/qwen/qwen2.5-coder-32b-instruct.toml | 21 ---------------- .../@cf/qwen/qwen3-30b-a3b-fp8.toml | 22 ----------------- .../models/cloudflare/@cf/qwen/qwq-32b.toml | 22 ----------------- .../cloudflare/@cf/zai-org/glm-4.7-flash.toml | 22 ----------------- .../cloudflare/@cf/zai-org/glm-5.2.toml | 23 ------------------ .../models/cohere/command-a-03-2025.toml | 11 --------- .../models/cohere/command-r-08-2024.toml | 8 ------- .../models/cohere/command-r-plus-08-2024.toml | 8 ------- .../models/cohere/command-r7b-12-2024.toml | 12 ---------- .../databricks-claude-haiku-4-5.toml | 22 ----------------- .../databricks-claude-opus-4-1.toml | 22 ----------------- .../databricks-claude-opus-4-5.toml | 22 ----------------- .../databricks-claude-opus-4-6.toml | 22 ----------------- .../databricks-claude-opus-4-7.toml | 22 ----------------- .../databricks-claude-opus-4-8.toml | 22 ----------------- .../databricks-claude-sonnet-4-5.toml | 22 ----------------- .../databricks-claude-sonnet-4-6.toml | 22 ----------------- .../databricks-gemini-2-5-flash.toml | 21 ---------------- .../databricks/databricks-gemini-2-5-pro.toml | 21 ---------------- .../databricks/databricks-gemma-3-12b.toml | 21 ---------------- .../models/databricks/databricks-gpt-5-1.toml | 21 ---------------- .../databricks/databricks-gpt-5-4-mini.toml | 22 ----------------- .../databricks/databricks-gpt-5-4-nano.toml | 22 ----------------- .../models/databricks/databricks-gpt-5-4.toml | 22 ----------------- .../models/databricks/databricks-gpt-5-5.toml | 22 ----------------- .../databricks/databricks-gpt-5-6-luna.toml | 22 ----------------- .../databricks/databricks-gpt-5-6-sol.toml | 22 ----------------- .../databricks/databricks-gpt-5-6-terra.toml | 22 ----------------- .../databricks/databricks-gpt-5-mini.toml | 21 ---------------- .../databricks/databricks-gpt-5-nano.toml | 21 ---------------- .../models/databricks/databricks-gpt-5.toml | 21 ---------------- .../databricks/databricks-gpt-oss-120b.toml | 22 ----------------- .../databricks/databricks-gpt-oss-20b.toml | 22 ----------------- .../databricks-llama-4-maverick.toml | 21 ---------------- ...databricks-meta-llama-3-1-8b-instruct.toml | 21 ---------------- ...atabricks-meta-llama-3-3-70b-instruct.toml | 21 ---------------- .../models/deepinfra/ByteDance/Seed-1.8.toml | 23 ------------------ .../deepinfra/ByteDance/Seed-2.0-code.toml | 23 ------------------ .../deepinfra/ByteDance/Seed-2.0-mini.toml | 23 ------------------ .../deepinfra/ByteDance/Seed-2.0-pro.toml | 23 ------------------ .../deepinfra/Gryphe/MythoMax-L2-13b.toml | 21 ---------------- .../deepinfra/MiniMaxAI/MiniMax-M2.5.toml | 23 ------------------ .../MiniMaxAI/MiniMax-M2.7-Turbo.toml | 23 ------------------ .../deepinfra/MiniMaxAI/MiniMax-M2.7.toml | 23 ------------------ .../deepinfra/MiniMaxAI/MiniMax-M3.toml | 23 ------------------ .../NousResearch/Hermes-3-Llama-3.1-405B.toml | 21 ---------------- .../NousResearch/Hermes-3-Llama-3.1-70B.toml | 21 ---------------- .../edenai/models/deepinfra/Qwen/QwQ-32B.toml | 21 ---------------- .../deepinfra/Qwen/Qwen2.5-72B-Instruct.toml | 21 ---------------- .../deepinfra/Qwen/Qwen2.5-7B-Instruct.toml | 21 ---------------- .../Qwen/Qwen2.5-VL-32B-Instruct.toml | 21 ---------------- .../models/deepinfra/Qwen/Qwen3-14B.toml | 22 ----------------- .../Qwen/Qwen3-235B-A22B-Instruct-2507.toml | 22 ----------------- .../Qwen/Qwen3-235B-A22B-Thinking-2507.toml | 23 ------------------ .../deepinfra/Qwen/Qwen3-235B-A22B.toml | 13 ---------- .../models/deepinfra/Qwen/Qwen3-30B-A3B.toml | 22 ----------------- .../models/deepinfra/Qwen/Qwen3-32B.toml | 13 ---------- .../Qwen3-Coder-480B-A35B-Instruct-Turbo.toml | 22 ----------------- .../Qwen/Qwen3-Coder-480B-A35B-Instruct.toml | 9 ------- .../deepinfra/Qwen/Qwen3-Max-Thinking.toml | 23 ------------------ .../models/deepinfra/Qwen/Qwen3-Max.toml | 15 ------------ .../Qwen/Qwen3-Next-80B-A3B-Instruct.toml | 14 ----------- .../Qwen/Qwen3-VL-235B-A22B-Instruct.toml | 23 ------------------ .../Qwen/Qwen3-VL-30B-A3B-Instruct.toml | 22 ----------------- .../deepinfra/Qwen/Qwen3.5-122B-A10B.toml | 12 ---------- .../models/deepinfra/Qwen/Qwen3.5-27B.toml | 12 ---------- .../deepinfra/Qwen/Qwen3.5-35B-A3B.toml | 14 ----------- .../deepinfra/Qwen/Qwen3.5-397B-A17B.toml | 13 ---------- .../models/deepinfra/Qwen/Qwen3.5-9B.toml | 13 ---------- .../models/deepinfra/Qwen/Qwen3.6-27B.toml | 12 ---------- .../deepinfra/Qwen/Qwen3.6-35B-A3B.toml | 12 ---------- .../models/deepinfra/Qwen/Qwen3.7-Max.toml | 14 ----------- .../Sao10K/L3-8B-Lunaris-v1-Turbo.toml | 21 ---------------- .../Sao10K/L3.1-70B-Euryale-v2.2.toml | 21 ---------------- .../Sao10K/L3.3-70B-Euryale-v2.3.toml | 21 ---------------- .../deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml | 23 ------------------ .../deepinfra/XiaomiMiMo/MiMo-V2.5.toml | 23 ------------------ .../deepinfra/allenai/olmOCR-7B-0725-FP8.toml | 21 ---------------- .../anthropic/claude-3-7-sonnet-latest.toml | 22 ----------------- .../deepinfra/anthropic/claude-4-opus.toml | 21 ---------------- .../deepinfra/anthropic/claude-4-sonnet.toml | 21 ---------------- .../deepinfra/anthropic/claude-haiku-4-5.toml | 13 ---------- .../deepinfra/anthropic/claude-opus-4-7.toml | 13 ---------- .../deepinfra/anthropic/claude-opus-5.toml | 13 ---------- .../anthropic/claude-sonnet-4-6.toml | 13 ---------- .../deepreinforce-ai/Ornith-1.0-35B.toml | 23 ------------------ .../deepseek-ai/DeepSeek-R1-0528-Turbo.toml | 21 ---------------- .../deepseek-ai/DeepSeek-R1-0528.toml | 23 ------------------ .../DeepSeek-R1-Distill-Llama-70B.toml | 22 ----------------- .../DeepSeek-R1-Distill-Qwen-32B.toml | 21 ---------------- .../deepseek-ai/DeepSeek-R1-Turbo.toml | 21 ---------------- .../deepinfra/deepseek-ai/DeepSeek-R1.toml | 21 ---------------- .../deepseek-ai/DeepSeek-V3-0324.toml | 22 ----------------- .../deepseek-ai/DeepSeek-V3.1-Terminus.toml | 23 ------------------ .../deepinfra/deepseek-ai/DeepSeek-V3.1.toml | 23 ------------------ .../deepinfra/deepseek-ai/DeepSeek-V3.2.toml | 23 ------------------ .../deepinfra/deepseek-ai/DeepSeek-V3.toml | 21 ---------------- .../deepseek-ai/DeepSeek-V4-Flash-0731.toml | 23 ------------------ .../deepseek-ai/DeepSeek-V4-Flash.toml | 23 ------------------ .../deepseek-ai/DeepSeek-V4-Pro.toml | 23 ------------------ .../deepinfra/google/gemini-2.5-flash.toml | 15 ------------ .../deepinfra/google/gemini-2.5-pro.toml | 15 ------------ .../google/gemini-3.1-flash-lite.toml | 16 ------------- .../deepinfra/google/gemini-3.1-pro.toml | 22 ----------------- .../deepinfra/google/gemini-3.5-flash.toml | 16 ------------- .../deepinfra/google/gemma-3-12b-it.toml | 21 ---------------- .../deepinfra/google/gemma-3-27b-it.toml | 21 ---------------- .../deepinfra/google/gemma-3-4b-it.toml | 21 ---------------- .../deepinfra/google/gemma-4-26B-A4B-it.toml | 12 ---------- .../google/gemma-4-31B-it-Ultra.toml | 22 ----------------- .../google/gemma-4-31B-it-turbo.toml | 23 ------------------ .../deepinfra/google/gemma-4-31B-it.toml | 13 ---------- .../deepinfra/google/gemma-4-E4B-it.toml | 15 ------------ .../Llama-3.2-11B-Vision-Instruct.toml | 21 ---------------- .../meta-llama/Llama-3.2-3B-Instruct.toml | 21 ---------------- .../Llama-3.3-70B-Instruct-Turbo.toml | 21 ---------------- .../meta-llama/Llama-3.3-70B-Instruct.toml | 12 ---------- ...lama-4-Maverick-17B-128E-Instruct-FP8.toml | 21 ---------------- .../Llama-4-Scout-17B-16E-Instruct.toml | 21 ---------------- .../meta-llama/Llama-Guard-3-8B.toml | 21 ---------------- .../meta-llama/Llama-Guard-4-12B.toml | 21 ---------------- .../meta-llama/Meta-Llama-3-8B-Instruct.toml | 21 ---------------- .../Meta-Llama-3.1-70B-Instruct-Turbo.toml | 21 ---------------- .../Meta-Llama-3.1-70B-Instruct.toml | 21 ---------------- .../Meta-Llama-3.1-8B-Instruct-Turbo.toml | 21 ---------------- .../Meta-Llama-3.1-8B-Instruct.toml | 21 ---------------- .../deepinfra/microsoft/WizardLM-2-8x22B.toml | 21 ---------------- .../models/deepinfra/microsoft/phi-4.toml | 21 ---------------- .../mistralai/Mistral-Nemo-Instruct-2407.toml | 21 ---------------- .../Mistral-Small-24B-Instruct-2501.toml | 21 ---------------- .../Mistral-Small-3.2-24B-Instruct-2506.toml | 21 ---------------- .../mistralai/Mixtral-8x7B-Instruct-v0.1.toml | 21 ---------------- .../moonshotai/Kimi-K2-Instruct-0905.toml | 22 ----------------- .../moonshotai/Kimi-K2-Instruct.toml | 21 ---------------- .../deepinfra/moonshotai/Kimi-K2.5.toml | 13 ---------- .../deepinfra/moonshotai/Kimi-K2.6.toml | 13 ---------- .../deepinfra/moonshotai/Kimi-K2.7-Code.toml | 12 ---------- .../deepinfra/nemotron-3-ultra-550b-a55b.toml | 13 ---------- .../Llama-3.1-Nemotron-70B-Instruct.toml | 12 ---------- .../Llama-3.3-Nemotron-Super-49B-v1.5.toml | 10 -------- .../NVIDIA-Nemotron-3-Super-120B-A12B.toml | 22 ----------------- ...VIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml | 23 ------------------ .../NVIDIA-Nemotron-3-Ultra-550B-A55B.toml | 23 ------------------ .../nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml | 21 ---------------- .../nvidia/Nemotron-3-Nano-30B-A3B.toml | 11 --------- ...emotron-3-Nano-Omni-30B-A3B-Reasoning.toml | 17 ------------- .../nvidia/Nemotron-Content-Safety-3.5.toml | 21 ---------------- .../deepinfra/openai/gpt-oss-120b-Turbo.toml | 22 ----------------- .../deepinfra/openai/gpt-oss-120b-Ultra.toml | 22 ----------------- .../models/deepinfra/openai/gpt-oss-120b.toml | 8 ------- .../models/deepinfra/openai/gpt-oss-20b.toml | 8 ------- .../deepinfra/stepfun-ai/Step-3.5-Flash.toml | 14 ----------- .../deepinfra/stepfun-ai/Step-3.7-Flash.toml | 15 ------------ .../edenai/models/deepinfra/tencent/Hy3.toml | 13 ---------- .../thinkingmachines/Inkling-Small.toml | 23 ------------------ .../deepinfra/thinkingmachines/Inkling.toml | 15 ------------ .../models/deepinfra/zai-org/GLM-4.5.toml | 10 -------- .../models/deepinfra/zai-org/GLM-4.6.toml | 13 ---------- .../deepinfra/zai-org/GLM-4.7-Flash.toml | 13 ---------- .../models/deepinfra/zai-org/GLM-4.7.toml | 13 ---------- .../models/deepinfra/zai-org/GLM-5.1.toml | 12 ---------- .../models/deepinfra/zai-org/GLM-5.2.toml | 13 ---------- .../models/deepinfra/zai-org/GLM-5.toml | 14 ----------- .../edenai/models/deepseek/deepseek-chat.toml | 14 ----------- .../models/deepseek/deepseek-reasoner.toml | 16 ------------- .../models/deepseek/deepseek-v4-flash.toml | 12 ---------- .../models/deepseek/deepseek-v4-pro.toml | 12 ---------- .../models/deepseek-v4-flash-0731.toml | 23 ------------------ .../fireworks/models/deepseek-v4-flash.toml | 23 ------------------ .../fireworks/models/deepseek-v4-pro.toml | 23 ------------------ .../accounts/fireworks/models/glm-5p2.toml | 23 ------------------ .../fireworks/models/gpt-oss-120b.toml | 23 ------------------ .../fireworks/models/gpt-oss-20b.toml | 23 ------------------ .../accounts/fireworks/models/kimi-k2p6.toml | 23 ------------------ .../fireworks/models/kimi-k2p7-code.toml | 23 ------------------ .../accounts/fireworks/models/kimi-k3.toml | 23 ------------------ .../fireworks/models/minimax-m2p7.toml | 23 ------------------ .../accounts/fireworks/models/minimax-m3.toml | 23 ------------------ .../routers/kimi-k2p7-code-fast.toml | 23 ------------------ .../fireworks_ai/deepseek-v4-flash.toml | 12 ---------- .../models/fireworks_ai/deepseek-v4-pro.toml | 13 ---------- .../models/fireworks_ai/gpt-oss-120b.toml | 10 -------- .../models/fireworks_ai/gpt-oss-20b.toml | 9 ------- .../edenai/models/fireworks_ai/kimi-k3.toml | 12 ---------- .../models/google/gemini-2.5-flash-image.toml | 15 ------------ .../models/google/gemini-2.5-flash-lite.toml | 12 ---------- .../models/google/gemini-2.5-flash.toml | 11 --------- .../edenai/models/google/gemini-2.5-pro.toml | 11 --------- .../models/google/gemini-3-flash-preview.toml | 11 --------- .../google/gemini-3-pro-image-preview.toml | 12 ---------- .../models/google/gemini-3-pro-image.toml | 13 ---------- .../gemini-3.1-flash-image-preview.toml | 11 --------- .../models/google/gemini-3.1-flash-image.toml | 15 ------------ .../google/gemini-3.1-flash-lite-image.toml | 9 ------- .../google/gemini-3.1-flash-lite-preview.toml | 12 ---------- .../models/google/gemini-3.1-flash-lite.toml | 11 --------- .../gemini-3.1-pro-preview-customtools.toml | 12 ---------- .../models/google/gemini-3.1-pro-preview.toml | 11 --------- .../models/google/gemini-3.5-flash-lite.toml | 11 --------- .../models/google/gemini-3.5-flash.toml | 11 --------- .../models/google/gemini-3.6-flash.toml | 11 --------- .../models/google/gemma-4-26b-a4b-it.toml | 12 ---------- .../edenai/models/google/gemma-4-31b-it.toml | 11 --------- .../models/groq/llama-3.1-8b-instant.toml | 22 ----------------- .../models/groq/llama-3.3-70b-versatile.toml | 22 ----------------- .../models/groq/openai/gpt-oss-120b.toml | 9 ------- .../models/groq/openai/gpt-oss-20b.toml | 9 ------- .../groq/openai/gpt-oss-safeguard-20b.toml | 23 ------------------ .../edenai/models/groq/qwen/qwen3.6-27b.toml | 16 ------------- .../models/lilac/google/gemma-4-31b-it.toml | 12 ---------- .../models/lilac/minimaxai/minimax-m3.toml | 23 ------------------ .../models/lilac/moonshotai/kimi-k2.6.toml | 13 ---------- .../edenai/models/lilac/zai-org/glm-5.2.toml | 13 ---------- .../models/microsoft/gpt-35-turbo-16k.toml | 21 ---------------- .../edenai/models/microsoft/gpt-35-turbo.toml | 21 ---------------- providers/edenai/models/microsoft/gpt-4.toml | 12 ---------- .../edenai/models/microsoft/gpt-4o-mini.toml | 8 ------- providers/edenai/models/microsoft/gpt-4o.toml | 7 ------ .../edenai/models/microsoft/o1-mini.toml | 23 ------------------ .../edenai/models/microsoft/o3-mini.toml | 9 ------- .../edenai/models/minimax/MiniMax-M2.1.toml | 10 -------- .../edenai/models/minimax/MiniMax-M2.5.toml | 10 -------- .../edenai/models/minimax/MiniMax-M2.7.toml | 10 -------- .../edenai/models/minimax/MiniMax-M2.toml | 13 ---------- .../edenai/models/minimax/MiniMax-M3.toml | 14 ----------- .../edenai/models/minimax/minimax-m1.toml | 22 ----------------- .../edenai/models/mistral/codestral-2405.toml | 21 ---------------- .../edenai/models/mistral/codestral-2508.toml | 22 ----------------- .../models/mistral/codestral-latest.toml | 9 ------- .../edenai/models/mistral/devstral-2512.toml | 12 ---------- .../models/mistral/devstral-latest.toml | 21 ---------------- .../mistral/devstral-medium-latest.toml | 9 ------- .../models/mistral/devstral-small-latest.toml | 21 ---------------- .../mistral/labs-devstral-small-2512.toml | 21 ---------------- .../models/mistral/magistral-medium-2509.toml | 22 ----------------- .../mistral/magistral-medium-latest.toml | 16 ------------- .../mistral/magistral-small-latest.toml | 22 ----------------- .../models/mistral/ministral-14b-2512.toml | 22 ----------------- .../models/mistral/ministral-3b-2512.toml | 22 ----------------- .../models/mistral/ministral-8b-2512.toml | 22 ----------------- .../models/mistral/ministral-8b-latest.toml | 21 ---------------- .../models/mistral/mistral-large-2402.toml | 21 ---------------- .../models/mistral/mistral-large-2407.toml | 22 ----------------- .../models/mistral/mistral-large-2512.toml | 13 ---------- .../models/mistral/mistral-large-latest.toml | 13 ---------- .../models/mistral/mistral-medium-2312.toml | 21 ---------------- .../models/mistral/mistral-medium-2505.toml | 8 ------- .../models/mistral/mistral-medium-2508.toml | 21 ---------------- .../models/mistral/mistral-medium-2604.toml | 9 ------- .../models/mistral/mistral-medium-3-5.toml | 22 ----------------- .../models/mistral/mistral-medium-3.5.toml | 22 ----------------- .../models/mistral/mistral-medium-3.toml | 23 ------------------ .../models/mistral/mistral-medium-latest.toml | 9 ------- .../edenai/models/mistral/mistral-medium.toml | 22 ----------------- .../models/mistral/mistral-small-2603.toml | 13 ---------- .../models/mistral/mistral-small-latest.toml | 13 ---------- .../edenai/models/mistral/mistral-small.toml | 21 ---------------- .../models/mistral/mistral-tiny-latest.toml | 21 ---------------- .../edenai/models/mistral/mistral-tiny.toml | 21 ---------------- .../models/mistral/open-mistral-7b.toml | 21 ---------------- .../mistral/open-mistral-nemo-2407.toml | 21 ---------------- .../models/mistral/open-mistral-nemo.toml | 21 ---------------- .../models/mistral/open-mixtral-8x22b.toml | 21 ---------------- .../models/mistral/open-mixtral-8x7b.toml | 21 ---------------- .../models/mistral/pixtral-12b-2409.toml | 21 ---------------- .../edenai/models/moonshot/kimi-k2.6.toml | 13 ---------- .../models/moonshot/kimi-k2.7-code.toml | 12 ---------- providers/edenai/models/moonshot/kimi-k3.toml | 12 ---------- .../models/nebius/MiniMaxAI/MiniMax-M2.5.toml | 22 ----------------- .../models/nebius/MiniMaxAI/MiniMax-M3.toml | 22 ----------------- .../nebius/NousResearch/Hermes-4-405B.toml | 22 ----------------- .../nebius/NousResearch/Hermes-4-70B.toml | 22 ----------------- .../nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml | 21 ---------------- .../Qwen/Qwen3-235B-A22B-Instruct-2507.toml | 21 ---------------- .../Qwen/Qwen3-30B-A3B-Instruct-2507.toml | 21 ---------------- .../edenai/models/nebius/Qwen/Qwen3-32B.toml | 13 ---------- .../Qwen/Qwen3-Next-80B-A3B-Thinking.toml | 13 ---------- .../models/nebius/Qwen/Qwen3.5-397B-A17B.toml | 13 ---------- .../models/nebius/google/gemma-3-27b-it.toml | 21 ---------------- .../meta-llama/Llama-3.3-70B-Instruct.toml | 12 ---------- .../models/nebius/moonshotai/Kimi-K2.6.toml | 12 ---------- .../nebius/moonshotai/Kimi-K2.7-Code.toml | 14 ----------- .../models/nebius/moonshotai/Kimi-K3.toml | 11 --------- .../nebius/nvidia/Cosmos3-Super-Reasoner.toml | 22 ----------------- .../Llama-3_1-Nemotron-Ultra-253B-v1.toml | 22 ----------------- .../NVIDIA-Nemotron-3-Nano-30B-A3B.toml | 22 ----------------- .../nebius/nvidia/Nemotron-3-Nano-Omni.toml | 22 ----------------- .../nvidia/Nemotron-3-Ultra-550b-a55b.toml | 12 ---------- .../nvidia/nemotron-3-super-120b-a12b.toml | 9 ------- .../models/nebius/openai/gpt-oss-120b.toml | 8 ------- .../models/nebius/openbmb/MiniCPM-V-4_5.toml | 21 ---------------- .../edenai/models/nebius/zai-org/GLM-5.1.toml | 11 --------- .../models/openai/gpt-3.5-turbo-0125.toml | 21 ---------------- .../models/openai/gpt-3.5-turbo-1106.toml | 21 ---------------- .../models/openai/gpt-3.5-turbo-16k.toml | 21 ---------------- .../edenai/models/openai/gpt-3.5-turbo.toml | 9 ------- .../edenai/models/openai/gpt-4-0613.toml | 21 ---------------- .../models/openai/gpt-4-turbo-2024-04-09.toml | 21 ---------------- .../edenai/models/openai/gpt-4-turbo.toml | 11 --------- .../models/openai/gpt-4.1-2025-04-14.toml | 22 ----------------- .../openai/gpt-4.1-mini-2025-04-14.toml | 22 ----------------- .../edenai/models/openai/gpt-4.1-mini.toml | 7 ------ .../openai/gpt-4.1-nano-2025-04-14.toml | 22 ----------------- .../edenai/models/openai/gpt-4.1-nano.toml | 10 -------- providers/edenai/models/openai/gpt-4.1.toml | 7 ------ providers/edenai/models/openai/gpt-4.toml | 12 ---------- .../models/openai/gpt-4o-2024-08-06.toml | 11 --------- .../models/openai/gpt-4o-2024-11-20.toml | 10 -------- .../models/openai/gpt-4o-mini-2024-07-18.toml | 22 ----------------- .../openai/gpt-4o-mini-search-preview.toml | 22 ----------------- .../edenai/models/openai/gpt-4o-mini.toml | 7 ------ .../models/openai/gpt-4o-search-preview.toml | 22 ----------------- providers/edenai/models/openai/gpt-4o.toml | 8 ------- .../models/openai/gpt-5-2025-08-07.toml | 23 ------------------ .../models/openai/gpt-5-mini-2025-08-07.toml | 23 ------------------ .../edenai/models/openai/gpt-5-mini.toml | 11 --------- .../models/openai/gpt-5-nano-2025-08-07.toml | 23 ------------------ .../edenai/models/openai/gpt-5-nano.toml | 11 --------- .../models/openai/gpt-5-pro-2025-10-06.toml | 22 ----------------- providers/edenai/models/openai/gpt-5-pro.toml | 10 -------- .../openai/gpt-5-search-api-2025-10-14.toml | 22 ----------------- .../models/openai/gpt-5-search-api.toml | 22 ----------------- .../models/openai/gpt-5.1-2025-11-13.toml | 23 ------------------ providers/edenai/models/openai/gpt-5.1.toml | 11 --------- .../models/openai/gpt-5.2-2025-12-11.toml | 23 ------------------ .../models/openai/gpt-5.2-chat-latest.toml | 12 ---------- .../models/openai/gpt-5.2-pro-2025-12-11.toml | 22 ----------------- .../edenai/models/openai/gpt-5.2-pro.toml | 12 ---------- providers/edenai/models/openai/gpt-5.2.toml | 12 ---------- .../models/openai/gpt-5.3-chat-latest.toml | 12 ---------- .../edenai/models/openai/gpt-5.3-codex.toml | 9 ------- .../models/openai/gpt-5.4-2026-03-05.toml | 23 ------------------ .../openai/gpt-5.4-mini-2026-03-17.toml | 23 ------------------ .../edenai/models/openai/gpt-5.4-mini.toml | 11 --------- .../openai/gpt-5.4-nano-2026-03-17.toml | 23 ------------------ .../edenai/models/openai/gpt-5.4-nano.toml | 11 --------- .../models/openai/gpt-5.4-pro-2026-03-05.toml | 23 ------------------ .../edenai/models/openai/gpt-5.4-pro.toml | 12 ---------- providers/edenai/models/openai/gpt-5.4.toml | 8 ------- .../models/openai/gpt-5.5-2026-04-23.toml | 23 ------------------ .../models/openai/gpt-5.5-pro-2026-04-23.toml | 23 ------------------ .../edenai/models/openai/gpt-5.5-pro.toml | 9 ------- providers/edenai/models/openai/gpt-5.5.toml | 9 ------- .../edenai/models/openai/gpt-5.6-luna.toml | 9 ------- .../edenai/models/openai/gpt-5.6-sol.toml | 9 ------- .../edenai/models/openai/gpt-5.6-terra.toml | 9 ------- providers/edenai/models/openai/gpt-5.toml | 11 --------- .../edenai/models/openai/o1-2024-12-17.toml | 23 ------------------ .../models/openai/o1-pro-2025-03-19.toml | 22 ----------------- providers/edenai/models/openai/o1-pro.toml | 10 -------- providers/edenai/models/openai/o1.toml | 9 ------- .../edenai/models/openai/o3-2025-04-16.toml | 23 ------------------ .../openai/o3-deep-research-2025-06-26.toml | 23 ------------------ .../models/openai/o3-deep-research.toml | 13 ---------- .../models/openai/o3-mini-2025-01-31.toml | 23 ------------------ providers/edenai/models/openai/o3-mini.toml | 13 ---------- .../models/openai/o3-pro-2025-06-10.toml | 22 ----------------- providers/edenai/models/openai/o3-pro.toml | 10 -------- providers/edenai/models/openai/o3.toml | 8 ------- .../models/openai/o4-mini-2025-04-16.toml | 23 ------------------ .../o4-mini-deep-research-2025-06-26.toml | 23 ------------------ .../models/openai/o4-mini-deep-research.toml | 13 ---------- providers/edenai/models/openai/o4-mini.toml | 11 --------- .../ovhcloud/Meta-Llama-3_3-70B-Instruct.toml | 21 ---------------- .../ovhcloud/Mistral-7B-Instruct-v0.3.toml | 21 ---------------- .../ovhcloud/Mistral-Nemo-Instruct-2407.toml | 21 ---------------- .../Mistral-Small-3.2-24B-Instruct-2506.toml | 21 ---------------- .../ovhcloud/Qwen2.5-VL-72B-Instruct.toml | 21 ---------------- .../edenai/models/ovhcloud/Qwen3-32B.toml | 13 ---------- .../Qwen3-Coder-30B-A3B-Instruct.toml | 10 -------- .../models/ovhcloud/Qwen3.5-397B-A17B.toml | 15 ------------ .../edenai/models/ovhcloud/Qwen3.5-9B.toml | 11 --------- .../edenai/models/ovhcloud/Qwen3.6-27B.toml | 15 ------------ .../edenai/models/ovhcloud/gpt-oss-120b.toml | 10 -------- .../edenai/models/ovhcloud/gpt-oss-20b.toml | 10 -------- .../perplexityai/sonar-deep-research.toml | 23 ------------------ .../edenai/models/perplexityai/sonar-pro.toml | 8 ------- .../perplexityai/sonar-reasoning-pro.toml | 9 ------- .../edenai/models/perplexityai/sonar.toml | 15 ------------ .../edenai/models/qwen/deepseek-v3.2.toml | 24 ------------------- .../edenai/models/qwen/deepseek-v4-flash.toml | 9 ------- .../edenai/models/qwen/deepseek-v4-pro.toml | 9 ------- providers/edenai/models/qwen/glm-5.1.toml | 12 ---------- .../models/qwen/glm-5.2-fast-preview.toml | 22 ----------------- providers/edenai/models/qwen/glm-5.2.toml | 13 ---------- .../edenai/models/qwen/kimi-k2.7-code.toml | 9 ------- .../models/qwen/qwen-flash-2025-07-28.toml | 22 ----------------- .../models/qwen/qwen-flash-character.toml | 22 ----------------- providers/edenai/models/qwen/qwen-flash.toml | 12 ---------- providers/edenai/models/qwen/qwen-max.toml | 10 -------- .../edenai/models/qwen/qwen-mt-flash.toml | 21 ---------------- .../edenai/models/qwen/qwen-mt-lite.toml | 21 ---------------- .../edenai/models/qwen/qwen-mt-plus.toml | 21 ---------------- .../edenai/models/qwen/qwen-mt-turbo.toml | 21 ---------------- .../models/qwen/qwen-plus-2025-01-25.toml | 22 ----------------- .../models/qwen/qwen-plus-2025-04-28.toml | 23 ------------------ .../models/qwen/qwen-plus-2025-07-14.toml | 23 ------------------ .../models/qwen/qwen-plus-2025-07-28.toml | 23 ------------------ .../models/qwen/qwen-plus-2025-09-11.toml | 23 ------------------ .../models/qwen/qwen-plus-2025-12-01.toml | 23 ------------------ .../models/qwen/qwen-plus-character-ja.toml | 22 ----------------- .../models/qwen/qwen-plus-character.toml | 22 ----------------- .../edenai/models/qwen/qwen-plus-latest.toml | 23 ------------------ providers/edenai/models/qwen/qwen-plus.toml | 12 ---------- providers/edenai/models/qwen/qwen-turbo.toml | 15 ------------ providers/edenai/models/qwen/qwen-vl-max.toml | 14 ----------- .../edenai/models/qwen/qwen-vl-plus.toml | 14 ----------- providers/edenai/models/qwen/qwen3-14b.toml | 23 ------------------ .../qwen/qwen3-235b-a22b-instruct-2507.toml | 21 ---------------- .../qwen/qwen3-235b-a22b-thinking-2507.toml | 22 ----------------- .../edenai/models/qwen/qwen3-235b-a22b.toml | 11 --------- .../qwen/qwen3-30b-a3b-instruct-2507.toml | 21 ---------------- .../qwen/qwen3-30b-a3b-thinking-2507.toml | 22 ----------------- .../edenai/models/qwen/qwen3-30b-a3b.toml | 23 ------------------ providers/edenai/models/qwen/qwen3-32b.toml | 11 --------- providers/edenai/models/qwen/qwen3-8b.toml | 23 ------------------ .../qwen/qwen3-coder-30b-a3b-instruct.toml | 9 ------- .../qwen/qwen3-coder-480b-a35b-instruct.toml | 10 -------- .../qwen/qwen3-coder-flash-2025-07-28.toml | 21 ---------------- .../edenai/models/qwen/qwen3-coder-flash.toml | 10 -------- .../edenai/models/qwen/qwen3-coder-next.toml | 21 ---------------- .../qwen/qwen3-coder-plus-2025-07-22.toml | 21 ---------------- .../qwen/qwen3-coder-plus-2025-09-23.toml | 21 ---------------- .../edenai/models/qwen/qwen3-coder-plus.toml | 13 ---------- .../models/qwen/qwen3-max-2025-09-23.toml | 21 ---------------- .../models/qwen/qwen3-max-2026-01-23.toml | 22 ----------------- .../edenai/models/qwen/qwen3-max-preview.toml | 23 ------------------ providers/edenai/models/qwen/qwen3-max.toml | 11 --------- .../qwen/qwen3-next-80b-a3b-instruct.toml | 9 ------- .../qwen/qwen3-next-80b-a3b-thinking.toml | 10 -------- .../qwen/qwen3-vl-235b-a22b-instruct.toml | 21 ---------------- .../qwen/qwen3-vl-235b-a22b-thinking.toml | 22 ----------------- .../qwen/qwen3-vl-30b-a3b-instruct.toml | 21 ---------------- .../qwen/qwen3-vl-30b-a3b-thinking.toml | 22 ----------------- .../models/qwen/qwen3-vl-32b-instruct.toml | 21 ---------------- .../models/qwen/qwen3-vl-32b-thinking.toml | 22 ----------------- .../models/qwen/qwen3-vl-8b-instruct.toml | 21 ---------------- .../models/qwen/qwen3-vl-8b-thinking.toml | 22 ----------------- .../qwen/qwen3-vl-flash-2025-10-15.toml | 22 ----------------- .../qwen/qwen3-vl-flash-2026-01-22.toml | 21 ---------------- .../edenai/models/qwen/qwen3-vl-flash.toml | 24 ------------------- .../models/qwen/qwen3-vl-plus-2025-09-23.toml | 22 ----------------- .../models/qwen/qwen3-vl-plus-2025-12-19.toml | 22 ----------------- .../edenai/models/qwen/qwen3-vl-plus.toml | 16 ------------- .../edenai/models/qwen/qwen3.5-122b-a10b.toml | 12 ---------- providers/edenai/models/qwen/qwen3.5-27b.toml | 12 ---------- .../edenai/models/qwen/qwen3.5-35b-a3b.toml | 12 ---------- .../edenai/models/qwen/qwen3.5-397b-a17b.toml | 12 ---------- .../models/qwen/qwen3.5-flash-2026-02-23.toml | 22 ----------------- .../edenai/models/qwen/qwen3.5-flash.toml | 23 ------------------ .../models/qwen/qwen3.5-plus-2026-02-15.toml | 22 ----------------- .../models/qwen/qwen3.5-plus-2026-04-20.toml | 23 ------------------ .../edenai/models/qwen/qwen3.5-plus.toml | 11 --------- providers/edenai/models/qwen/qwen3.6-27b.toml | 12 ---------- .../edenai/models/qwen/qwen3.6-35b-a3b.toml | 12 ---------- .../models/qwen/qwen3.6-flash-2026-04-16.toml | 22 ----------------- .../edenai/models/qwen/qwen3.6-flash.toml | 8 ------- .../models/qwen/qwen3.6-max-preview.toml | 10 -------- .../models/qwen/qwen3.6-plus-2026-04-02.toml | 22 ----------------- .../edenai/models/qwen/qwen3.6-plus.toml | 9 ------- .../models/qwen/qwen3.7-flash-2026-07-15.toml | 24 ------------------- .../edenai/models/qwen/qwen3.7-flash.toml | 24 ------------------- .../models/qwen/qwen3.7-max-2026-05-17.toml | 22 ----------------- .../models/qwen/qwen3.7-max-2026-05-20.toml | 23 ------------------ .../models/qwen/qwen3.7-max-2026-06-08.toml | 24 ------------------- .../models/qwen/qwen3.7-max-preview.toml | 22 ----------------- providers/edenai/models/qwen/qwen3.7-max.toml | 10 -------- .../models/qwen/qwen3.7-plus-2026-05-26.toml | 24 ------------------- .../edenai/models/qwen/qwen3.7-plus.toml | 11 --------- providers/edenai/models/qwen/qwq-plus.toml | 10 -------- .../devstral-2-123b-instruct-2512.toml | 21 ---------------- .../models/scaleway/gemma-3-27b-it.toml | 21 ---------------- .../models/scaleway/gemma-4-26b-a4b-it.toml | 13 ---------- providers/edenai/models/scaleway/glm-5.2.toml | 13 ---------- .../edenai/models/scaleway/gpt-oss-120b.toml | 13 ---------- .../edenai/models/scaleway/holo2-30b-a3b.toml | 22 ----------------- .../scaleway/llama-3.3-70b-instruct.toml | 10 -------- .../scaleway/mistral-medium-3.5-128b.toml | 22 ----------------- .../mistral-small-3.2-24b-instruct-2506.toml | 21 ---------------- .../models/scaleway/pixtral-12b-2409.toml | 21 ---------------- .../qwen3-235b-a22b-instruct-2507.toml | 21 ---------------- .../qwen3-coder-30b-a3b-instruct.toml | 12 ---------- .../models/scaleway/qwen3.5-397b-a17b.toml | 16 ------------- .../models/scaleway/qwen3.6-35b-a3b.toml | 16 ------------- .../scaleway/voxtral-small-24b-2507.toml | 21 ---------------- .../together_ai/LiquidAI/LFM2.5-8B-A1B.toml | 21 ---------------- .../together_ai/MiniMaxAI/MiniMax-M3.toml | 23 ------------------ .../Qwen/Qwen2.5-7B-Instruct-Turbo.toml | 21 ---------------- .../models/together_ai/Qwen/Qwen3.5-9B.toml | 13 ---------- .../arize-ai/qwen-2-1.5b-instruct.toml | 21 ---------------- .../deepcogito/cogito-v2-1-671b.toml | 22 ----------------- .../deepseek-ai/DeepSeek-V4-Pro.toml | 23 ------------------ .../together_ai/google/gemma-3n-E4B-it.toml | 21 ---------------- .../together_ai/google/gemma-4-31B-it.toml | 12 ---------- .../Llama-3.3-70B-Instruct-Turbo.toml | 21 ---------------- .../meta-llama/Llama-Guard-4-12B.toml | 21 ---------------- .../together_ai/moonshotai/Kimi-K2.6.toml | 13 ---------- .../moonshotai/Kimi-K2.7-Code.toml | 12 ---------- .../together_ai/moonshotai/Kimi-K3.toml | 15 ------------ .../nvidia/nemotron-3-ultra-550b-a55b.toml | 13 ---------- .../together_ai/openai/gpt-oss-120b.toml | 8 ------- .../together_ai/openai/gpt-oss-20b.toml | 8 ------- .../together_ai/pearl-ai/gemma-4-31b-it.toml | 22 ----------------- .../thinkingmachines/Inkling-Small.toml | 23 ------------------ .../together_ai/thinkingmachines/Inkling.toml | 14 ----------- .../models/together_ai/zai-org/GLM-5.2.toml | 13 ---------- .../edenai/models/vertex/claude-fable-5.toml | 10 -------- .../models/vertex/claude-fable-5@eu.toml | 10 -------- .../models/vertex/claude-haiku-4-5.toml | 10 -------- .../edenai/models/vertex/claude-opus-4-1.toml | 10 -------- .../edenai/models/vertex/claude-opus-4-5.toml | 10 -------- .../edenai/models/vertex/claude-opus-4-6.toml | 11 --------- .../edenai/models/vertex/claude-opus-4-7.toml | 10 -------- .../models/vertex/claude-opus-4-7@eu.toml | 10 -------- .../models/vertex/claude-opus-4-7@us.toml | 10 -------- .../edenai/models/vertex/claude-opus-4-8.toml | 11 --------- .../models/vertex/claude-opus-4-8@eu.toml | 11 --------- .../models/vertex/claude-opus-4-8@us.toml | 11 --------- .../models/vertex/claude-sonnet-4-5.toml | 13 ---------- .../models/vertex/claude-sonnet-4-6.toml | 10 -------- .../edenai/models/vertex/claude-sonnet-5.toml | 10 -------- .../models/vertex/claude-sonnet-5@eu.toml | 10 -------- .../models/vertex/claude-sonnet-5@us.toml | 10 -------- .../deepseek-ai/deepseek-v3.2-maas.toml | 22 ----------------- .../deepseek-ai/deepseek-v3.2-maas@eu.toml | 22 ----------------- .../deepseek-ai/deepseek-v3.2-maas@us.toml | 22 ----------------- .../models/vertex/gemini-2.5-flash-image.toml | 12 ---------- .../models/vertex/gemini-2.5-flash-lite.toml | 12 ---------- .../models/vertex/gemini-2.5-flash.toml | 11 --------- .../edenai/models/vertex/gemini-2.5-pro.toml | 11 --------- .../models/vertex/gemini-3-flash-preview.toml | 11 --------- .../models/vertex/gemini-3-pro-image.toml | 13 ---------- .../models/vertex/gemini-3.1-flash-image.toml | 12 ---------- .../vertex/gemini-3.1-flash-lite-image.toml | 9 ------- .../models/vertex/gemini-3.1-pro-preview.toml | 11 --------- .../models/vertex/gemini-3.5-flash-lite.toml | 11 --------- .../vertex/gemini-3.5-flash-lite@eu.toml | 11 --------- .../vertex/gemini-3.5-flash-lite@us.toml | 11 --------- .../models/vertex/gemini-3.5-flash.toml | 11 --------- .../models/vertex/gemini-3.5-flash@eu.toml | 11 --------- .../models/vertex/gemini-3.5-flash@us.toml | 11 --------- .../models/vertex/gemini-3.6-flash.toml | 11 --------- .../vertex/minimaxai/minimax-m2-maas.toml | 22 ----------------- .../moonshotai/kimi-k2-thinking-maas.toml | 22 ----------------- .../qwen3-next-80b-a3b-instruct-maas.toml | 21 ---------------- .../qwen3-next-80b-a3b-instruct-maas@eu.toml | 21 ---------------- .../qwen3-next-80b-a3b-instruct-maas@us.toml | 21 ---------------- .../qwen3-next-80b-a3b-thinking-maas.toml | 22 ----------------- .../qwen3-next-80b-a3b-thinking-maas@eu.toml | 22 ----------------- .../qwen3-next-80b-a3b-thinking-maas@us.toml | 22 ----------------- .../models/vertex/zai-org/glm-4.7-maas.toml | 22 ----------------- .../vertex/zai-org/glm-4.7-maas@eu.toml | 22 ----------------- .../vertex/zai-org/glm-4.7-maas@us.toml | 22 ----------------- providers/edenai/models/xai/grok-3-beta.toml | 22 ----------------- .../edenai/models/xai/grok-3-fast-beta.toml | 22 ----------------- .../edenai/models/xai/grok-3-fast-latest.toml | 22 ----------------- .../edenai/models/xai/grok-3-latest.toml | 22 ----------------- .../models/xai/grok-3-mini-fast-beta.toml | 23 ------------------ .../models/xai/grok-3-mini-fast-latest.toml | 23 ------------------ .../edenai/models/xai/grok-3-mini-fast.toml | 23 ------------------ .../edenai/models/xai/grok-3-mini-latest.toml | 23 ------------------ providers/edenai/models/xai/grok-3.toml | 22 ----------------- providers/edenai/models/xai/grok-4-0709.toml | 21 ---------------- .../grok-4-1-fast-non-reasoning-latest.toml | 22 ----------------- .../xai/grok-4-1-fast-non-reasoning.toml | 22 ----------------- .../xai/grok-4-1-fast-reasoning-latest.toml | 23 ------------------ .../models/xai/grok-4-1-fast-reasoning.toml | 23 ------------------ .../edenai/models/xai/grok-4-1-fast.toml | 23 ------------------ .../models/xai/grok-4-fast-non-reasoning.toml | 22 ----------------- .../models/xai/grok-4-fast-reasoning.toml | 22 ----------------- providers/edenai/models/xai/grok-4-fast.toml | 23 ------------------ .../edenai/models/xai/grok-4-latest.toml | 21 ---------------- .../xai/grok-4.20-0309-non-reasoning.toml | 15 ------------ .../models/xai/grok-4.20-0309-reasoning.toml | 16 ------------- .../grok-4.20-beta-0309-non-reasoning.toml | 22 ----------------- .../xai/grok-4.20-beta-0309-reasoning.toml | 23 ------------------ providers/edenai/models/xai/grok-4.20.toml | 23 ------------------ .../edenai/models/xai/grok-4.3-latest.toml | 23 ------------------ providers/edenai/models/xai/grok-4.3.toml | 9 ------- providers/edenai/models/xai/grok-4.5.toml | 11 --------- providers/edenai/models/xai/grok-4.toml | 21 ---------------- .../edenai/models/xai/grok-build-0.1.toml | 9 ------- .../models/xai/grok-code-fast-1-0825.toml | 23 ------------------ .../edenai/models/xai/grok-code-fast-1.toml | 23 ------------------ .../edenai/models/xai/grok-code-fast.toml | 23 ------------------ 796 files changed, 14200 deletions(-) delete mode 100644 providers/edenai/models/amazon/ai21.jamba-1-5-large-v1:0.toml delete mode 100644 providers/edenai/models/amazon/ai21.jamba-1-5-mini-v1:0.toml delete mode 100644 providers/edenai/models/amazon/amazon.nova-2-lite-v1:0.toml delete mode 100644 providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@eu.toml delete mode 100644 providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/amazon.nova-lite-v1:0.toml delete mode 100644 providers/edenai/models/amazon/amazon.nova-lite-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/amazon.nova-micro-v1:0.toml delete mode 100644 providers/edenai/models/amazon/amazon.nova-micro-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/amazon.nova-pro-v1:0.toml delete mode 100644 providers/edenai/models/amazon/amazon.nova-pro-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-3-haiku-20240307-v1:0.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-3-sonnet-20240229-v1:0.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@eu.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-1-20250805-v1:0.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@eu.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@eu.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@us.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-7.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-7@eu.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-7@us.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-8.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-8@eu.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-4-8@us.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-5.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-5@eu.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-opus-5@us.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@eu.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-6.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@eu.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@us.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-5.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-5@eu.toml delete mode 100644 providers/edenai/models/amazon/anthropic.claude-sonnet-5@us.toml delete mode 100644 providers/edenai/models/amazon/cohere.command-r-plus-v1:0.toml delete mode 100644 providers/edenai/models/amazon/cohere.command-r-v1:0.toml delete mode 100644 providers/edenai/models/amazon/deepseek.r1-v1:0.toml delete mode 100644 providers/edenai/models/amazon/deepseek.v3.2.toml delete mode 100644 providers/edenai/models/amazon/google.gemma-3-12b-it.toml delete mode 100644 providers/edenai/models/amazon/google.gemma-3-12b-it@us.toml delete mode 100644 providers/edenai/models/amazon/google.gemma-3-27b-it.toml delete mode 100644 providers/edenai/models/amazon/google.gemma-3-27b-it@us.toml delete mode 100644 providers/edenai/models/amazon/google.gemma-3-4b-it.toml delete mode 100644 providers/edenai/models/amazon/google.gemma-3-4b-it@us.toml delete mode 100644 providers/edenai/models/amazon/meta.llama3-1-70b-instruct-v1:0.toml delete mode 100644 providers/edenai/models/amazon/meta.llama3-1-8b-instruct-v1:0.toml delete mode 100644 providers/edenai/models/amazon/meta.llama3-3-70b-instruct-v1:0.toml delete mode 100644 providers/edenai/models/amazon/meta.llama3-70b-instruct-v1:0.toml delete mode 100644 providers/edenai/models/amazon/meta.llama3-8b-instruct-v1:0.toml delete mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.1.toml delete mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.1@us.toml delete mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.5.toml delete mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.5@us.toml delete mode 100644 providers/edenai/models/amazon/minimax.minimax-m2.toml delete mode 100644 providers/edenai/models/amazon/minimax.minimax-m2@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.devstral-2-123b.toml delete mode 100644 providers/edenai/models/amazon/mistral.devstral-2-123b@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.magistral-small-2509.toml delete mode 100644 providers/edenai/models/amazon/mistral.magistral-small-2509@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.ministral-3-14b-instruct.toml delete mode 100644 providers/edenai/models/amazon/mistral.ministral-3-14b-instruct@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.ministral-3-3b-instruct.toml delete mode 100644 providers/edenai/models/amazon/mistral.ministral-3-3b-instruct@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.ministral-3-8b-instruct.toml delete mode 100644 providers/edenai/models/amazon/mistral.ministral-3-8b-instruct@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2.toml delete mode 100644 providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0.toml delete mode 100644 providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.mistral-large-3-675b-instruct.toml delete mode 100644 providers/edenai/models/amazon/mistral.mistral-small-2402-v1:0.toml delete mode 100644 providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1.toml delete mode 100644 providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0.toml delete mode 100644 providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507.toml delete mode 100644 providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507@us.toml delete mode 100644 providers/edenai/models/amazon/mistral.voxtral-small-24b-2507.toml delete mode 100644 providers/edenai/models/amazon/mistral.voxtral-small-24b-2507@us.toml delete mode 100644 providers/edenai/models/amazon/moonshot.kimi-k2-thinking.toml delete mode 100644 providers/edenai/models/amazon/moonshotai.kimi-k2.5.toml delete mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2.toml delete mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2@us.toml delete mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b.toml delete mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b@us.toml delete mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2.toml delete mode 100644 providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2@us.toml delete mode 100644 providers/edenai/models/amazon/nvidia.nemotron-super-3-120b.toml delete mode 100644 providers/edenai/models/amazon/nvidia.nemotron-super-3-120b@us.toml delete mode 100644 providers/edenai/models/amazon/openai.gpt-oss-120b-1:0.toml delete mode 100644 providers/edenai/models/amazon/openai.gpt-oss-120b-1:0@us.toml delete mode 100644 providers/edenai/models/amazon/openai.gpt-oss-20b-1:0.toml delete mode 100644 providers/edenai/models/amazon/openai.gpt-oss-20b-1:0@us.toml delete mode 100644 providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b.toml delete mode 100644 providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b@us.toml delete mode 100644 providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b.toml delete mode 100644 providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b@us.toml delete mode 100644 providers/edenai/models/amazon/qwen.qwen3-32b-v1:0.toml delete mode 100644 providers/edenai/models/amazon/qwen.qwen3-32b-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml delete mode 100644 providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0@us.toml delete mode 100644 providers/edenai/models/amazon/qwen.qwen3-coder-next.toml delete mode 100644 providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b.toml delete mode 100644 providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b@us.toml delete mode 100644 providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b.toml delete mode 100644 providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b@us.toml delete mode 100644 providers/edenai/models/amazon/writer.palmyra-x4-v1:0.toml delete mode 100644 providers/edenai/models/amazon/writer.palmyra-x5-v1:0.toml delete mode 100644 providers/edenai/models/amazon/zai.glm-4.7-flash.toml delete mode 100644 providers/edenai/models/amazon/zai.glm-4.7-flash@us.toml delete mode 100644 providers/edenai/models/amazon/zai.glm-4.7.toml delete mode 100644 providers/edenai/models/amazon/zai.glm-5.toml delete mode 100644 providers/edenai/models/anthropic/claude-fable-5.toml delete mode 100644 providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml delete mode 100644 providers/edenai/models/anthropic/claude-haiku-4-5.toml delete mode 100644 providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml delete mode 100644 providers/edenai/models/anthropic/claude-opus-4-1.toml delete mode 100644 providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml delete mode 100644 providers/edenai/models/anthropic/claude-opus-4-5.toml delete mode 100644 providers/edenai/models/anthropic/claude-opus-4-6.toml delete mode 100644 providers/edenai/models/anthropic/claude-opus-4-7.toml delete mode 100644 providers/edenai/models/anthropic/claude-opus-4-8.toml delete mode 100644 providers/edenai/models/anthropic/claude-opus-5.toml delete mode 100644 providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml delete mode 100644 providers/edenai/models/anthropic/claude-sonnet-4-6.toml delete mode 100644 providers/edenai/models/anthropic/claude-sonnet-5.toml delete mode 100644 providers/edenai/models/azure/gpt-4o-mini.toml delete mode 100644 providers/edenai/models/azure/gpt-4o-mini@us.toml delete mode 100644 providers/edenai/models/azure/gpt-4o.toml delete mode 100644 providers/edenai/models/azure/gpt-4o@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-4o@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5-codex.toml delete mode 100644 providers/edenai/models/azure/gpt-5-mini.toml delete mode 100644 providers/edenai/models/azure/gpt-5-mini@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5-mini@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5-nano.toml delete mode 100644 providers/edenai/models/azure/gpt-5-nano@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5-nano@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5-pro.toml delete mode 100644 providers/edenai/models/azure/gpt-5.1-codex-max.toml delete mode 100644 providers/edenai/models/azure/gpt-5.1-codex-mini.toml delete mode 100644 providers/edenai/models/azure/gpt-5.1-codex.toml delete mode 100644 providers/edenai/models/azure/gpt-5.1.toml delete mode 100644 providers/edenai/models/azure/gpt-5.1@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5.1@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5.2-codex.toml delete mode 100644 providers/edenai/models/azure/gpt-5.2.toml delete mode 100644 providers/edenai/models/azure/gpt-5.2@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5.3-codex.toml delete mode 100644 providers/edenai/models/azure/gpt-5.4-mini.toml delete mode 100644 providers/edenai/models/azure/gpt-5.4-mini@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5.4-mini@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5.4-nano.toml delete mode 100644 providers/edenai/models/azure/gpt-5.4-nano@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5.4-pro.toml delete mode 100644 providers/edenai/models/azure/gpt-5.4.toml delete mode 100644 providers/edenai/models/azure/gpt-5.4@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5.4@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5.5.toml delete mode 100644 providers/edenai/models/azure/gpt-5.5@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5.5@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5.6-luna.toml delete mode 100644 providers/edenai/models/azure/gpt-5.6-luna@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5.6-luna@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5.6-sol.toml delete mode 100644 providers/edenai/models/azure/gpt-5.6-sol@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5.6-sol@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5.6-terra.toml delete mode 100644 providers/edenai/models/azure/gpt-5.6-terra@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5.6-terra@us.toml delete mode 100644 providers/edenai/models/azure/gpt-5.toml delete mode 100644 providers/edenai/models/azure/gpt-5@eu.toml delete mode 100644 providers/edenai/models/azure/gpt-5@us.toml delete mode 100644 providers/edenai/models/azure/o3.toml delete mode 100644 providers/edenai/models/azure/o3@eu.toml delete mode 100644 providers/edenai/models/azure/o3@us.toml delete mode 100644 providers/edenai/models/bytedance/seed-1-6-250915.toml delete mode 100644 providers/edenai/models/bytedance/seed-1-6-flash-250715.toml delete mode 100644 providers/edenai/models/bytedance/seed-2-0-lite-260228.toml delete mode 100644 providers/edenai/models/bytedance/seed-2-0-lite-260428.toml delete mode 100644 providers/edenai/models/bytedance/seed-2-0-mini-260215.toml delete mode 100644 providers/edenai/models/bytedance/seed-2-0-mini-260428.toml delete mode 100644 providers/edenai/models/cerebras/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/cerebras/zai-glm-4.7.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/aisingapore/gemma-sea-lion-v4-27b-it.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/google/gemma-2b-it-lora.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/google/gemma-4-26b-a4b-it.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/google/gemma-7b-it-lora.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/ibm-granite/granite-4.0-h-micro.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/meta-llama/llama-2-7b-chat-hf-lora.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-3.1-8b-instruct-fp8.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-3.2-1b-instruct.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-3.2-3b-instruct.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-3.3-70b-instruct-fp8-fast.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-4-scout-17b-16e-instruct.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/meta/llama-guard-3-8b.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/mistral/mistral-7b-instruct-v0.2-lora.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/mistralai/mistral-small-3.1-24b-instruct.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.6.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.7-code.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/nvidia/nemotron-3-120b-a12b.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/openai/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/openai/gpt-oss-20b.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/qwen/qwen2.5-coder-32b-instruct.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/qwen/qwen3-30b-a3b-fp8.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/qwen/qwq-32b.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/zai-org/glm-4.7-flash.toml delete mode 100644 providers/edenai/models/cloudflare/@cf/zai-org/glm-5.2.toml delete mode 100644 providers/edenai/models/cohere/command-a-03-2025.toml delete mode 100644 providers/edenai/models/cohere/command-r-08-2024.toml delete mode 100644 providers/edenai/models/cohere/command-r-plus-08-2024.toml delete mode 100644 providers/edenai/models/cohere/command-r7b-12-2024.toml delete mode 100644 providers/edenai/models/databricks/databricks-claude-haiku-4-5.toml delete mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-1.toml delete mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-5.toml delete mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-6.toml delete mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-7.toml delete mode 100644 providers/edenai/models/databricks/databricks-claude-opus-4-8.toml delete mode 100644 providers/edenai/models/databricks/databricks-claude-sonnet-4-5.toml delete mode 100644 providers/edenai/models/databricks/databricks-claude-sonnet-4-6.toml delete mode 100644 providers/edenai/models/databricks/databricks-gemini-2-5-flash.toml delete mode 100644 providers/edenai/models/databricks/databricks-gemini-2-5-pro.toml delete mode 100644 providers/edenai/models/databricks/databricks-gemma-3-12b.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-1.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-4-mini.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-4-nano.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-4.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-5.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-6-luna.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-6-sol.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-6-terra.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-mini.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5-nano.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-5.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-oss-120b.toml delete mode 100644 providers/edenai/models/databricks/databricks-gpt-oss-20b.toml delete mode 100644 providers/edenai/models/databricks/databricks-llama-4-maverick.toml delete mode 100644 providers/edenai/models/databricks/databricks-meta-llama-3-1-8b-instruct.toml delete mode 100644 providers/edenai/models/databricks/databricks-meta-llama-3-3-70b-instruct.toml delete mode 100644 providers/edenai/models/deepinfra/ByteDance/Seed-1.8.toml delete mode 100644 providers/edenai/models/deepinfra/ByteDance/Seed-2.0-code.toml delete mode 100644 providers/edenai/models/deepinfra/ByteDance/Seed-2.0-mini.toml delete mode 100644 providers/edenai/models/deepinfra/ByteDance/Seed-2.0-pro.toml delete mode 100644 providers/edenai/models/deepinfra/Gryphe/MythoMax-L2-13b.toml delete mode 100644 providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.5.toml delete mode 100644 providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7-Turbo.toml delete mode 100644 providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7.toml delete mode 100644 providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M3.toml delete mode 100644 providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-405B.toml delete mode 100644 providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-70B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/QwQ-32B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen2.5-72B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen2.5-7B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen2.5-VL-32B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-14B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-30B-A3B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Max-Thinking.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-VL-235B-A22B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3-VL-30B-A3B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml delete mode 100644 providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml delete mode 100644 providers/edenai/models/deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo.toml delete mode 100644 providers/edenai/models/deepinfra/Sao10K/L3.1-70B-Euryale-v2.2.toml delete mode 100644 providers/edenai/models/deepinfra/Sao10K/L3.3-70B-Euryale-v2.3.toml delete mode 100644 providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml delete mode 100644 providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5.toml delete mode 100644 providers/edenai/models/deepinfra/allenai/olmOCR-7B-0725-FP8.toml delete mode 100644 providers/edenai/models/deepinfra/anthropic/claude-3-7-sonnet-latest.toml delete mode 100644 providers/edenai/models/deepinfra/anthropic/claude-4-opus.toml delete mode 100644 providers/edenai/models/deepinfra/anthropic/claude-4-sonnet.toml delete mode 100644 providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml delete mode 100644 providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml delete mode 100644 providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml delete mode 100644 providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml delete mode 100644 providers/edenai/models/deepinfra/deepreinforce-ai/Ornith-1.0-35B.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Turbo.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3-0324.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.2.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash-0731.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash.toml delete mode 100644 providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Pro.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemini-3.1-pro.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemma-3-12b-it.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemma-3-27b-it.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemma-3-4b-it.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemma-4-31B-it-Ultra.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemma-4-31B-it-turbo.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml delete mode 100644 providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-3.2-3B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-Guard-3-8B.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Llama-Guard-4-12B.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3-8B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo.toml delete mode 100644 providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/microsoft/WizardLM-2-8x22B.toml delete mode 100644 providers/edenai/models/deepinfra/microsoft/phi-4.toml delete mode 100644 providers/edenai/models/deepinfra/mistralai/Mistral-Nemo-Instruct-2407.toml delete mode 100644 providers/edenai/models/deepinfra/mistralai/Mistral-Small-24B-Instruct-2501.toml delete mode 100644 providers/edenai/models/deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506.toml delete mode 100644 providers/edenai/models/deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1.toml delete mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct-0905.toml delete mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2.5.toml delete mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2.6.toml delete mode 100644 providers/edenai/models/deepinfra/moonshotai/Kimi-K2.7-Code.toml delete mode 100644 providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml delete mode 100644 providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml delete mode 100644 providers/edenai/models/deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5.toml delete mode 100644 providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B.toml delete mode 100644 providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml delete mode 100644 providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B.toml delete mode 100644 providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml delete mode 100644 providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-30B-A3B.toml delete mode 100644 providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml delete mode 100644 providers/edenai/models/deepinfra/nvidia/Nemotron-Content-Safety-3.5.toml delete mode 100644 providers/edenai/models/deepinfra/openai/gpt-oss-120b-Turbo.toml delete mode 100644 providers/edenai/models/deepinfra/openai/gpt-oss-120b-Ultra.toml delete mode 100644 providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml delete mode 100644 providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml delete mode 100644 providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml delete mode 100644 providers/edenai/models/deepinfra/tencent/Hy3.toml delete mode 100644 providers/edenai/models/deepinfra/thinkingmachines/Inkling-Small.toml delete mode 100644 providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml delete mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml delete mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml delete mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml delete mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml delete mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml delete mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml delete mode 100644 providers/edenai/models/deepinfra/zai-org/GLM-5.toml delete mode 100644 providers/edenai/models/deepseek/deepseek-chat.toml delete mode 100644 providers/edenai/models/deepseek/deepseek-reasoner.toml delete mode 100644 providers/edenai/models/deepseek/deepseek-v4-flash.toml delete mode 100644 providers/edenai/models/deepseek/deepseek-v4-pro.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash-0731.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-pro.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/glm-5p2.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-20b.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p6.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p7-code.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k3.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m2p7.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m3.toml delete mode 100644 providers/edenai/models/fireworks_ai/accounts/fireworks/routers/kimi-k2p7-code-fast.toml delete mode 100644 providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml delete mode 100644 providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml delete mode 100644 providers/edenai/models/fireworks_ai/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/fireworks_ai/gpt-oss-20b.toml delete mode 100644 providers/edenai/models/fireworks_ai/kimi-k3.toml delete mode 100644 providers/edenai/models/google/gemini-2.5-flash-image.toml delete mode 100644 providers/edenai/models/google/gemini-2.5-flash-lite.toml delete mode 100644 providers/edenai/models/google/gemini-2.5-flash.toml delete mode 100644 providers/edenai/models/google/gemini-2.5-pro.toml delete mode 100644 providers/edenai/models/google/gemini-3-flash-preview.toml delete mode 100644 providers/edenai/models/google/gemini-3-pro-image-preview.toml delete mode 100644 providers/edenai/models/google/gemini-3-pro-image.toml delete mode 100644 providers/edenai/models/google/gemini-3.1-flash-image-preview.toml delete mode 100644 providers/edenai/models/google/gemini-3.1-flash-image.toml delete mode 100644 providers/edenai/models/google/gemini-3.1-flash-lite-image.toml delete mode 100644 providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml delete mode 100644 providers/edenai/models/google/gemini-3.1-flash-lite.toml delete mode 100644 providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml delete mode 100644 providers/edenai/models/google/gemini-3.1-pro-preview.toml delete mode 100644 providers/edenai/models/google/gemini-3.5-flash-lite.toml delete mode 100644 providers/edenai/models/google/gemini-3.5-flash.toml delete mode 100644 providers/edenai/models/google/gemini-3.6-flash.toml delete mode 100644 providers/edenai/models/google/gemma-4-26b-a4b-it.toml delete mode 100644 providers/edenai/models/google/gemma-4-31b-it.toml delete mode 100644 providers/edenai/models/groq/llama-3.1-8b-instant.toml delete mode 100644 providers/edenai/models/groq/llama-3.3-70b-versatile.toml delete mode 100644 providers/edenai/models/groq/openai/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/groq/openai/gpt-oss-20b.toml delete mode 100644 providers/edenai/models/groq/openai/gpt-oss-safeguard-20b.toml delete mode 100644 providers/edenai/models/groq/qwen/qwen3.6-27b.toml delete mode 100644 providers/edenai/models/lilac/google/gemma-4-31b-it.toml delete mode 100644 providers/edenai/models/lilac/minimaxai/minimax-m3.toml delete mode 100644 providers/edenai/models/lilac/moonshotai/kimi-k2.6.toml delete mode 100644 providers/edenai/models/lilac/zai-org/glm-5.2.toml delete mode 100644 providers/edenai/models/microsoft/gpt-35-turbo-16k.toml delete mode 100644 providers/edenai/models/microsoft/gpt-35-turbo.toml delete mode 100644 providers/edenai/models/microsoft/gpt-4.toml delete mode 100644 providers/edenai/models/microsoft/gpt-4o-mini.toml delete mode 100644 providers/edenai/models/microsoft/gpt-4o.toml delete mode 100644 providers/edenai/models/microsoft/o1-mini.toml delete mode 100644 providers/edenai/models/microsoft/o3-mini.toml delete mode 100644 providers/edenai/models/minimax/MiniMax-M2.1.toml delete mode 100644 providers/edenai/models/minimax/MiniMax-M2.5.toml delete mode 100644 providers/edenai/models/minimax/MiniMax-M2.7.toml delete mode 100644 providers/edenai/models/minimax/MiniMax-M2.toml delete mode 100644 providers/edenai/models/minimax/MiniMax-M3.toml delete mode 100644 providers/edenai/models/minimax/minimax-m1.toml delete mode 100644 providers/edenai/models/mistral/codestral-2405.toml delete mode 100644 providers/edenai/models/mistral/codestral-2508.toml delete mode 100644 providers/edenai/models/mistral/codestral-latest.toml delete mode 100644 providers/edenai/models/mistral/devstral-2512.toml delete mode 100644 providers/edenai/models/mistral/devstral-latest.toml delete mode 100644 providers/edenai/models/mistral/devstral-medium-latest.toml delete mode 100644 providers/edenai/models/mistral/devstral-small-latest.toml delete mode 100644 providers/edenai/models/mistral/labs-devstral-small-2512.toml delete mode 100644 providers/edenai/models/mistral/magistral-medium-2509.toml delete mode 100644 providers/edenai/models/mistral/magistral-medium-latest.toml delete mode 100644 providers/edenai/models/mistral/magistral-small-latest.toml delete mode 100644 providers/edenai/models/mistral/ministral-14b-2512.toml delete mode 100644 providers/edenai/models/mistral/ministral-3b-2512.toml delete mode 100644 providers/edenai/models/mistral/ministral-8b-2512.toml delete mode 100644 providers/edenai/models/mistral/ministral-8b-latest.toml delete mode 100644 providers/edenai/models/mistral/mistral-large-2402.toml delete mode 100644 providers/edenai/models/mistral/mistral-large-2407.toml delete mode 100644 providers/edenai/models/mistral/mistral-large-2512.toml delete mode 100644 providers/edenai/models/mistral/mistral-large-latest.toml delete mode 100644 providers/edenai/models/mistral/mistral-medium-2312.toml delete mode 100644 providers/edenai/models/mistral/mistral-medium-2505.toml delete mode 100644 providers/edenai/models/mistral/mistral-medium-2508.toml delete mode 100644 providers/edenai/models/mistral/mistral-medium-2604.toml delete mode 100644 providers/edenai/models/mistral/mistral-medium-3-5.toml delete mode 100644 providers/edenai/models/mistral/mistral-medium-3.5.toml delete mode 100644 providers/edenai/models/mistral/mistral-medium-3.toml delete mode 100644 providers/edenai/models/mistral/mistral-medium-latest.toml delete mode 100644 providers/edenai/models/mistral/mistral-medium.toml delete mode 100644 providers/edenai/models/mistral/mistral-small-2603.toml delete mode 100644 providers/edenai/models/mistral/mistral-small-latest.toml delete mode 100644 providers/edenai/models/mistral/mistral-small.toml delete mode 100644 providers/edenai/models/mistral/mistral-tiny-latest.toml delete mode 100644 providers/edenai/models/mistral/mistral-tiny.toml delete mode 100644 providers/edenai/models/mistral/open-mistral-7b.toml delete mode 100644 providers/edenai/models/mistral/open-mistral-nemo-2407.toml delete mode 100644 providers/edenai/models/mistral/open-mistral-nemo.toml delete mode 100644 providers/edenai/models/mistral/open-mixtral-8x22b.toml delete mode 100644 providers/edenai/models/mistral/open-mixtral-8x7b.toml delete mode 100644 providers/edenai/models/mistral/pixtral-12b-2409.toml delete mode 100644 providers/edenai/models/moonshot/kimi-k2.6.toml delete mode 100644 providers/edenai/models/moonshot/kimi-k2.7-code.toml delete mode 100644 providers/edenai/models/moonshot/kimi-k3.toml delete mode 100644 providers/edenai/models/nebius/MiniMaxAI/MiniMax-M2.5.toml delete mode 100644 providers/edenai/models/nebius/MiniMaxAI/MiniMax-M3.toml delete mode 100644 providers/edenai/models/nebius/NousResearch/Hermes-4-405B.toml delete mode 100644 providers/edenai/models/nebius/NousResearch/Hermes-4-70B.toml delete mode 100644 providers/edenai/models/nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml delete mode 100644 providers/edenai/models/nebius/Qwen/Qwen3-235B-A22B-Instruct-2507.toml delete mode 100644 providers/edenai/models/nebius/Qwen/Qwen3-30B-A3B-Instruct-2507.toml delete mode 100644 providers/edenai/models/nebius/Qwen/Qwen3-32B.toml delete mode 100644 providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml delete mode 100644 providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml delete mode 100644 providers/edenai/models/nebius/google/gemma-3-27b-it.toml delete mode 100644 providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml delete mode 100644 providers/edenai/models/nebius/moonshotai/Kimi-K2.6.toml delete mode 100644 providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml delete mode 100644 providers/edenai/models/nebius/moonshotai/Kimi-K3.toml delete mode 100644 providers/edenai/models/nebius/nvidia/Cosmos3-Super-Reasoner.toml delete mode 100644 providers/edenai/models/nebius/nvidia/Llama-3_1-Nemotron-Ultra-253B-v1.toml delete mode 100644 providers/edenai/models/nebius/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B.toml delete mode 100644 providers/edenai/models/nebius/nvidia/Nemotron-3-Nano-Omni.toml delete mode 100644 providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml delete mode 100644 providers/edenai/models/nebius/nvidia/nemotron-3-super-120b-a12b.toml delete mode 100644 providers/edenai/models/nebius/openai/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/nebius/openbmb/MiniCPM-V-4_5.toml delete mode 100644 providers/edenai/models/nebius/zai-org/GLM-5.1.toml delete mode 100644 providers/edenai/models/openai/gpt-3.5-turbo-0125.toml delete mode 100644 providers/edenai/models/openai/gpt-3.5-turbo-1106.toml delete mode 100644 providers/edenai/models/openai/gpt-3.5-turbo-16k.toml delete mode 100644 providers/edenai/models/openai/gpt-3.5-turbo.toml delete mode 100644 providers/edenai/models/openai/gpt-4-0613.toml delete mode 100644 providers/edenai/models/openai/gpt-4-turbo-2024-04-09.toml delete mode 100644 providers/edenai/models/openai/gpt-4-turbo.toml delete mode 100644 providers/edenai/models/openai/gpt-4.1-2025-04-14.toml delete mode 100644 providers/edenai/models/openai/gpt-4.1-mini-2025-04-14.toml delete mode 100644 providers/edenai/models/openai/gpt-4.1-mini.toml delete mode 100644 providers/edenai/models/openai/gpt-4.1-nano-2025-04-14.toml delete mode 100644 providers/edenai/models/openai/gpt-4.1-nano.toml delete mode 100644 providers/edenai/models/openai/gpt-4.1.toml delete mode 100644 providers/edenai/models/openai/gpt-4.toml delete mode 100644 providers/edenai/models/openai/gpt-4o-2024-08-06.toml delete mode 100644 providers/edenai/models/openai/gpt-4o-2024-11-20.toml delete mode 100644 providers/edenai/models/openai/gpt-4o-mini-2024-07-18.toml delete mode 100644 providers/edenai/models/openai/gpt-4o-mini-search-preview.toml delete mode 100644 providers/edenai/models/openai/gpt-4o-mini.toml delete mode 100644 providers/edenai/models/openai/gpt-4o-search-preview.toml delete mode 100644 providers/edenai/models/openai/gpt-4o.toml delete mode 100644 providers/edenai/models/openai/gpt-5-2025-08-07.toml delete mode 100644 providers/edenai/models/openai/gpt-5-mini-2025-08-07.toml delete mode 100644 providers/edenai/models/openai/gpt-5-mini.toml delete mode 100644 providers/edenai/models/openai/gpt-5-nano-2025-08-07.toml delete mode 100644 providers/edenai/models/openai/gpt-5-nano.toml delete mode 100644 providers/edenai/models/openai/gpt-5-pro-2025-10-06.toml delete mode 100644 providers/edenai/models/openai/gpt-5-pro.toml delete mode 100644 providers/edenai/models/openai/gpt-5-search-api-2025-10-14.toml delete mode 100644 providers/edenai/models/openai/gpt-5-search-api.toml delete mode 100644 providers/edenai/models/openai/gpt-5.1-2025-11-13.toml delete mode 100644 providers/edenai/models/openai/gpt-5.1.toml delete mode 100644 providers/edenai/models/openai/gpt-5.2-2025-12-11.toml delete mode 100644 providers/edenai/models/openai/gpt-5.2-chat-latest.toml delete mode 100644 providers/edenai/models/openai/gpt-5.2-pro-2025-12-11.toml delete mode 100644 providers/edenai/models/openai/gpt-5.2-pro.toml delete mode 100644 providers/edenai/models/openai/gpt-5.2.toml delete mode 100644 providers/edenai/models/openai/gpt-5.3-chat-latest.toml delete mode 100644 providers/edenai/models/openai/gpt-5.3-codex.toml delete mode 100644 providers/edenai/models/openai/gpt-5.4-2026-03-05.toml delete mode 100644 providers/edenai/models/openai/gpt-5.4-mini-2026-03-17.toml delete mode 100644 providers/edenai/models/openai/gpt-5.4-mini.toml delete mode 100644 providers/edenai/models/openai/gpt-5.4-nano-2026-03-17.toml delete mode 100644 providers/edenai/models/openai/gpt-5.4-nano.toml delete mode 100644 providers/edenai/models/openai/gpt-5.4-pro-2026-03-05.toml delete mode 100644 providers/edenai/models/openai/gpt-5.4-pro.toml delete mode 100644 providers/edenai/models/openai/gpt-5.4.toml delete mode 100644 providers/edenai/models/openai/gpt-5.5-2026-04-23.toml delete mode 100644 providers/edenai/models/openai/gpt-5.5-pro-2026-04-23.toml delete mode 100644 providers/edenai/models/openai/gpt-5.5-pro.toml delete mode 100644 providers/edenai/models/openai/gpt-5.5.toml delete mode 100644 providers/edenai/models/openai/gpt-5.6-luna.toml delete mode 100644 providers/edenai/models/openai/gpt-5.6-sol.toml delete mode 100644 providers/edenai/models/openai/gpt-5.6-terra.toml delete mode 100644 providers/edenai/models/openai/gpt-5.toml delete mode 100644 providers/edenai/models/openai/o1-2024-12-17.toml delete mode 100644 providers/edenai/models/openai/o1-pro-2025-03-19.toml delete mode 100644 providers/edenai/models/openai/o1-pro.toml delete mode 100644 providers/edenai/models/openai/o1.toml delete mode 100644 providers/edenai/models/openai/o3-2025-04-16.toml delete mode 100644 providers/edenai/models/openai/o3-deep-research-2025-06-26.toml delete mode 100644 providers/edenai/models/openai/o3-deep-research.toml delete mode 100644 providers/edenai/models/openai/o3-mini-2025-01-31.toml delete mode 100644 providers/edenai/models/openai/o3-mini.toml delete mode 100644 providers/edenai/models/openai/o3-pro-2025-06-10.toml delete mode 100644 providers/edenai/models/openai/o3-pro.toml delete mode 100644 providers/edenai/models/openai/o3.toml delete mode 100644 providers/edenai/models/openai/o4-mini-2025-04-16.toml delete mode 100644 providers/edenai/models/openai/o4-mini-deep-research-2025-06-26.toml delete mode 100644 providers/edenai/models/openai/o4-mini-deep-research.toml delete mode 100644 providers/edenai/models/openai/o4-mini.toml delete mode 100644 providers/edenai/models/ovhcloud/Meta-Llama-3_3-70B-Instruct.toml delete mode 100644 providers/edenai/models/ovhcloud/Mistral-7B-Instruct-v0.3.toml delete mode 100644 providers/edenai/models/ovhcloud/Mistral-Nemo-Instruct-2407.toml delete mode 100644 providers/edenai/models/ovhcloud/Mistral-Small-3.2-24B-Instruct-2506.toml delete mode 100644 providers/edenai/models/ovhcloud/Qwen2.5-VL-72B-Instruct.toml delete mode 100644 providers/edenai/models/ovhcloud/Qwen3-32B.toml delete mode 100644 providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml delete mode 100644 providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml delete mode 100644 providers/edenai/models/ovhcloud/Qwen3.5-9B.toml delete mode 100644 providers/edenai/models/ovhcloud/Qwen3.6-27B.toml delete mode 100644 providers/edenai/models/ovhcloud/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/ovhcloud/gpt-oss-20b.toml delete mode 100644 providers/edenai/models/perplexityai/sonar-deep-research.toml delete mode 100644 providers/edenai/models/perplexityai/sonar-pro.toml delete mode 100644 providers/edenai/models/perplexityai/sonar-reasoning-pro.toml delete mode 100644 providers/edenai/models/perplexityai/sonar.toml delete mode 100644 providers/edenai/models/qwen/deepseek-v3.2.toml delete mode 100644 providers/edenai/models/qwen/deepseek-v4-flash.toml delete mode 100644 providers/edenai/models/qwen/deepseek-v4-pro.toml delete mode 100644 providers/edenai/models/qwen/glm-5.1.toml delete mode 100644 providers/edenai/models/qwen/glm-5.2-fast-preview.toml delete mode 100644 providers/edenai/models/qwen/glm-5.2.toml delete mode 100644 providers/edenai/models/qwen/kimi-k2.7-code.toml delete mode 100644 providers/edenai/models/qwen/qwen-flash-2025-07-28.toml delete mode 100644 providers/edenai/models/qwen/qwen-flash-character.toml delete mode 100644 providers/edenai/models/qwen/qwen-flash.toml delete mode 100644 providers/edenai/models/qwen/qwen-max.toml delete mode 100644 providers/edenai/models/qwen/qwen-mt-flash.toml delete mode 100644 providers/edenai/models/qwen/qwen-mt-lite.toml delete mode 100644 providers/edenai/models/qwen/qwen-mt-plus.toml delete mode 100644 providers/edenai/models/qwen/qwen-mt-turbo.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus-2025-01-25.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus-2025-04-28.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus-2025-07-14.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus-2025-07-28.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus-2025-09-11.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus-2025-12-01.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus-character-ja.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus-character.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus-latest.toml delete mode 100644 providers/edenai/models/qwen/qwen-plus.toml delete mode 100644 providers/edenai/models/qwen/qwen-turbo.toml delete mode 100644 providers/edenai/models/qwen/qwen-vl-max.toml delete mode 100644 providers/edenai/models/qwen/qwen-vl-plus.toml delete mode 100644 providers/edenai/models/qwen/qwen3-14b.toml delete mode 100644 providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml delete mode 100644 providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml delete mode 100644 providers/edenai/models/qwen/qwen3-235b-a22b.toml delete mode 100644 providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml delete mode 100644 providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml delete mode 100644 providers/edenai/models/qwen/qwen3-30b-a3b.toml delete mode 100644 providers/edenai/models/qwen/qwen3-32b.toml delete mode 100644 providers/edenai/models/qwen/qwen3-8b.toml delete mode 100644 providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml delete mode 100644 providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml delete mode 100644 providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml delete mode 100644 providers/edenai/models/qwen/qwen3-coder-flash.toml delete mode 100644 providers/edenai/models/qwen/qwen3-coder-next.toml delete mode 100644 providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml delete mode 100644 providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml delete mode 100644 providers/edenai/models/qwen/qwen3-coder-plus.toml delete mode 100644 providers/edenai/models/qwen/qwen3-max-2025-09-23.toml delete mode 100644 providers/edenai/models/qwen/qwen3-max-2026-01-23.toml delete mode 100644 providers/edenai/models/qwen/qwen3-max-preview.toml delete mode 100644 providers/edenai/models/qwen/qwen3-max.toml delete mode 100644 providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml delete mode 100644 providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-flash.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml delete mode 100644 providers/edenai/models/qwen/qwen3-vl-plus.toml delete mode 100644 providers/edenai/models/qwen/qwen3.5-122b-a10b.toml delete mode 100644 providers/edenai/models/qwen/qwen3.5-27b.toml delete mode 100644 providers/edenai/models/qwen/qwen3.5-35b-a3b.toml delete mode 100644 providers/edenai/models/qwen/qwen3.5-397b-a17b.toml delete mode 100644 providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml delete mode 100644 providers/edenai/models/qwen/qwen3.5-flash.toml delete mode 100644 providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml delete mode 100644 providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml delete mode 100644 providers/edenai/models/qwen/qwen3.5-plus.toml delete mode 100644 providers/edenai/models/qwen/qwen3.6-27b.toml delete mode 100644 providers/edenai/models/qwen/qwen3.6-35b-a3b.toml delete mode 100644 providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml delete mode 100644 providers/edenai/models/qwen/qwen3.6-flash.toml delete mode 100644 providers/edenai/models/qwen/qwen3.6-max-preview.toml delete mode 100644 providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml delete mode 100644 providers/edenai/models/qwen/qwen3.6-plus.toml delete mode 100644 providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml delete mode 100644 providers/edenai/models/qwen/qwen3.7-flash.toml delete mode 100644 providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml delete mode 100644 providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml delete mode 100644 providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml delete mode 100644 providers/edenai/models/qwen/qwen3.7-max-preview.toml delete mode 100644 providers/edenai/models/qwen/qwen3.7-max.toml delete mode 100644 providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml delete mode 100644 providers/edenai/models/qwen/qwen3.7-plus.toml delete mode 100644 providers/edenai/models/qwen/qwq-plus.toml delete mode 100644 providers/edenai/models/scaleway/devstral-2-123b-instruct-2512.toml delete mode 100644 providers/edenai/models/scaleway/gemma-3-27b-it.toml delete mode 100644 providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml delete mode 100644 providers/edenai/models/scaleway/glm-5.2.toml delete mode 100644 providers/edenai/models/scaleway/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/scaleway/holo2-30b-a3b.toml delete mode 100644 providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml delete mode 100644 providers/edenai/models/scaleway/mistral-medium-3.5-128b.toml delete mode 100644 providers/edenai/models/scaleway/mistral-small-3.2-24b-instruct-2506.toml delete mode 100644 providers/edenai/models/scaleway/pixtral-12b-2409.toml delete mode 100644 providers/edenai/models/scaleway/qwen3-235b-a22b-instruct-2507.toml delete mode 100644 providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml delete mode 100644 providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml delete mode 100644 providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml delete mode 100644 providers/edenai/models/scaleway/voxtral-small-24b-2507.toml delete mode 100644 providers/edenai/models/together_ai/LiquidAI/LFM2.5-8B-A1B.toml delete mode 100644 providers/edenai/models/together_ai/MiniMaxAI/MiniMax-M3.toml delete mode 100644 providers/edenai/models/together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo.toml delete mode 100644 providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml delete mode 100644 providers/edenai/models/together_ai/arize-ai/qwen-2-1.5b-instruct.toml delete mode 100644 providers/edenai/models/together_ai/deepcogito/cogito-v2-1-671b.toml delete mode 100644 providers/edenai/models/together_ai/deepseek-ai/DeepSeek-V4-Pro.toml delete mode 100644 providers/edenai/models/together_ai/google/gemma-3n-E4B-it.toml delete mode 100644 providers/edenai/models/together_ai/google/gemma-4-31B-it.toml delete mode 100644 providers/edenai/models/together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml delete mode 100644 providers/edenai/models/together_ai/meta-llama/Llama-Guard-4-12B.toml delete mode 100644 providers/edenai/models/together_ai/moonshotai/Kimi-K2.6.toml delete mode 100644 providers/edenai/models/together_ai/moonshotai/Kimi-K2.7-Code.toml delete mode 100644 providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml delete mode 100644 providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml delete mode 100644 providers/edenai/models/together_ai/openai/gpt-oss-120b.toml delete mode 100644 providers/edenai/models/together_ai/openai/gpt-oss-20b.toml delete mode 100644 providers/edenai/models/together_ai/pearl-ai/gemma-4-31b-it.toml delete mode 100644 providers/edenai/models/together_ai/thinkingmachines/Inkling-Small.toml delete mode 100644 providers/edenai/models/together_ai/thinkingmachines/Inkling.toml delete mode 100644 providers/edenai/models/together_ai/zai-org/GLM-5.2.toml delete mode 100644 providers/edenai/models/vertex/claude-fable-5.toml delete mode 100644 providers/edenai/models/vertex/claude-fable-5@eu.toml delete mode 100644 providers/edenai/models/vertex/claude-haiku-4-5.toml delete mode 100644 providers/edenai/models/vertex/claude-opus-4-1.toml delete mode 100644 providers/edenai/models/vertex/claude-opus-4-5.toml delete mode 100644 providers/edenai/models/vertex/claude-opus-4-6.toml delete mode 100644 providers/edenai/models/vertex/claude-opus-4-7.toml delete mode 100644 providers/edenai/models/vertex/claude-opus-4-7@eu.toml delete mode 100644 providers/edenai/models/vertex/claude-opus-4-7@us.toml delete mode 100644 providers/edenai/models/vertex/claude-opus-4-8.toml delete mode 100644 providers/edenai/models/vertex/claude-opus-4-8@eu.toml delete mode 100644 providers/edenai/models/vertex/claude-opus-4-8@us.toml delete mode 100644 providers/edenai/models/vertex/claude-sonnet-4-5.toml delete mode 100644 providers/edenai/models/vertex/claude-sonnet-4-6.toml delete mode 100644 providers/edenai/models/vertex/claude-sonnet-5.toml delete mode 100644 providers/edenai/models/vertex/claude-sonnet-5@eu.toml delete mode 100644 providers/edenai/models/vertex/claude-sonnet-5@us.toml delete mode 100644 providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas.toml delete mode 100644 providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@eu.toml delete mode 100644 providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@us.toml delete mode 100644 providers/edenai/models/vertex/gemini-2.5-flash-image.toml delete mode 100644 providers/edenai/models/vertex/gemini-2.5-flash-lite.toml delete mode 100644 providers/edenai/models/vertex/gemini-2.5-flash.toml delete mode 100644 providers/edenai/models/vertex/gemini-2.5-pro.toml delete mode 100644 providers/edenai/models/vertex/gemini-3-flash-preview.toml delete mode 100644 providers/edenai/models/vertex/gemini-3-pro-image.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.1-flash-image.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.1-pro-preview.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.5-flash-lite.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.5-flash.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.5-flash@eu.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.5-flash@us.toml delete mode 100644 providers/edenai/models/vertex/gemini-3.6-flash.toml delete mode 100644 providers/edenai/models/vertex/minimaxai/minimax-m2-maas.toml delete mode 100644 providers/edenai/models/vertex/moonshotai/kimi-k2-thinking-maas.toml delete mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas.toml delete mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@eu.toml delete mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@us.toml delete mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas.toml delete mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@eu.toml delete mode 100644 providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@us.toml delete mode 100644 providers/edenai/models/vertex/zai-org/glm-4.7-maas.toml delete mode 100644 providers/edenai/models/vertex/zai-org/glm-4.7-maas@eu.toml delete mode 100644 providers/edenai/models/vertex/zai-org/glm-4.7-maas@us.toml delete mode 100644 providers/edenai/models/xai/grok-3-beta.toml delete mode 100644 providers/edenai/models/xai/grok-3-fast-beta.toml delete mode 100644 providers/edenai/models/xai/grok-3-fast-latest.toml delete mode 100644 providers/edenai/models/xai/grok-3-latest.toml delete mode 100644 providers/edenai/models/xai/grok-3-mini-fast-beta.toml delete mode 100644 providers/edenai/models/xai/grok-3-mini-fast-latest.toml delete mode 100644 providers/edenai/models/xai/grok-3-mini-fast.toml delete mode 100644 providers/edenai/models/xai/grok-3-mini-latest.toml delete mode 100644 providers/edenai/models/xai/grok-3.toml delete mode 100644 providers/edenai/models/xai/grok-4-0709.toml delete mode 100644 providers/edenai/models/xai/grok-4-1-fast-non-reasoning-latest.toml delete mode 100644 providers/edenai/models/xai/grok-4-1-fast-non-reasoning.toml delete mode 100644 providers/edenai/models/xai/grok-4-1-fast-reasoning-latest.toml delete mode 100644 providers/edenai/models/xai/grok-4-1-fast-reasoning.toml delete mode 100644 providers/edenai/models/xai/grok-4-1-fast.toml delete mode 100644 providers/edenai/models/xai/grok-4-fast-non-reasoning.toml delete mode 100644 providers/edenai/models/xai/grok-4-fast-reasoning.toml delete mode 100644 providers/edenai/models/xai/grok-4-fast.toml delete mode 100644 providers/edenai/models/xai/grok-4-latest.toml delete mode 100644 providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml delete mode 100644 providers/edenai/models/xai/grok-4.20-0309-reasoning.toml delete mode 100644 providers/edenai/models/xai/grok-4.20-beta-0309-non-reasoning.toml delete mode 100644 providers/edenai/models/xai/grok-4.20-beta-0309-reasoning.toml delete mode 100644 providers/edenai/models/xai/grok-4.20.toml delete mode 100644 providers/edenai/models/xai/grok-4.3-latest.toml delete mode 100644 providers/edenai/models/xai/grok-4.3.toml delete mode 100644 providers/edenai/models/xai/grok-4.5.toml delete mode 100644 providers/edenai/models/xai/grok-4.toml delete mode 100644 providers/edenai/models/xai/grok-build-0.1.toml delete mode 100644 providers/edenai/models/xai/grok-code-fast-1-0825.toml delete mode 100644 providers/edenai/models/xai/grok-code-fast-1.toml delete mode 100644 providers/edenai/models/xai/grok-code-fast.toml diff --git a/providers/edenai/models/amazon/ai21.jamba-1-5-large-v1:0.toml b/providers/edenai/models/amazon/ai21.jamba-1-5-large-v1:0.toml deleted file mode 100644 index 0abaf9beaa..0000000000 --- a/providers/edenai/models/amazon/ai21.jamba-1-5-large-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "ai21.jamba-1-5-large-v1:0" -description = "Flagship model for demanding analysis, coding, and production agent workflows" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 2 -output = 8 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/ai21.jamba-1-5-mini-v1:0.toml b/providers/edenai/models/amazon/ai21.jamba-1-5-mini-v1:0.toml deleted file mode 100644 index e27a984325..0000000000 --- a/providers/edenai/models/amazon/ai21.jamba-1-5-mini-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "ai21.jamba-1-5-mini-v1:0" -description = "Efficient model for low-latency assistance, extraction, and routine automation" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.4 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0.toml b/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0.toml deleted file mode 100644 index 2f637081a7..0000000000 --- a/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "amazon.nova-2-lite-v1:0" -description = "Nova 2 Lite is a fast, cost-effective reasoning model for everyday workloads that can process text, images, and videos to generate text. Nova 2 Lite demonstrates standout capabilities in processing..." -release_date = "2025-12-02" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 -cache_read = 0.075 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@eu.toml b/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@eu.toml deleted file mode 100644 index 2f637081a7..0000000000 --- a/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@eu.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "amazon.nova-2-lite-v1:0" -description = "Nova 2 Lite is a fast, cost-effective reasoning model for everyday workloads that can process text, images, and videos to generate text. Nova 2 Lite demonstrates standout capabilities in processing..." -release_date = "2025-12-02" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 -cache_read = 0.075 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@us.toml b/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@us.toml deleted file mode 100644 index 2f637081a7..0000000000 --- a/providers/edenai/models/amazon/amazon.nova-2-lite-v1:0@us.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "amazon.nova-2-lite-v1:0" -description = "Nova 2 Lite is a fast, cost-effective reasoning model for everyday workloads that can process text, images, and videos to generate text. Nova 2 Lite demonstrates standout capabilities in processing..." -release_date = "2025-12-02" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 -cache_read = 0.075 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-lite-v1:0.toml b/providers/edenai/models/amazon/amazon.nova-lite-v1:0.toml deleted file mode 100644 index f3dde105e6..0000000000 --- a/providers/edenai/models/amazon/amazon.nova-lite-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "amazon.nova-lite-v1:0" -description = "Efficient model for low-latency assistance, extraction, and routine automation" -release_date = "2024-12-05" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.06 -output = 0.24 - -[limit] -context = 300_000 -output = 300_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-lite-v1:0@us.toml b/providers/edenai/models/amazon/amazon.nova-lite-v1:0@us.toml deleted file mode 100644 index f3dde105e6..0000000000 --- a/providers/edenai/models/amazon/amazon.nova-lite-v1:0@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "amazon.nova-lite-v1:0" -description = "Efficient model for low-latency assistance, extraction, and routine automation" -release_date = "2024-12-05" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.06 -output = 0.24 - -[limit] -context = 300_000 -output = 300_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-micro-v1:0.toml b/providers/edenai/models/amazon/amazon.nova-micro-v1:0.toml deleted file mode 100644 index 31d74d4a14..0000000000 --- a/providers/edenai/models/amazon/amazon.nova-micro-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "amazon.nova-micro-v1:0" -description = "Amazon Nova Micro 1.0 is a text-only model that delivers the lowest latency responses in the Amazon Nova family of models at a very low cost. With a context length..." -release_date = "2024-12-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.035 -output = 0.14 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-micro-v1:0@us.toml b/providers/edenai/models/amazon/amazon.nova-micro-v1:0@us.toml deleted file mode 100644 index 31d74d4a14..0000000000 --- a/providers/edenai/models/amazon/amazon.nova-micro-v1:0@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "amazon.nova-micro-v1:0" -description = "Amazon Nova Micro 1.0 is a text-only model that delivers the lowest latency responses in the Amazon Nova family of models at a very low cost. With a context length..." -release_date = "2024-12-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.035 -output = 0.14 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-pro-v1:0.toml b/providers/edenai/models/amazon/amazon.nova-pro-v1:0.toml deleted file mode 100644 index f4b5073a93..0000000000 --- a/providers/edenai/models/amazon/amazon.nova-pro-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "amazon.nova-pro-v1:0" -description = "Flagship model for demanding analysis, coding, and production agent workflows" -release_date = "2024-12-05" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.8 -output = 3.2 - -[limit] -context = 300_000 -output = 300_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/amazon.nova-pro-v1:0@us.toml b/providers/edenai/models/amazon/amazon.nova-pro-v1:0@us.toml deleted file mode 100644 index f4b5073a93..0000000000 --- a/providers/edenai/models/amazon/amazon.nova-pro-v1:0@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "amazon.nova-pro-v1:0" -description = "Flagship model for demanding analysis, coding, and production agent workflows" -release_date = "2024-12-05" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.8 -output = 3.2 - -[limit] -context = 300_000 -output = 300_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-3-haiku-20240307-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-3-haiku-20240307-v1:0.toml deleted file mode 100644 index 53c75b733b..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-3-haiku-20240307-v1:0.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "anthropic.claude-3-haiku-20240307-v1:0" -description = "Fast Claude model for responsive assistance, classification, and lightweight agents" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.275 -output = 1.375 -cache_read = 0.0275 -cache_write = 0.34375 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-3-sonnet-20240229-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-3-sonnet-20240229-v1:0.toml deleted file mode 100644 index 1491a62390..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-3-sonnet-20240229-v1:0.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "anthropic.claude-3-sonnet-20240229-v1:0" -description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 3 -output = 15 -cache_read = 0.3 -cache_write = 3.75 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0.toml deleted file mode 100644 index a26d372558..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-haiku-4-5-20251001-v1:0" -description = "Fast Claude model for responsive assistance, classification, and lightweight agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1 -output = 5 -cache_read = 0.1 -cache_write = 1.25 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@eu.toml b/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@eu.toml deleted file mode 100644 index 127ccdf15c..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@eu.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-haiku-4-5-20251001-v1:0" -description = "Fast Claude model for responsive assistance, classification, and lightweight agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.1 -output = 5.5 -cache_read = 0.11 -cache_write = 1.375 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@us.toml b/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@us.toml deleted file mode 100644 index 127ccdf15c..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-haiku-4-5-20251001-v1:0@us.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-haiku-4-5-20251001-v1:0" -description = "Fast Claude model for responsive assistance, classification, and lightweight agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.1 -output = 5.5 -cache_read = 0.11 -cache_write = 1.375 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-1-20250805-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-1-20250805-v1:0.toml deleted file mode 100644 index 4aecd4681b..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-1-20250805-v1:0.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-1-20250805-v1:0" -description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 16.5 -output = 82.5 -cache_read = 1.65 -cache_write = 20.625 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0.toml deleted file mode 100644 index 54b652bfdf..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-5-20251101-v1:0" -description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@eu.toml deleted file mode 100644 index f5d9e4f5c5..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@eu.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-5-20251101-v1:0" -description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@us.toml deleted file mode 100644 index f5d9e4f5c5..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-5-20251101-v1:0@us.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-5-20251101-v1:0" -description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1.toml deleted file mode 100644 index be73f42c96..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-6-v1" -description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@eu.toml deleted file mode 100644 index 8eccfcd578..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@eu.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-6-v1" -description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@us.toml deleted file mode 100644 index 8eccfcd578..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-6-v1@us.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-6-v1" -description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-7.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-7.toml deleted file mode 100644 index 1ca0dfb556..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-7.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-7" -description = "Opus 4.7 is the next generation of Anthropic's Opus family, built for long-running, asynchronous agents. Building on the coding and agentic strengths of Opus 4.6, it delivers stronger performance on..." -release_date = "2026-04-16" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-7@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-7@eu.toml deleted file mode 100644 index 0447b0678a..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-7@eu.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-7" -description = "Opus 4.7 is the next generation of Anthropic's Opus family, built for long-running, asynchronous agents. Building on the coding and agentic strengths of Opus 4.6, it delivers stronger performance on..." -release_date = "2026-04-16" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-7@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-7@us.toml deleted file mode 100644 index 0447b0678a..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-7@us.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-7" -description = "Opus 4.7 is the next generation of Anthropic's Opus family, built for long-running, asynchronous agents. Building on the coding and agentic strengths of Opus 4.6, it delivers stronger performance on..." -release_date = "2026-04-16" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-8.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-8.toml deleted file mode 100644 index a6933e54a2..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-8.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-8" -description = "Claude Opus 4.8 is Anthropic's most capable generally available model in the Opus family. It supports text, image, and file inputs with text output, with reasoning support and a 1M-token..." -release_date = "2026-05-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-8@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-8@eu.toml deleted file mode 100644 index ce3af479ae..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-8@eu.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-8" -description = "Claude Opus 4.8 is Anthropic's most capable generally available model in the Opus family. It supports text, image, and file inputs with text output, with reasoning support and a 1M-token..." -release_date = "2026-05-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-4-8@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-4-8@us.toml deleted file mode 100644 index ce3af479ae..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-4-8@us.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-4-8" -description = "Claude Opus 4.8 is Anthropic's most capable generally available model in the Opus family. It supports text, image, and file inputs with text output, with reasoning support and a 1M-token..." -release_date = "2026-05-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-5.toml b/providers/edenai/models/amazon/anthropic.claude-opus-5.toml deleted file mode 100644 index 407784cdad..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-5.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-5" -description = "Claude Opus 5 is Anthropic’s flagship model for demanding reasoning, coding, and long-horizon agentic work. It is particularly strong at end-to-end software tasks, code review and bug finding, visual analysis..." -release_date = "2026-07-24" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-5@eu.toml b/providers/edenai/models/amazon/anthropic.claude-opus-5@eu.toml deleted file mode 100644 index bdb17d9d65..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-5@eu.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-5" -description = "Claude Opus 5 is Anthropic’s flagship model for demanding reasoning, coding, and long-horizon agentic work. It is particularly strong at end-to-end software tasks, code review and bug finding, visual analysis..." -release_date = "2026-07-24" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-opus-5@us.toml b/providers/edenai/models/amazon/anthropic.claude-opus-5@us.toml deleted file mode 100644 index bdb17d9d65..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-opus-5@us.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-opus-5" -description = "Claude Opus 5 is Anthropic’s flagship model for demanding reasoning, coding, and long-horizon agentic work. It is particularly strong at end-to-end software tasks, code review and bug finding, visual analysis..." -release_date = "2026-07-24" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0.toml deleted file mode 100644 index 366325be11..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-sonnet-4-5-20250929-v1:0" -description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 -cache_write = 3.75 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@eu.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@eu.toml deleted file mode 100644 index b8e452d211..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@eu.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-sonnet-4-5-20250929-v1:0" -description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 3.3 -output = 16.5 -cache_read = 0.33 -cache_write = 4.125 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@us.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@us.toml deleted file mode 100644 index b8e452d211..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-5-20250929-v1:0@us.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-sonnet-4-5-20250929-v1:0" -description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 3.3 -output = 16.5 -cache_read = 0.33 -cache_write = 4.125 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6.toml deleted file mode 100644 index 06ad6edb15..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-sonnet-4-6" -description = "Sonnet 4.6 is Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work. It excels at iterative development, complex codebase navigation, end-to-end project management with..." -release_date = "2026-02-17" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 -cache_write = 3.75 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@eu.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@eu.toml deleted file mode 100644 index f95c07f5d7..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@eu.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-sonnet-4-6" -description = "Sonnet 4.6 is Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work. It excels at iterative development, complex codebase navigation, end-to-end project management with..." -release_date = "2026-02-17" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 3.3 -output = 16.5 -cache_read = 0.33 -cache_write = 4.125 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@us.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@us.toml deleted file mode 100644 index f95c07f5d7..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-sonnet-4-6@us.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-sonnet-4-6" -description = "Sonnet 4.6 is Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work. It excels at iterative development, complex codebase navigation, end-to-end project management with..." -release_date = "2026-02-17" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 3.3 -output = 16.5 -cache_read = 0.33 -cache_write = 4.125 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-5.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-5.toml deleted file mode 100644 index 8766be5033..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-sonnet-5.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-sonnet-5" -description = "Sonnet 5 is Anthropic's most capable Sonnet-class model, with frontier performance across coding, agents, and professional work. It supports adaptive thinking with selectable reasoning effort levels (low, medium, high, max,..." -release_date = "2026-06-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2 -output = 10 -cache_read = 0.2 -cache_write = 2.5 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-5@eu.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-5@eu.toml deleted file mode 100644 index 7819fe2a04..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-sonnet-5@eu.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-sonnet-5" -description = "Sonnet 5 is Anthropic's most capable Sonnet-class model, with frontier performance across coding, agents, and professional work. It supports adaptive thinking with selectable reasoning effort levels (low, medium, high, max,..." -release_date = "2026-06-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2.2 -output = 11 -cache_read = 0.22 -cache_write = 2.75 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/anthropic.claude-sonnet-5@us.toml b/providers/edenai/models/amazon/anthropic.claude-sonnet-5@us.toml deleted file mode 100644 index 7819fe2a04..0000000000 --- a/providers/edenai/models/amazon/anthropic.claude-sonnet-5@us.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "anthropic.claude-sonnet-5" -description = "Sonnet 5 is Anthropic's most capable Sonnet-class model, with frontier performance across coding, agents, and professional work. It supports adaptive thinking with selectable reasoning effort levels (low, medium, high, max,..." -release_date = "2026-06-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2.2 -output = 11 -cache_read = 0.22 -cache_write = 2.75 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/cohere.command-r-plus-v1:0.toml b/providers/edenai/models/amazon/cohere.command-r-plus-v1:0.toml deleted file mode 100644 index 8556c46b21..0000000000 --- a/providers/edenai/models/amazon/cohere.command-r-plus-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "cohere.command-r-plus-v1:0" -description = "Cohere retrieval model for long-context chat and enterprise RAG workflows" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3 -output = 15 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/cohere.command-r-v1:0.toml b/providers/edenai/models/amazon/cohere.command-r-v1:0.toml deleted file mode 100644 index b7d9564471..0000000000 --- a/providers/edenai/models/amazon/cohere.command-r-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "cohere.command-r-v1:0" -description = "Cohere retrieval model for long-context chat and enterprise RAG workflows" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.5 -output = 1.5 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/deepseek.r1-v1:0.toml b/providers/edenai/models/amazon/deepseek.r1-v1:0.toml deleted file mode 100644 index bcfc7d4c31..0000000000 --- a/providers/edenai/models/amazon/deepseek.r1-v1:0.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "deepseek.r1-v1:0" -description = "DeepSeek reasoning model for multi-step analysis, math, coding, and tools" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 1.35 -output = 5.4 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/deepseek.v3.2.toml b/providers/edenai/models/amazon/deepseek.v3.2.toml deleted file mode 100644 index 94b4fba77c..0000000000 --- a/providers/edenai/models/amazon/deepseek.v3.2.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "deepseek.v3.2" -description = "DeepSeek chat model for instruction following, coding, and analysis" -release_date = "2026-02-13" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.74 -output = 2.22 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-12b-it.toml b/providers/edenai/models/amazon/google.gemma-3-12b-it.toml deleted file mode 100644 index ebf04e7cc5..0000000000 --- a/providers/edenai/models/amazon/google.gemma-3-12b-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google.gemma-3-12b-it" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.09 -output = 0.29 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-12b-it@us.toml b/providers/edenai/models/amazon/google.gemma-3-12b-it@us.toml deleted file mode 100644 index ebf04e7cc5..0000000000 --- a/providers/edenai/models/amazon/google.gemma-3-12b-it@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google.gemma-3-12b-it" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.09 -output = 0.29 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-27b-it.toml b/providers/edenai/models/amazon/google.gemma-3-27b-it.toml deleted file mode 100644 index 2927a205a1..0000000000 --- a/providers/edenai/models/amazon/google.gemma-3-27b-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google.gemma-3-27b-it" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.23 -output = 0.38 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-27b-it@us.toml b/providers/edenai/models/amazon/google.gemma-3-27b-it@us.toml deleted file mode 100644 index 2927a205a1..0000000000 --- a/providers/edenai/models/amazon/google.gemma-3-27b-it@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google.gemma-3-27b-it" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.23 -output = 0.38 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-4b-it.toml b/providers/edenai/models/amazon/google.gemma-3-4b-it.toml deleted file mode 100644 index d636727ae4..0000000000 --- a/providers/edenai/models/amazon/google.gemma-3-4b-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google.gemma-3-4b-it" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.04 -output = 0.08 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/google.gemma-3-4b-it@us.toml b/providers/edenai/models/amazon/google.gemma-3-4b-it@us.toml deleted file mode 100644 index d636727ae4..0000000000 --- a/providers/edenai/models/amazon/google.gemma-3-4b-it@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google.gemma-3-4b-it" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.04 -output = 0.08 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-1-70b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-1-70b-instruct-v1:0.toml deleted file mode 100644 index 576d28adac..0000000000 --- a/providers/edenai/models/amazon/meta.llama3-1-70b-instruct-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta.llama3-1-70b-instruct-v1:0" -description = "Tool-capable chat model for instruction following and agentic application workflows" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.99 -output = 0.99 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-1-8b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-1-8b-instruct-v1:0.toml deleted file mode 100644 index 14bc8f9f69..0000000000 --- a/providers/edenai/models/amazon/meta.llama3-1-8b-instruct-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta.llama3-1-8b-instruct-v1:0" -description = "Tool-capable chat model for instruction following and agentic application workflows" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.22 -output = 0.22 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-3-70b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-3-70b-instruct-v1:0.toml deleted file mode 100644 index ba9098acd6..0000000000 --- a/providers/edenai/models/amazon/meta.llama3-3-70b-instruct-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta.llama3-3-70b-instruct-v1:0" -description = "Tool-capable chat model for instruction following and agentic application workflows" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.72 -output = 0.72 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-70b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-70b-instruct-v1:0.toml deleted file mode 100644 index d1f1be46dd..0000000000 --- a/providers/edenai/models/amazon/meta.llama3-70b-instruct-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta.llama3-70b-instruct-v1:0" -description = "General-purpose chat model for instruction following, writing, and analysis" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 3.18 -output = 4.2 - -[limit] -context = 8_192 -output = 8_192 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/meta.llama3-8b-instruct-v1:0.toml b/providers/edenai/models/amazon/meta.llama3-8b-instruct-v1:0.toml deleted file mode 100644 index dc70c11fc4..0000000000 --- a/providers/edenai/models/amazon/meta.llama3-8b-instruct-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta.llama3-8b-instruct-v1:0" -description = "General-purpose chat model for instruction following, writing, and analysis" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.36 -output = 0.72 - -[limit] -context = 8_192 -output = 8_192 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.1.toml b/providers/edenai/models/amazon/minimax.minimax-m2.1.toml deleted file mode 100644 index d5e4b90db6..0000000000 --- a/providers/edenai/models/amazon/minimax.minimax-m2.1.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "minimax.minimax-m2.1" -description = "MiniMax model for chat, coding, office work, and agentic tasks" -release_date = "2026-02-13" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.36 -output = 1.44 - -[limit] -context = 196_000 -output = 196_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.1@us.toml b/providers/edenai/models/amazon/minimax.minimax-m2.1@us.toml deleted file mode 100644 index d5e4b90db6..0000000000 --- a/providers/edenai/models/amazon/minimax.minimax-m2.1@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "minimax.minimax-m2.1" -description = "MiniMax model for chat, coding, office work, and agentic tasks" -release_date = "2026-02-13" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.36 -output = 1.44 - -[limit] -context = 196_000 -output = 196_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.5.toml b/providers/edenai/models/amazon/minimax.minimax-m2.5.toml deleted file mode 100644 index 7f4a574e7b..0000000000 --- a/providers/edenai/models/amazon/minimax.minimax-m2.5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "minimax.minimax-m2.5" -description = "MiniMax model for chat, coding, office work, and agentic tasks" -release_date = "2026-04-03" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.36 -output = 1.44 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.5@us.toml b/providers/edenai/models/amazon/minimax.minimax-m2.5@us.toml deleted file mode 100644 index 7f4a574e7b..0000000000 --- a/providers/edenai/models/amazon/minimax.minimax-m2.5@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "minimax.minimax-m2.5" -description = "MiniMax model for chat, coding, office work, and agentic tasks" -release_date = "2026-04-03" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.36 -output = 1.44 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2.toml b/providers/edenai/models/amazon/minimax.minimax-m2.toml deleted file mode 100644 index d209da825d..0000000000 --- a/providers/edenai/models/amazon/minimax.minimax-m2.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "minimax.minimax-m2" -description = "MiniMax model for chat, coding, office work, and agentic tasks" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.3 -output = 1.2 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/minimax.minimax-m2@us.toml b/providers/edenai/models/amazon/minimax.minimax-m2@us.toml deleted file mode 100644 index d209da825d..0000000000 --- a/providers/edenai/models/amazon/minimax.minimax-m2@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "minimax.minimax-m2" -description = "MiniMax model for chat, coding, office work, and agentic tasks" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.3 -output = 1.2 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.devstral-2-123b.toml b/providers/edenai/models/amazon/mistral.devstral-2-123b.toml deleted file mode 100644 index 70448268b0..0000000000 --- a/providers/edenai/models/amazon/mistral.devstral-2-123b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.devstral-2-123b" -description = "Mistral coding agent model for repository tasks and software engineering workflows" -release_date = "2026-03-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.4 -output = 2 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.devstral-2-123b@us.toml b/providers/edenai/models/amazon/mistral.devstral-2-123b@us.toml deleted file mode 100644 index 70448268b0..0000000000 --- a/providers/edenai/models/amazon/mistral.devstral-2-123b@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.devstral-2-123b" -description = "Mistral coding agent model for repository tasks and software engineering workflows" -release_date = "2026-03-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.4 -output = 2 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.magistral-small-2509.toml b/providers/edenai/models/amazon/mistral.magistral-small-2509.toml deleted file mode 100644 index c2020c3061..0000000000 --- a/providers/edenai/models/amazon/mistral.magistral-small-2509.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "mistral.magistral-small-2509" -description = "Mistral reasoning model for transparent analysis, math, and complex decisions" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 1.5 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.magistral-small-2509@us.toml b/providers/edenai/models/amazon/mistral.magistral-small-2509@us.toml deleted file mode 100644 index c2020c3061..0000000000 --- a/providers/edenai/models/amazon/mistral.magistral-small-2509@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "mistral.magistral-small-2509" -description = "Mistral reasoning model for transparent analysis, math, and complex decisions" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 1.5 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct.toml b/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct.toml deleted file mode 100644 index ca0a3b7d73..0000000000 --- a/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.ministral-3-14b-instruct" -description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.2 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct@us.toml b/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct@us.toml deleted file mode 100644 index ca0a3b7d73..0000000000 --- a/providers/edenai/models/amazon/mistral.ministral-3-14b-instruct@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.ministral-3-14b-instruct" -description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.2 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct.toml b/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct.toml deleted file mode 100644 index 8d58939f44..0000000000 --- a/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.ministral-3-3b-instruct" -description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.1 -output = 0.1 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct@us.toml b/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct@us.toml deleted file mode 100644 index 8d58939f44..0000000000 --- a/providers/edenai/models/amazon/mistral.ministral-3-3b-instruct@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.ministral-3-3b-instruct" -description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.1 -output = 0.1 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct.toml b/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct.toml deleted file mode 100644 index 3771c75361..0000000000 --- a/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.ministral-3-8b-instruct" -description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.15 -output = 0.15 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct@us.toml b/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct@us.toml deleted file mode 100644 index 3771c75361..0000000000 --- a/providers/edenai/models/amazon/mistral.ministral-3-8b-instruct@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.ministral-3-8b-instruct" -description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.15 -output = 0.15 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2.toml b/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2.toml deleted file mode 100644 index 5238e1c4cb..0000000000 --- a/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.mistral-7b-instruct-v0:2" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.26 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2@us.toml b/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2@us.toml deleted file mode 100644 index 5238e1c4cb..0000000000 --- a/providers/edenai/models/amazon/mistral.mistral-7b-instruct-v0:2@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.mistral-7b-instruct-v0:2" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.26 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0.toml b/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0.toml deleted file mode 100644 index 6357f72f0f..0000000000 --- a/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.mistral-large-2402-v1:0" -description = "Flagship Mistral model for advanced reasoning, coding, and multilingual work" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 10.4 -output = 31.2 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0@us.toml b/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0@us.toml deleted file mode 100644 index 6357f72f0f..0000000000 --- a/providers/edenai/models/amazon/mistral.mistral-large-2402-v1:0@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.mistral-large-2402-v1:0" -description = "Flagship Mistral model for advanced reasoning, coding, and multilingual work" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 10.4 -output = 31.2 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-large-3-675b-instruct.toml b/providers/edenai/models/amazon/mistral.mistral-large-3-675b-instruct.toml deleted file mode 100644 index d832d083cd..0000000000 --- a/providers/edenai/models/amazon/mistral.mistral-large-3-675b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.mistral-large-3-675b-instruct" -description = "Flagship Mistral model for advanced reasoning, coding, and multilingual work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.5 -output = 1.5 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mistral-small-2402-v1:0.toml b/providers/edenai/models/amazon/mistral.mistral-small-2402-v1:0.toml deleted file mode 100644 index 64b2e94eab..0000000000 --- a/providers/edenai/models/amazon/mistral.mistral-small-2402-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.mistral-small-2402-v1:0" -description = "Efficient Mistral model for fast chat, extraction, and production assistants" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 1 -output = 3 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1.toml b/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1.toml deleted file mode 100644 index c38c82105a..0000000000 --- a/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.mixtral-8x7b-instruct-v0:1" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.59 -output = 0.91 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1@us.toml b/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1@us.toml deleted file mode 100644 index c38c82105a..0000000000 --- a/providers/edenai/models/amazon/mistral.mixtral-8x7b-instruct-v0:1@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.mixtral-8x7b-instruct-v0:1" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-03-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.59 -output = 0.91 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0.toml b/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0.toml deleted file mode 100644 index 936e47ea7a..0000000000 --- a/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.pixtral-large-2502-v1:0" -description = "Mistral vision-language model for image understanding and multimodal chat" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 2 -output = 6 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0@us.toml b/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0@us.toml deleted file mode 100644 index 936e47ea7a..0000000000 --- a/providers/edenai/models/amazon/mistral.pixtral-large-2502-v1:0@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.pixtral-large-2502-v1:0" -description = "Mistral vision-language model for image understanding and multimodal chat" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 2 -output = 6 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507.toml b/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507.toml deleted file mode 100644 index 33841c7045..0000000000 --- a/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.voxtral-mini-3b-2507" -description = "Efficient Mistral model for fast chat, extraction, and production assistants" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.04 -output = 0.04 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "audio"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507@us.toml b/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507@us.toml deleted file mode 100644 index 33841c7045..0000000000 --- a/providers/edenai/models/amazon/mistral.voxtral-mini-3b-2507@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.voxtral-mini-3b-2507" -description = "Efficient Mistral model for fast chat, extraction, and production assistants" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.04 -output = 0.04 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "audio"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507.toml b/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507.toml deleted file mode 100644 index cb48175637..0000000000 --- a/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.voxtral-small-24b-2507" -description = "Efficient Mistral model for fast chat, extraction, and production assistants" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "audio"] -output = ["text"] diff --git a/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507@us.toml b/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507@us.toml deleted file mode 100644 index cb48175637..0000000000 --- a/providers/edenai/models/amazon/mistral.voxtral-small-24b-2507@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral.voxtral-small-24b-2507" -description = "Efficient Mistral model for fast chat, extraction, and production assistants" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "audio"] -output = ["text"] diff --git a/providers/edenai/models/amazon/moonshot.kimi-k2-thinking.toml b/providers/edenai/models/amazon/moonshot.kimi-k2-thinking.toml deleted file mode 100644 index 99683779d5..0000000000 --- a/providers/edenai/models/amazon/moonshot.kimi-k2-thinking.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "moonshot.kimi-k2-thinking" -description = "Kimi reasoning model for long-horizon research, planning, and tool use" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 2.5 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/moonshotai.kimi-k2.5.toml b/providers/edenai/models/amazon/moonshotai.kimi-k2.5.toml deleted file mode 100644 index a0293056a9..0000000000 --- a/providers/edenai/models/amazon/moonshotai.kimi-k2.5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "moonshotai.kimi-k2.5" -description = "Kimi K2.5 is Moonshot AI's native multimodal model, delivering state-of-the-art visual coding capability and a self-directed agent swarm paradigm. Built on Kimi K2 with continued pretraining over approximately 15T mixed..." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 3 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2.toml deleted file mode 100644 index ffeeaf0ee1..0000000000 --- a/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "nvidia.nemotron-nano-12b-v2" -description = "Nemotron multimodal model for visual reasoning and agentic AI workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.6 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2@us.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2@us.toml deleted file mode 100644 index ffeeaf0ee1..0000000000 --- a/providers/edenai/models/amazon/nvidia.nemotron-nano-12b-v2@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "nvidia.nemotron-nano-12b-v2" -description = "Nemotron multimodal model for visual reasoning and agentic AI workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.6 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b.toml deleted file mode 100644 index e53b4f3409..0000000000 --- a/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "nvidia.nemotron-nano-3-30b" -description = "Compact Nemotron model for efficient reasoning and deployable AI agents" -release_date = "2026-02-13" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.06 -output = 0.24 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b@us.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b@us.toml deleted file mode 100644 index e53b4f3409..0000000000 --- a/providers/edenai/models/amazon/nvidia.nemotron-nano-3-30b@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "nvidia.nemotron-nano-3-30b" -description = "Compact Nemotron model for efficient reasoning and deployable AI agents" -release_date = "2026-02-13" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.06 -output = 0.24 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2.toml deleted file mode 100644 index 57071a450f..0000000000 --- a/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "nvidia.nemotron-nano-9b-v2" -description = "Compact Nemotron model for efficient reasoning and deployable AI agents" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.06 -output = 0.23 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2@us.toml b/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2@us.toml deleted file mode 100644 index 57071a450f..0000000000 --- a/providers/edenai/models/amazon/nvidia.nemotron-nano-9b-v2@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "nvidia.nemotron-nano-9b-v2" -description = "Compact Nemotron model for efficient reasoning and deployable AI agents" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.06 -output = 0.23 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b.toml b/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b.toml deleted file mode 100644 index a37b107f92..0000000000 --- a/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "nvidia.nemotron-super-3-120b" -description = "Nemotron model for efficient reasoning, coding, and specialized AI agents" -release_date = "2026-04-03" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.65 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b@us.toml b/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b@us.toml deleted file mode 100644 index a37b107f92..0000000000 --- a/providers/edenai/models/amazon/nvidia.nemotron-super-3-120b@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "nvidia.nemotron-super-3-120b" -description = "Nemotron model for efficient reasoning, coding, and specialized AI agents" -release_date = "2026-04-03" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.65 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0.toml b/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0.toml deleted file mode 100644 index 5c0724148e..0000000000 --- a/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "openai.gpt-oss-120b-1:0" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0@us.toml b/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0@us.toml deleted file mode 100644 index 5c0724148e..0000000000 --- a/providers/edenai/models/amazon/openai.gpt-oss-120b-1:0@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "openai.gpt-oss-120b-1:0" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0.toml b/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0.toml deleted file mode 100644 index 68bf37b086..0000000000 --- a/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "openai.gpt-oss-20b-1:0" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.07 -output = 0.3 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0@us.toml b/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0@us.toml deleted file mode 100644 index 68bf37b086..0000000000 --- a/providers/edenai/models/amazon/openai.gpt-oss-20b-1:0@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "openai.gpt-oss-20b-1:0" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.07 -output = 0.3 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b.toml b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b.toml deleted file mode 100644 index 957e32f705..0000000000 --- a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "openai.gpt-oss-safeguard-120b" -description = "Safety model for policy screening, moderation, and risk-aware routing workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b@us.toml b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b@us.toml deleted file mode 100644 index 957e32f705..0000000000 --- a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-120b@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "openai.gpt-oss-safeguard-120b" -description = "Safety model for policy screening, moderation, and risk-aware routing workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b.toml b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b.toml deleted file mode 100644 index 98c0789b87..0000000000 --- a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "openai.gpt-oss-safeguard-20b" -description = "Safety model for policy screening, moderation, and risk-aware routing workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.07 -output = 0.2 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b@us.toml b/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b@us.toml deleted file mode 100644 index 98c0789b87..0000000000 --- a/providers/edenai/models/amazon/openai.gpt-oss-safeguard-20b@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "openai.gpt-oss-safeguard-20b" -description = "Safety model for policy screening, moderation, and risk-aware routing workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.07 -output = 0.2 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0.toml b/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0.toml deleted file mode 100644 index b3b11c04d3..0000000000 --- a/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen.qwen3-32b-v1:0" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0@us.toml b/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0@us.toml deleted file mode 100644 index b3b11c04d3..0000000000 --- a/providers/edenai/models/amazon/qwen.qwen3-32b-v1:0@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen.qwen3-32b-v1:0" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml b/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml deleted file mode 100644 index c2276d801e..0000000000 --- a/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen.qwen3-coder-30b-a3b-v1:0" -description = "Qwen coding model for software agents, repository edits, and code reasoning" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0@us.toml b/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0@us.toml deleted file mode 100644 index c2276d801e..0000000000 --- a/providers/edenai/models/amazon/qwen.qwen3-coder-30b-a3b-v1:0@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen.qwen3-coder-30b-a3b-v1:0" -description = "Qwen coding model for software agents, repository edits, and code reasoning" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-coder-next.toml b/providers/edenai/models/amazon/qwen.qwen3-coder-next.toml deleted file mode 100644 index 901937f16a..0000000000 --- a/providers/edenai/models/amazon/qwen.qwen3-coder-next.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen.qwen3-coder-next" -description = "Qwen coding model for software agents, repository edits, and code reasoning" -release_date = "2026-02-13" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.6 -output = 1.44 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b.toml b/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b.toml deleted file mode 100644 index 63371b16d9..0000000000 --- a/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen.qwen3-next-80b-a3b" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.15 -output = 1.2 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b@us.toml b/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b@us.toml deleted file mode 100644 index 63371b16d9..0000000000 --- a/providers/edenai/models/amazon/qwen.qwen3-next-80b-a3b@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen.qwen3-next-80b-a3b" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.15 -output = 1.2 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b.toml b/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b.toml deleted file mode 100644 index 7a4792795d..0000000000 --- a/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen.qwen3-vl-235b-a22b" -description = "Qwen vision-language model for visual reasoning, documents, and agent tasks" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.53 -output = 2.66 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b@us.toml b/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b@us.toml deleted file mode 100644 index 7a4792795d..0000000000 --- a/providers/edenai/models/amazon/qwen.qwen3-vl-235b-a22b@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen.qwen3-vl-235b-a22b" -description = "Qwen vision-language model for visual reasoning, documents, and agent tasks" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.53 -output = 2.66 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/amazon/writer.palmyra-x4-v1:0.toml b/providers/edenai/models/amazon/writer.palmyra-x4-v1:0.toml deleted file mode 100644 index a633e07b90..0000000000 --- a/providers/edenai/models/amazon/writer.palmyra-x4-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "writer.palmyra-x4-v1:0" -description = "Multimodal model for analyzing text, images, documents, and rich media" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 2.5 -output = 10 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/writer.palmyra-x5-v1:0.toml b/providers/edenai/models/amazon/writer.palmyra-x5-v1:0.toml deleted file mode 100644 index 69e72a3f80..0000000000 --- a/providers/edenai/models/amazon/writer.palmyra-x5-v1:0.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "writer.palmyra-x5-v1:0" -description = "Multimodal model for analyzing text, images, documents, and rich media" -release_date = "2026-06-18" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.6 -output = 6 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/amazon/zai.glm-4.7-flash.toml b/providers/edenai/models/amazon/zai.glm-4.7-flash.toml deleted file mode 100644 index 7640f68fe2..0000000000 --- a/providers/edenai/models/amazon/zai.glm-4.7-flash.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "zai.glm-4.7-flash" -description = "Efficient GLM model for fast reasoning, coding, and agent workflows" -release_date = "2026-03-05" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.07 -output = 0.4 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/zai.glm-4.7-flash@us.toml b/providers/edenai/models/amazon/zai.glm-4.7-flash@us.toml deleted file mode 100644 index 7640f68fe2..0000000000 --- a/providers/edenai/models/amazon/zai.glm-4.7-flash@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "zai.glm-4.7-flash" -description = "Efficient GLM model for fast reasoning, coding, and agent workflows" -release_date = "2026-03-05" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.07 -output = 0.4 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/zai.glm-4.7.toml b/providers/edenai/models/amazon/zai.glm-4.7.toml deleted file mode 100644 index 210ea60b4c..0000000000 --- a/providers/edenai/models/amazon/zai.glm-4.7.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "zai.glm-4.7" -description = "Flagship GLM model for hybrid reasoning, coding, and agentic engineering" -release_date = "2026-02-13" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 2.2 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/amazon/zai.glm-5.toml b/providers/edenai/models/amazon/zai.glm-5.toml deleted file mode 100644 index 2f4a7d64e4..0000000000 --- a/providers/edenai/models/amazon/zai.glm-5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "zai.glm-5" -description = "Flagship GLM model for hybrid reasoning, coding, and agentic engineering" -release_date = "2026-04-03" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 1 -output = 3.2 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/anthropic/claude-fable-5.toml b/providers/edenai/models/anthropic/claude-fable-5.toml deleted file mode 100644 index 3c739cb629..0000000000 --- a/providers/edenai/models/anthropic/claude-fable-5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-fable-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 10 -output = 50 -cache_read = 1 -cache_write = 12.5 diff --git a/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml b/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml deleted file mode 100644 index dfcc839140..0000000000 --- a/providers/edenai/models/anthropic/claude-haiku-4-5-20251001.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-haiku-4-5-20251001" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 1 -output = 5 -cache_read = 0.1 -cache_write = 1.25 diff --git a/providers/edenai/models/anthropic/claude-haiku-4-5.toml b/providers/edenai/models/anthropic/claude-haiku-4-5.toml deleted file mode 100644 index 06fca54354..0000000000 --- a/providers/edenai/models/anthropic/claude-haiku-4-5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-haiku-4-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 1 -output = 5 -cache_read = 0.1 -cache_write = 1.25 diff --git a/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml b/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml deleted file mode 100644 index 3a7c2180a0..0000000000 --- a/providers/edenai/models/anthropic/claude-opus-4-1-20250805.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-4-1-20250805" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 15 -output = 75 -cache_read = 1.5 -cache_write = 18.75 diff --git a/providers/edenai/models/anthropic/claude-opus-4-1.toml b/providers/edenai/models/anthropic/claude-opus-4-1.toml deleted file mode 100644 index 7e99aedff4..0000000000 --- a/providers/edenai/models/anthropic/claude-opus-4-1.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-4-1" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 15 -output = 75 -cache_read = 1.5 -cache_write = 18.75 diff --git a/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml b/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml deleted file mode 100644 index f447f02f35..0000000000 --- a/providers/edenai/models/anthropic/claude-opus-4-5-20251101.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "anthropic/claude-opus-4-5-20251101" -release_date = "2025-11-24" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/anthropic/claude-opus-4-5.toml b/providers/edenai/models/anthropic/claude-opus-4-5.toml deleted file mode 100644 index 5eb221cdaf..0000000000 --- a/providers/edenai/models/anthropic/claude-opus-4-5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-4-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/anthropic/claude-opus-4-6.toml b/providers/edenai/models/anthropic/claude-opus-4-6.toml deleted file mode 100644 index 46b6d8b7c5..0000000000 --- a/providers/edenai/models/anthropic/claude-opus-4-6.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "anthropic/claude-opus-4-6" -release_date = "2026-02-04" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/anthropic/claude-opus-4-7.toml b/providers/edenai/models/anthropic/claude-opus-4-7.toml deleted file mode 100644 index 549fc82d5c..0000000000 --- a/providers/edenai/models/anthropic/claude-opus-4-7.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-4-7" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/anthropic/claude-opus-4-8.toml b/providers/edenai/models/anthropic/claude-opus-4-8.toml deleted file mode 100644 index 41d61ef245..0000000000 --- a/providers/edenai/models/anthropic/claude-opus-4-8.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "anthropic/claude-opus-4-8" -release_date = "2026-05-27" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/anthropic/claude-opus-5.toml b/providers/edenai/models/anthropic/claude-opus-5.toml deleted file mode 100644 index 05baf00504..0000000000 --- a/providers/edenai/models/anthropic/claude-opus-5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml b/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml deleted file mode 100644 index de1d64712d..0000000000 --- a/providers/edenai/models/anthropic/claude-sonnet-4-5-20250929.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "anthropic/claude-sonnet-4-5-20250929" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 -cache_write = 3.75 - -[limit] -context = 1_000_000 diff --git a/providers/edenai/models/anthropic/claude-sonnet-4-6.toml b/providers/edenai/models/anthropic/claude-sonnet-4-6.toml deleted file mode 100644 index 2a98900c73..0000000000 --- a/providers/edenai/models/anthropic/claude-sonnet-4-6.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-sonnet-4-6" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 -cache_write = 3.75 diff --git a/providers/edenai/models/anthropic/claude-sonnet-5.toml b/providers/edenai/models/anthropic/claude-sonnet-5.toml deleted file mode 100644 index a341529363..0000000000 --- a/providers/edenai/models/anthropic/claude-sonnet-5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-sonnet-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 2 -output = 10 -cache_read = 0.2 -cache_write = 2.5 diff --git a/providers/edenai/models/azure/gpt-4o-mini.toml b/providers/edenai/models/azure/gpt-4o-mini.toml deleted file mode 100644 index 3c4111aad9..0000000000 --- a/providers/edenai/models/azure/gpt-4o-mini.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-4o-mini" -release_date = "2026-07-24" -last_updated = "2026-08-01" - -[cost] -input = 0.1815 -output = 0.726 -cache_read = 0.0825 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o-mini@us.toml b/providers/edenai/models/azure/gpt-4o-mini@us.toml deleted file mode 100644 index 3c4111aad9..0000000000 --- a/providers/edenai/models/azure/gpt-4o-mini@us.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-4o-mini" -release_date = "2026-07-24" -last_updated = "2026-08-01" - -[cost] -input = 0.1815 -output = 0.726 -cache_read = 0.0825 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o.toml b/providers/edenai/models/azure/gpt-4o.toml deleted file mode 100644 index 70a9ddd8c2..0000000000 --- a/providers/edenai/models/azure/gpt-4o.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-4o" -release_date = "2026-07-24" -last_updated = "2026-08-01" - -[cost] -input = 2.5 -output = 10 -cache_read = 1.25 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o@eu.toml b/providers/edenai/models/azure/gpt-4o@eu.toml deleted file mode 100644 index b13c24a041..0000000000 --- a/providers/edenai/models/azure/gpt-4o@eu.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-4o" -release_date = "2026-07-24" -last_updated = "2026-08-01" - -[cost] -input = 2.75 -output = 11 -cache_read = 1.375 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-4o@us.toml b/providers/edenai/models/azure/gpt-4o@us.toml deleted file mode 100644 index b13c24a041..0000000000 --- a/providers/edenai/models/azure/gpt-4o@us.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-4o" -release_date = "2026-07-24" -last_updated = "2026-08-01" - -[cost] -input = 2.75 -output = 11 -cache_read = 1.375 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/azure/gpt-5-codex.toml b/providers/edenai/models/azure/gpt-5-codex.toml deleted file mode 100644 index 44bae23e4f..0000000000 --- a/providers/edenai/models/azure/gpt-5-codex.toml +++ /dev/null @@ -1,17 +0,0 @@ -base_model = "openai/gpt-5-codex" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -attachment = true -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-mini.toml b/providers/edenai/models/azure/gpt-5-mini.toml deleted file mode 100644 index 31fd1b12de..0000000000 --- a/providers/edenai/models/azure/gpt-5-mini.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5-mini" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.25 -output = 2 -cache_read = 0.025 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-mini@eu.toml b/providers/edenai/models/azure/gpt-5-mini@eu.toml deleted file mode 100644 index 6b3c778204..0000000000 --- a/providers/edenai/models/azure/gpt-5-mini@eu.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5-mini" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.275 -output = 2.2 -cache_read = 0.0275 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-mini@us.toml b/providers/edenai/models/azure/gpt-5-mini@us.toml deleted file mode 100644 index 6b3c778204..0000000000 --- a/providers/edenai/models/azure/gpt-5-mini@us.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5-mini" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.275 -output = 2.2 -cache_read = 0.0275 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-nano.toml b/providers/edenai/models/azure/gpt-5-nano.toml deleted file mode 100644 index 1232a15cfe..0000000000 --- a/providers/edenai/models/azure/gpt-5-nano.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5-nano" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.05 -output = 0.4 -cache_read = 0.005 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-nano@eu.toml b/providers/edenai/models/azure/gpt-5-nano@eu.toml deleted file mode 100644 index 6fa04eb446..0000000000 --- a/providers/edenai/models/azure/gpt-5-nano@eu.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5-nano" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.055 -output = 0.44 -cache_read = 0.0055 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-nano@us.toml b/providers/edenai/models/azure/gpt-5-nano@us.toml deleted file mode 100644 index 6fa04eb446..0000000000 --- a/providers/edenai/models/azure/gpt-5-nano@us.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5-nano" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.055 -output = 0.44 -cache_read = 0.0055 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5-pro.toml b/providers/edenai/models/azure/gpt-5-pro.toml deleted file mode 100644 index 69028c2ed8..0000000000 --- a/providers/edenai/models/azure/gpt-5-pro.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "openai/gpt-5-pro" -base_model_omit = ["limit.input"] -release_date = "2026-07-24" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 15 -output = 120 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1-codex-max.toml b/providers/edenai/models/azure/gpt-5.1-codex-max.toml deleted file mode 100644 index 1d8a175454..0000000000 --- a/providers/edenai/models/azure/gpt-5.1-codex-max.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.1-codex-max" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1-codex-mini.toml b/providers/edenai/models/azure/gpt-5.1-codex-mini.toml deleted file mode 100644 index e8526f4947..0000000000 --- a/providers/edenai/models/azure/gpt-5.1-codex-mini.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.1-codex-mini" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.25 -output = 2 -cache_read = 0.025 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1-codex.toml b/providers/edenai/models/azure/gpt-5.1-codex.toml deleted file mode 100644 index 8fb7d5962d..0000000000 --- a/providers/edenai/models/azure/gpt-5.1-codex.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.1-codex" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1.toml b/providers/edenai/models/azure/gpt-5.1.toml deleted file mode 100644 index e70d6304e3..0000000000 --- a/providers/edenai/models/azure/gpt-5.1.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.1" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1@eu.toml b/providers/edenai/models/azure/gpt-5.1@eu.toml deleted file mode 100644 index 3ae0fa9415..0000000000 --- a/providers/edenai/models/azure/gpt-5.1@eu.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.1" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.375 -output = 11 -cache_read = 0.1375 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.1@us.toml b/providers/edenai/models/azure/gpt-5.1@us.toml deleted file mode 100644 index 3ae0fa9415..0000000000 --- a/providers/edenai/models/azure/gpt-5.1@us.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.1" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.375 -output = 11 -cache_read = 0.1375 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.2-codex.toml b/providers/edenai/models/azure/gpt-5.2-codex.toml deleted file mode 100644 index 58b8464245..0000000000 --- a/providers/edenai/models/azure/gpt-5.2-codex.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "openai/gpt-5.2-codex" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.75 -output = 14 -cache_read = 0.175 - -[limit] -context = 272_000 diff --git a/providers/edenai/models/azure/gpt-5.2.toml b/providers/edenai/models/azure/gpt-5.2.toml deleted file mode 100644 index 22c4da71db..0000000000 --- a/providers/edenai/models/azure/gpt-5.2.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.2" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.75 -output = 14 -cache_read = 0.175 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.2@us.toml b/providers/edenai/models/azure/gpt-5.2@us.toml deleted file mode 100644 index fc1437e245..0000000000 --- a/providers/edenai/models/azure/gpt-5.2@us.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.2" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.925 -output = 15.4 -cache_read = 0.1925 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.3-codex.toml b/providers/edenai/models/azure/gpt-5.3-codex.toml deleted file mode 100644 index d73ecff0a9..0000000000 --- a/providers/edenai/models/azure/gpt-5.3-codex.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "openai/gpt-5.3-codex" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.75 -output = 14 -cache_read = 0.175 - -[limit] -context = 272_000 diff --git a/providers/edenai/models/azure/gpt-5.4-mini.toml b/providers/edenai/models/azure/gpt-5.4-mini.toml deleted file mode 100644 index 21db8037f3..0000000000 --- a/providers/edenai/models/azure/gpt-5.4-mini.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.4-mini" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.75 -output = 4.5 -cache_read = 0.075 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-mini@eu.toml b/providers/edenai/models/azure/gpt-5.4-mini@eu.toml deleted file mode 100644 index c291328339..0000000000 --- a/providers/edenai/models/azure/gpt-5.4-mini@eu.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.4-mini" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.825 -output = 4.95 -cache_read = 0.0825 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-mini@us.toml b/providers/edenai/models/azure/gpt-5.4-mini@us.toml deleted file mode 100644 index c291328339..0000000000 --- a/providers/edenai/models/azure/gpt-5.4-mini@us.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.4-mini" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.825 -output = 4.95 -cache_read = 0.0825 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-nano.toml b/providers/edenai/models/azure/gpt-5.4-nano.toml deleted file mode 100644 index 90f320db88..0000000000 --- a/providers/edenai/models/azure/gpt-5.4-nano.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.4-nano" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.2 -output = 1.25 -cache_read = 0.02 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-nano@us.toml b/providers/edenai/models/azure/gpt-5.4-nano@us.toml deleted file mode 100644 index 24c5e59c23..0000000000 --- a/providers/edenai/models/azure/gpt-5.4-nano@us.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5.4-nano" -base_model_omit = ["limit.input"] -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.22 -output = 1.375 -cache_read = 0.022 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4-pro.toml b/providers/edenai/models/azure/gpt-5.4-pro.toml deleted file mode 100644 index 7babfc2a5f..0000000000 --- a/providers/edenai/models/azure/gpt-5.4-pro.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/gpt-5.4-pro" -release_date = "2026-07-24" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 30 -output = 180 -cache_read = 3 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5.4.toml b/providers/edenai/models/azure/gpt-5.4.toml deleted file mode 100644 index 8b872a1030..0000000000 --- a/providers/edenai/models/azure/gpt-5.4.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-5.4" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2.5 -output = 15 -cache_read = 0.25 diff --git a/providers/edenai/models/azure/gpt-5.4@eu.toml b/providers/edenai/models/azure/gpt-5.4@eu.toml deleted file mode 100644 index 959d09ab72..0000000000 --- a/providers/edenai/models/azure/gpt-5.4@eu.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-5.4" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2.75 -output = 16.5 -cache_read = 0.275 diff --git a/providers/edenai/models/azure/gpt-5.4@us.toml b/providers/edenai/models/azure/gpt-5.4@us.toml deleted file mode 100644 index 959d09ab72..0000000000 --- a/providers/edenai/models/azure/gpt-5.4@us.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-5.4" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2.75 -output = 16.5 -cache_read = 0.275 diff --git a/providers/edenai/models/azure/gpt-5.5.toml b/providers/edenai/models/azure/gpt-5.5.toml deleted file mode 100644 index 86acbe03e0..0000000000 --- a/providers/edenai/models/azure/gpt-5.5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.5" -release_date = "2026-07-28" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 5 -output = 30 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/azure/gpt-5.5@eu.toml b/providers/edenai/models/azure/gpt-5.5@eu.toml deleted file mode 100644 index ce63c77130..0000000000 --- a/providers/edenai/models/azure/gpt-5.5@eu.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.5" -release_date = "2026-07-28" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 5.5 -output = 33 -cache_read = 0.55 -cache_write = 6.875 diff --git a/providers/edenai/models/azure/gpt-5.5@us.toml b/providers/edenai/models/azure/gpt-5.5@us.toml deleted file mode 100644 index ce63c77130..0000000000 --- a/providers/edenai/models/azure/gpt-5.5@us.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.5" -release_date = "2026-07-28" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 5.5 -output = 33 -cache_read = 0.55 -cache_write = 6.875 diff --git a/providers/edenai/models/azure/gpt-5.6-luna.toml b/providers/edenai/models/azure/gpt-5.6-luna.toml deleted file mode 100644 index cc4f069910..0000000000 --- a/providers/edenai/models/azure/gpt-5.6-luna.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.6-luna" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1 -output = 6 -cache_read = 0.1 -cache_write = 1.25 diff --git a/providers/edenai/models/azure/gpt-5.6-luna@eu.toml b/providers/edenai/models/azure/gpt-5.6-luna@eu.toml deleted file mode 100644 index b138b63a2e..0000000000 --- a/providers/edenai/models/azure/gpt-5.6-luna@eu.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.6-luna" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.1 -output = 6.6 -cache_read = 0.11 -cache_write = 1.375 diff --git a/providers/edenai/models/azure/gpt-5.6-luna@us.toml b/providers/edenai/models/azure/gpt-5.6-luna@us.toml deleted file mode 100644 index b138b63a2e..0000000000 --- a/providers/edenai/models/azure/gpt-5.6-luna@us.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.6-luna" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.1 -output = 6.6 -cache_read = 0.11 -cache_write = 1.375 diff --git a/providers/edenai/models/azure/gpt-5.6-sol.toml b/providers/edenai/models/azure/gpt-5.6-sol.toml deleted file mode 100644 index c3ca2771c0..0000000000 --- a/providers/edenai/models/azure/gpt-5.6-sol.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.6-sol" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 5 -output = 30 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/azure/gpt-5.6-sol@eu.toml b/providers/edenai/models/azure/gpt-5.6-sol@eu.toml deleted file mode 100644 index 010e5a2da7..0000000000 --- a/providers/edenai/models/azure/gpt-5.6-sol@eu.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.6-sol" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 5.5 -output = 33 -cache_read = 0.55 -cache_write = 6.875 diff --git a/providers/edenai/models/azure/gpt-5.6-sol@us.toml b/providers/edenai/models/azure/gpt-5.6-sol@us.toml deleted file mode 100644 index 010e5a2da7..0000000000 --- a/providers/edenai/models/azure/gpt-5.6-sol@us.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.6-sol" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 5.5 -output = 33 -cache_read = 0.55 -cache_write = 6.875 diff --git a/providers/edenai/models/azure/gpt-5.6-terra.toml b/providers/edenai/models/azure/gpt-5.6-terra.toml deleted file mode 100644 index 712130f1ac..0000000000 --- a/providers/edenai/models/azure/gpt-5.6-terra.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.6-terra" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2.5 -output = 15 -cache_read = 0.25 -cache_write = 3.125 diff --git a/providers/edenai/models/azure/gpt-5.6-terra@eu.toml b/providers/edenai/models/azure/gpt-5.6-terra@eu.toml deleted file mode 100644 index ee901914a6..0000000000 --- a/providers/edenai/models/azure/gpt-5.6-terra@eu.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.6-terra" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2.75 -output = 16.5 -cache_read = 0.275 -cache_write = 3.4375 diff --git a/providers/edenai/models/azure/gpt-5.6-terra@us.toml b/providers/edenai/models/azure/gpt-5.6-terra@us.toml deleted file mode 100644 index ee901914a6..0000000000 --- a/providers/edenai/models/azure/gpt-5.6-terra@us.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5.6-terra" -release_date = "2026-07-23" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2.75 -output = 16.5 -cache_read = 0.275 -cache_write = 3.4375 diff --git a/providers/edenai/models/azure/gpt-5.toml b/providers/edenai/models/azure/gpt-5.toml deleted file mode 100644 index bdc315b6bd..0000000000 --- a/providers/edenai/models/azure/gpt-5.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5@eu.toml b/providers/edenai/models/azure/gpt-5@eu.toml deleted file mode 100644 index 4a8954daee..0000000000 --- a/providers/edenai/models/azure/gpt-5@eu.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.375 -output = 11 -cache_read = 0.1375 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/gpt-5@us.toml b/providers/edenai/models/azure/gpt-5@us.toml deleted file mode 100644 index 4a8954daee..0000000000 --- a/providers/edenai/models/azure/gpt-5@us.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "openai/gpt-5" -base_model_omit = ["limit.input"] -release_date = "2026-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.375 -output = 11 -cache_read = 0.1375 - -[limit] -context = 272_000 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/azure/o3.toml b/providers/edenai/models/azure/o3.toml deleted file mode 100644 index 9ae0782ebd..0000000000 --- a/providers/edenai/models/azure/o3.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/o3" -release_date = "2026-07-24" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2 -output = 8 -cache_read = 0.5 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/azure/o3@eu.toml b/providers/edenai/models/azure/o3@eu.toml deleted file mode 100644 index 598dc7de75..0000000000 --- a/providers/edenai/models/azure/o3@eu.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/o3" -release_date = "2026-07-24" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2.2 -output = 8.8 -cache_read = 0.55 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/azure/o3@us.toml b/providers/edenai/models/azure/o3@us.toml deleted file mode 100644 index 598dc7de75..0000000000 --- a/providers/edenai/models/azure/o3@us.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/o3" -release_date = "2026-07-24" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2.2 -output = 8.8 -cache_read = 0.55 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/bytedance/seed-1-6-250915.toml b/providers/edenai/models/bytedance/seed-1-6-250915.toml deleted file mode 100644 index 2bd9a671fc..0000000000 --- a/providers/edenai/models/bytedance/seed-1-6-250915.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "seed-1-6-250915" -description = "Seed 1.6 is a general-purpose model released by the ByteDance Seed team. It incorporates multimodal capabilities and adaptive deep thinking with a 256K context window." -release_date = "2025-12-23" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.25 -output = 2 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml b/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml deleted file mode 100644 index f577c7acdb..0000000000 --- a/providers/edenai/models/bytedance/seed-1-6-flash-250715.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "seed-1-6-flash-250715" -description = "Seed 1.6 Flash is an ultra-fast multimodal deep thinking model by ByteDance Seed, supporting both text and visual understanding. It features a 256k context window and can generate outputs of..." -release_date = "2025-12-23" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.075 -output = 0.3 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml b/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml deleted file mode 100644 index 2e7d7841d0..0000000000 --- a/providers/edenai/models/bytedance/seed-2-0-lite-260228.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "seed-2-0-lite-260228" -description = "Multimodal reasoning model for visual analysis, planning, and tool use" -release_date = "2026-04-02" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.25 -output = 2 -cache_read = 0.05 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml b/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml deleted file mode 100644 index 5c46dd802e..0000000000 --- a/providers/edenai/models/bytedance/seed-2-0-lite-260428.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "seed-2-0-lite-260428" -description = "Seed-2.0-Lite is a versatile, cost‑efficient enterprise workhorse that delivers strong multimodal and agent capabilities while offering noticeably lower latency, making it a practical default choice for most production workloads across..." -release_date = "2026-03-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.25 -output = 2 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "video", "audio"] -output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml b/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml deleted file mode 100644 index 79899d86cf..0000000000 --- a/providers/edenai/models/bytedance/seed-2-0-mini-260215.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "seed-2-0-mini-260215" -description = "Multimodal reasoning model for visual analysis, planning, and tool use" -release_date = "2026-04-02" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.4 -cache_read = 0.02 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml b/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml deleted file mode 100644 index c7fd218005..0000000000 --- a/providers/edenai/models/bytedance/seed-2-0-mini-260428.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "seed-2-0-mini-260428" -description = "Seed-2.0-mini targets latency-sensitive, high-concurrency, and cost-sensitive scenarios, emphasizing fast response and flexible inference deployment. It delivers performance comparable to ByteDance-Seed-1.6, supports 256k context, four reasoning effort modes (minimal/low/medium/high), multimodal understanding,..." -release_date = "2026-02-26" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.4 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "video", "audio"] -output = ["text"] diff --git a/providers/edenai/models/cerebras/gpt-oss-120b.toml b/providers/edenai/models/cerebras/gpt-oss-120b.toml deleted file mode 100644 index ddc438a3d3..0000000000 --- a/providers/edenai/models/cerebras/gpt-oss-120b.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-oss-120b" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.35 -output = 0.75 -cache_read = 0.35 diff --git a/providers/edenai/models/cerebras/zai-glm-4.7.toml b/providers/edenai/models/cerebras/zai-glm-4.7.toml deleted file mode 100644 index 7b11b4c020..0000000000 --- a/providers/edenai/models/cerebras/zai-glm-4.7.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "zai-glm-4.7" -description = "Flagship GLM model for hybrid reasoning, coding, and agentic engineering" -release_date = "2026-06-05" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 2.25 -output = 2.75 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/aisingapore/gemma-sea-lion-v4-27b-it.toml b/providers/edenai/models/cloudflare/@cf/aisingapore/gemma-sea-lion-v4-27b-it.toml deleted file mode 100644 index 080f45db2d..0000000000 --- a/providers/edenai/models/cloudflare/@cf/aisingapore/gemma-sea-lion-v4-27b-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/aisingapore/gemma-sea-lion-v4-27b-it" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.351 -output = 0.555 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b.toml b/providers/edenai/models/cloudflare/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b.toml deleted file mode 100644 index 4baa67fef7..0000000000 --- a/providers/edenai/models/cloudflare/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "@cf/deepseek-ai/deepseek-r1-distill-qwen-32b" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.497 -output = 4.881 - -[limit] -context = 80_000 -output = 80_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/google/gemma-2b-it-lora.toml b/providers/edenai/models/cloudflare/@cf/google/gemma-2b-it-lora.toml deleted file mode 100644 index 2d22e0160f..0000000000 --- a/providers/edenai/models/cloudflare/@cf/google/gemma-2b-it-lora.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/google/gemma-2b-it-lora" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-06-24" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0 -output = 0 - -[limit] -context = 8_192 -output = 8_192 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/google/gemma-4-26b-a4b-it.toml b/providers/edenai/models/cloudflare/@cf/google/gemma-4-26b-a4b-it.toml deleted file mode 100644 index b7219d5e9c..0000000000 --- a/providers/edenai/models/cloudflare/@cf/google/gemma-4-26b-a4b-it.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "@cf/google/gemma-4-26b-a4b-it" -description = "Gemma 4 26B A4B IT is an instruction-tuned Mixture-of-Experts (MoE) model from Google DeepMind. Despite 25.2B total parameters, only 3.8B activate per token during inference — delivering near-31B quality at..." -release_date = "2026-04-03" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["image", "text", "video"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/google/gemma-7b-it-lora.toml b/providers/edenai/models/cloudflare/@cf/google/gemma-7b-it-lora.toml deleted file mode 100644 index 58996a1273..0000000000 --- a/providers/edenai/models/cloudflare/@cf/google/gemma-7b-it-lora.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/google/gemma-7b-it-lora" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-06-24" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0 -output = 0 - -[limit] -context = 3_500 -output = 3_500 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/ibm-granite/granite-4.0-h-micro.toml b/providers/edenai/models/cloudflare/@cf/ibm-granite/granite-4.0-h-micro.toml deleted file mode 100644 index 51aebeb491..0000000000 --- a/providers/edenai/models/cloudflare/@cf/ibm-granite/granite-4.0-h-micro.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/ibm-granite/granite-4.0-h-micro" -description = "Granite-4.0-H-Micro is a 3B parameter from the Granite 4 family of models. These models are the latest in a series of models released by IBM. They are fine-tuned for long..." -release_date = "2025-10-20" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.017 -output = 0.112 - -[limit] -context = 131_000 -output = 131_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta-llama/llama-2-7b-chat-hf-lora.toml b/providers/edenai/models/cloudflare/@cf/meta-llama/llama-2-7b-chat-hf-lora.toml deleted file mode 100644 index 1b6747d43b..0000000000 --- a/providers/edenai/models/cloudflare/@cf/meta-llama/llama-2-7b-chat-hf-lora.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/meta-llama/llama-2-7b-chat-hf-lora" -description = "Open Llama instruction model for multilingual chat, reasoning, and coding" -release_date = "2026-06-24" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0 -output = 0 - -[limit] -context = 8_192 -output = 8_192 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-3.1-8b-instruct-fp8.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-3.1-8b-instruct-fp8.toml deleted file mode 100644 index 0188eb7b3d..0000000000 --- a/providers/edenai/models/cloudflare/@cf/meta/llama-3.1-8b-instruct-fp8.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/meta/llama-3.1-8b-instruct-fp8" -description = "Meta's latest class of model (Llama 3.1) launched with a variety of sizes & flavors. This 8B instruct-tuned version is fast and efficient. It has demonstrated strong performance compared to..." -release_date = "2024-07-23" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = true -open_weights = false - -[cost] -input = 0.152 -output = 0.287 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-1b-instruct.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-1b-instruct.toml deleted file mode 100644 index 9a84661edf..0000000000 --- a/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-1b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/meta/llama-3.2-1b-instruct" -description = "Open Llama instruction model for multilingual chat, reasoning, and coding" -release_date = "2024-09-25" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.027 -output = 0.201 - -[limit] -context = 60_000 -output = 60_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-3b-instruct.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-3b-instruct.toml deleted file mode 100644 index ed105a35f4..0000000000 --- a/providers/edenai/models/cloudflare/@cf/meta/llama-3.2-3b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/meta/llama-3.2-3b-instruct" -description = "Open Llama instruction model for multilingual chat, reasoning, and coding" -release_date = "2024-09-25" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.0509 -output = 0.335 - -[limit] -context = 80_000 -output = 80_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-3.3-70b-instruct-fp8-fast.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-3.3-70b-instruct-fp8-fast.toml deleted file mode 100644 index 8fd9782fee..0000000000 --- a/providers/edenai/models/cloudflare/@cf/meta/llama-3.3-70b-instruct-fp8-fast.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/meta/llama-3.3-70b-instruct-fp8-fast" -description = "Compact Llama instruction model for fast chat and local deployment" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.293 -output = 2.253 - -[limit] -context = 24_000 -output = 24_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-4-scout-17b-16e-instruct.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-4-scout-17b-16e-instruct.toml deleted file mode 100644 index 27e1a74c2b..0000000000 --- a/providers/edenai/models/cloudflare/@cf/meta/llama-4-scout-17b-16e-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/meta/llama-4-scout-17b-16e-instruct" -description = "Open multimodal Llama model for long-context analysis and efficient agents" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.27 -output = 0.85 - -[limit] -context = 131_000 -output = 131_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/meta/llama-guard-3-8b.toml b/providers/edenai/models/cloudflare/@cf/meta/llama-guard-3-8b.toml deleted file mode 100644 index ab8430daab..0000000000 --- a/providers/edenai/models/cloudflare/@cf/meta/llama-guard-3-8b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/meta/llama-guard-3-8b" -description = "Safety model for policy screening, moderation, and risk-aware routing workflows" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.484 -output = 0.03 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/mistral/mistral-7b-instruct-v0.2-lora.toml b/providers/edenai/models/cloudflare/@cf/mistral/mistral-7b-instruct-v0.2-lora.toml deleted file mode 100644 index 4c04378ae1..0000000000 --- a/providers/edenai/models/cloudflare/@cf/mistral/mistral-7b-instruct-v0.2-lora.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/mistral/mistral-7b-instruct-v0.2-lora" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-06-24" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0 -output = 0 - -[limit] -context = 15_000 -output = 15_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/mistralai/mistral-small-3.1-24b-instruct.toml b/providers/edenai/models/cloudflare/@cf/mistralai/mistral-small-3.1-24b-instruct.toml deleted file mode 100644 index e137ee661f..0000000000 --- a/providers/edenai/models/cloudflare/@cf/mistralai/mistral-small-3.1-24b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/mistralai/mistral-small-3.1-24b-instruct" -description = "Mistral Small 3.1 24B Instruct is an upgraded variant of Mistral Small 3 (2501), featuring 24 billion parameters with advanced multimodal capabilities. It provides state-of-the-art performance in text-based reasoning and..." -release_date = "2025-03-17" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.351 -output = 0.555 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.6.toml b/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.6.toml deleted file mode 100644 index 2df46fbc9b..0000000000 --- a/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.6.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "@cf/moonshotai/kimi-k2.6" -description = "Kimi K2.6 is Moonshot AI's next-generation multimodal model, designed for long-horizon coding, coding-driven UI/UX generation, and multi-agent orchestration. It handles complex end-to-end coding tasks across Python, Rust, and Go, and..." -release_date = "2026-04-20" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.95 -output = 4 -cache_read = 0.16 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.7-code.toml b/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.7-code.toml deleted file mode 100644 index 398b6ebf44..0000000000 --- a/providers/edenai/models/cloudflare/@cf/moonshotai/kimi-k2.7-code.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "@cf/moonshotai/kimi-k2.7-code" -description = "MoonshotAI: Kimi K2.7 Code is a coding-focused model in Moonshot AI's Kimi K2 family, built to complete end-to-end programming tasks reliably over long contexts. It uses a native multimodal mixture-of-experts..." -release_date = "2026-06-12" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.95 -output = 4 -cache_read = 0.19 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/nvidia/nemotron-3-120b-a12b.toml b/providers/edenai/models/cloudflare/@cf/nvidia/nemotron-3-120b-a12b.toml deleted file mode 100644 index 04005552ec..0000000000 --- a/providers/edenai/models/cloudflare/@cf/nvidia/nemotron-3-120b-a12b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "@cf/nvidia/nemotron-3-120b-a12b" -description = "Nemotron model for efficient reasoning, coding, and specialized AI agents" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 1.5 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-120b.toml b/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-120b.toml deleted file mode 100644 index 917b7c521a..0000000000 --- a/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-120b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "@cf/openai/gpt-oss-120b" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.35 -output = 0.75 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-20b.toml b/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-20b.toml deleted file mode 100644 index 961ee39383..0000000000 --- a/providers/edenai/models/cloudflare/@cf/openai/gpt-oss-20b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "@cf/openai/gpt-oss-20b" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 0.3 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/qwen/qwen2.5-coder-32b-instruct.toml b/providers/edenai/models/cloudflare/@cf/qwen/qwen2.5-coder-32b-instruct.toml deleted file mode 100644 index caf3483964..0000000000 --- a/providers/edenai/models/cloudflare/@cf/qwen/qwen2.5-coder-32b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "@cf/qwen/qwen2.5-coder-32b-instruct" -description = "Qwen coding model for software agents, repository edits, and code reasoning" -release_date = "2024-11-11" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.66 -output = 1 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/qwen/qwen3-30b-a3b-fp8.toml b/providers/edenai/models/cloudflare/@cf/qwen/qwen3-30b-a3b-fp8.toml deleted file mode 100644 index acf87e0eb3..0000000000 --- a/providers/edenai/models/cloudflare/@cf/qwen/qwen3-30b-a3b-fp8.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "@cf/qwen/qwen3-30b-a3b-fp8" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.0509 -output = 0.335 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/qwen/qwq-32b.toml b/providers/edenai/models/cloudflare/@cf/qwen/qwq-32b.toml deleted file mode 100644 index a5e1ee56f1..0000000000 --- a/providers/edenai/models/cloudflare/@cf/qwen/qwq-32b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "@cf/qwen/qwq-32b" -description = "Qwen reasoning model for deliberate problem solving, math, and coding" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.66 -output = 1 - -[limit] -context = 24_000 -output = 24_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/zai-org/glm-4.7-flash.toml b/providers/edenai/models/cloudflare/@cf/zai-org/glm-4.7-flash.toml deleted file mode 100644 index f0eb267f34..0000000000 --- a/providers/edenai/models/cloudflare/@cf/zai-org/glm-4.7-flash.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "@cf/zai-org/glm-4.7-flash" -description = "As a 30B-class SOTA model, GLM-4.7-Flash offers a new option that balances performance and efficiency. It is further optimized for agentic coding use cases, strengthening coding capabilities, long-horizon task planning,..." -release_date = "2026-01-19" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.0605 -output = 0.4 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cloudflare/@cf/zai-org/glm-5.2.toml b/providers/edenai/models/cloudflare/@cf/zai-org/glm-5.2.toml deleted file mode 100644 index 6faf669be4..0000000000 --- a/providers/edenai/models/cloudflare/@cf/zai-org/glm-5.2.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "@cf/zai-org/glm-5.2" -description = "GLM 5.2 is a large-scale reasoning model from Z.ai. It supports text input and output with a 1M-token context window, and is suited for long-horizon agent workflows, project-level software engineering,..." -release_date = "2026-06-16" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.4 -output = 4.4 -cache_read = 0.26 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/cohere/command-a-03-2025.toml b/providers/edenai/models/cohere/command-a-03-2025.toml deleted file mode 100644 index 93e4daf469..0000000000 --- a/providers/edenai/models/cohere/command-a-03-2025.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "cohere/command-a-03-2025" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 2.5 -output = 10 - -[limit] -context = 288_000 diff --git a/providers/edenai/models/cohere/command-r-08-2024.toml b/providers/edenai/models/cohere/command-r-08-2024.toml deleted file mode 100644 index 1621b2a5f2..0000000000 --- a/providers/edenai/models/cohere/command-r-08-2024.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "cohere/command-r-08-2024" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 0.15 -output = 0.6 diff --git a/providers/edenai/models/cohere/command-r-plus-08-2024.toml b/providers/edenai/models/cohere/command-r-plus-08-2024.toml deleted file mode 100644 index bb0ea0fd56..0000000000 --- a/providers/edenai/models/cohere/command-r-plus-08-2024.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "cohere/command-r-plus-08-2024" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 2.5 -output = 10 diff --git a/providers/edenai/models/cohere/command-r7b-12-2024.toml b/providers/edenai/models/cohere/command-r7b-12-2024.toml deleted file mode 100644 index 49aa29bc70..0000000000 --- a/providers/edenai/models/cohere/command-r7b-12-2024.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "cohere/command-r7b-12-2024" -release_date = "2024-12-14" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 0.0375 -output = 0.15 - -[limit] -context = 132_000 diff --git a/providers/edenai/models/databricks/databricks-claude-haiku-4-5.toml b/providers/edenai/models/databricks/databricks-claude-haiku-4-5.toml deleted file mode 100644 index beab678786..0000000000 --- a/providers/edenai/models/databricks/databricks-claude-haiku-4-5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-claude-haiku-4-5" -description = "Claude Haiku 4.5 is Anthropic's fastest and most cost efficient hybrid reasoning model, optimized for real-time use and high-volume workloads. It features two modes: quick responses for time-sensitive interactions and extended reasoning for complex problem-solving. Haiku 4.5 excels in environments like coding assistance, automated agent workflows, and enterprise-scale analysis. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 1.00002 -output = 5.00003 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-1.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-1.toml deleted file mode 100644 index 55ea3042d0..0000000000 --- a/providers/edenai/models/databricks/databricks-claude-opus-4-1.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-claude-opus-4-1" -description = "Claude Opus 4.1 is a state-of-the-art, hybrid reasoning model built and trained by Anthropic. This general purpose large language model is designed for both complex reasoning and real-world applications at enterprise scale. It supports text and image input, with a 200K token context window and 32K output token capabilities. This model excels at tasks like code generation, research and content creation, and multi-step agents workflows without constant human intervention. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 15.00002 -output = 74.9994 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-5.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-5.toml deleted file mode 100644 index 5a1f338d2c..0000000000 --- a/providers/edenai/models/databricks/databricks-claude-opus-4-5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-claude-opus-4-5" -description = "Claude Opus 4.5 is a large language model built and trained by Anthropic for production software engineering and sophisticated multi-tool agents. It supports text and image input with a 200K token context window. The model is designed for professional tasks requiring complex reasoning across multiple systems, including code generation, document creation, spreadsheets, presentations, and multi-step agent workflows. It features advanced tool use capabilities including tool search and programmatic tool calling for agents working with large tool libraries. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 5.00003 -output = 25.00001 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-6.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-6.toml deleted file mode 100644 index 6902f8a708..0000000000 --- a/providers/edenai/models/databricks/databricks-claude-opus-4-6.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-claude-opus-4-6" -description = "Claude Opus 4.6 is Anthropic's most capable hybrid reasoning model with adaptive thinking capabilities. This model introduces a new max effort level for the most demanding tasks, with high effort set as the default for optimal performance. Claude Opus 4.6 excels at complex reasoning, deep analysis, code generation, research, and sophisticated multi-step workflows. It features a 1 million token context window, making it ideal for enterprise applications that require both extensive analysis and comprehensive outputs. This endpoint is hosted by Databricks." -release_date = "2026-06-08" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.00003 -output = 25.00001 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-7.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-7.toml deleted file mode 100644 index 57cee2a14b..0000000000 --- a/providers/edenai/models/databricks/databricks-claude-opus-4-7.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-claude-opus-4-7" -description = "Claude Opus 4.7 is Anthropic's most capable hybrid reasoning model, advancing the Opus series with improved accuracy, efficiency, and enhanced vision capabilities. This model delivers stronger performance on complex extraction and agentic reasoning tasks while using fewer output tokens than its predecessor. Claude Opus 4.7 features a 1 million token context window and increased image resolution support, making it ideal for enterprise applications that require deep analysis, document understanding, and sophisticated multi-step workflows. This model is hosted by Databricks." -release_date = "2026-06-08" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.00003 -output = 25.00001 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-opus-4-8.toml b/providers/edenai/models/databricks/databricks-claude-opus-4-8.toml deleted file mode 100644 index 1be13c4a9e..0000000000 --- a/providers/edenai/models/databricks/databricks-claude-opus-4-8.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-claude-opus-4-8" -description = "Claude Opus 4.8 is Anthropic's next-generation Opus model, hosted by Databricks." -release_date = "2026-06-08" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.00003 -output = 25.00001 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-sonnet-4-5.toml b/providers/edenai/models/databricks/databricks-claude-sonnet-4-5.toml deleted file mode 100644 index daa6997222..0000000000 --- a/providers/edenai/models/databricks/databricks-claude-sonnet-4-5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-claude-sonnet-4-5" -description = "Claude Sonnet 4.5 is Anthropic's most advanced hybrid reasoning model. It offers two modes: near-instant responses and extended thinking for deeper reasoning based on the complexity of the task. Claude Sonnet 4.5 specializes in application that require a balance of practical throughput and advanced thinking such as customer-facing agents, production coding workflows, and content generation at scale. This endpoint is hosted by Databricks" -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 5.99998 -output = 15.00002 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-claude-sonnet-4-6.toml b/providers/edenai/models/databricks/databricks-claude-sonnet-4-6.toml deleted file mode 100644 index 4efb5e9593..0000000000 --- a/providers/edenai/models/databricks/databricks-claude-sonnet-4-6.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-claude-sonnet-4-6" -description = "Claude Sonnet 4.6 is Anthropic's most capable Sonnet-class model yet, with frontier performance across coding, agents, and professional work. It excels at iterative development, complex codebase navigation, end-to-end project management with memory, polished document creation, and confident computer use for web QA and workflow automation. This endpoint is hosted by Databricks." -release_date = "2026-06-08" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2.99999 -output = 15.00002 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gemini-2-5-flash.toml b/providers/edenai/models/databricks/databricks-gemini-2-5-flash.toml deleted file mode 100644 index cd2722b56e..0000000000 --- a/providers/edenai/models/databricks/databricks-gemini-2-5-flash.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-gemini-2-5-flash" -description = "Gemini 2.5 Flash is Google's best model in terms of price and performance, and offers well-rounded capabilities. Gemini 2.5 Flash is Google's first Flash model that features thinking capabilities, which lets you see the thinking process that the model goes through when generating its response. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.37499 -output = 3.12501 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text", "image", "video", "audio", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gemini-2-5-pro.toml b/providers/edenai/models/databricks/databricks-gemini-2-5-pro.toml deleted file mode 100644 index 158693156c..0000000000 --- a/providers/edenai/models/databricks/databricks-gemini-2-5-pro.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-gemini-2-5-pro" -description = "Gemini 2.5 Pro is Google's most advanced reasoning Gemini model, capable of solving complex problems. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 1.56247 -output = 12.49997 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text", "image", "video", "audio", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gemma-3-12b.toml b/providers/edenai/models/databricks/databricks-gemma-3-12b.toml deleted file mode 100644 index 1da2896268..0000000000 --- a/providers/edenai/models/databricks/databricks-gemma-3-12b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-gemma-3-12b" -description = "Gemma 3 12B is a state-of-the-art multimodal language model built and trained by Google. The model supports a context length of 128K tokens and can analyze images and text. With support for over 140 languages and optimized for dialogue use cases, Gemma 3 12B is aligned with human preferences for helpfulness and safety. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.15001 -output = 0.50001 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-1.toml b/providers/edenai/models/databricks/databricks-gpt-5-1.toml deleted file mode 100644 index 5844d58e81..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-1.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-gpt-5-1" -description = "GPT-5.1 is a general purpose large language model with reasoning capabilities developed by OpenAI. This model features both Instant and Thinking modes for fast conversation or deep reasoning, automatically adjusting for simple or complex tasks. The model excels at content creation, tutoring, technical support, and coding, with less reliance on strict prompt engineering than prior versions. It supports multimodal inputs and features a 128K token context window. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 2.49998 -output = 9.99999 - -[limit] -context = 272_000 -output = 272_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-4-mini.toml b/providers/edenai/models/databricks/databricks-gpt-5-4-mini.toml deleted file mode 100644 index 391ea9e37e..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-4-mini.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-gpt-5-4-mini" -description = "GPT-5.4 Mini is a cost-optimized large language model developed by OpenAI. This endpoint is hosted by Databricks." -release_date = "2026-06-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.49996 -output = 9.00004 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-4-nano.toml b/providers/edenai/models/databricks/databricks-gpt-5-4-nano.toml deleted file mode 100644 index 4651538f0b..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-4-nano.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-gpt-5-4-nano" -description = "GPT-5.4 Nano is a lightweight, cost-optimized large language model developed by OpenAI. This endpoint is hosted by Databricks." -release_date = "2026-06-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.19999 -output = 1.24999 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-4.toml b/providers/edenai/models/databricks/databricks-gpt-5-4.toml deleted file mode 100644 index 6c8630f622..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-4.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-gpt-5-4" -description = "GPT-5.4 is a general purpose large language model with reasoning capabilities developed by OpenAI. It delivers improved performance on complex tasks with enhanced accuracy and more deliberate scaffolded reasoning. This model supports multimodal inputs and features a 400K total token context window with 128K maximum output tokens. This endpoint is hosted by Databricks." -release_date = "2026-06-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2.49998 -output = 22.50003 - -[limit] -context = 1_050_000 -output = 1_050_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-5.toml b/providers/edenai/models/databricks/databricks-gpt-5-5.toml deleted file mode 100644 index d8e5b65938..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-gpt-5-5" -description = "GPT-5.5 is OpenAI's strongest frontier model for agentic work in enterprise, complex document reasoning, and long-horizon coding agents. GPT-5.5 also now powers Codex, OpenAI's coding agent. This model supports multimodal inputs and features a 400K total token context window with 128K maximum output tokens. This endpoint is hosted by Databricks." -release_date = "2026-06-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 12.50004 -output = 44.99999 - -[limit] -context = 1_050_000 -output = 1_050_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-6-luna.toml b/providers/edenai/models/databricks/databricks-gpt-5-6-luna.toml deleted file mode 100644 index 44e8e3ea7c..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-6-luna.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-gpt-5-6-luna" -description = "GPT-5.6 Luna is the fast, cost-efficient model in OpenAI's GPT-5.6 family, bringing strong reasoning and agentic capability at the lowest cost in the lineup. This model supports multimodal (text and image) inputs and a long context window. This endpoint is hosted by Databricks." -release_date = "2026-07-09" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.00002 -output = 8.99997 - -[limit] -context = 1_050_000 -output = 1_050_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-6-sol.toml b/providers/edenai/models/databricks/databricks-gpt-5-6-sol.toml deleted file mode 100644 index 0cabd7ca44..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-6-sol.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-gpt-5-6-sol" -description = "GPT-5.6 Sol is OpenAI's flagship model in the GPT-5.6 family, delivering state-of-the-art performance on agentic coding, long-horizon reasoning, and complex tool use, with support for a new maximum reasoning effort. This model supports multimodal (text and image) inputs and a long context window. This endpoint is hosted by Databricks." -release_date = "2026-07-09" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 9.99999 -output = 60.00001 - -[limit] -context = 1_050_000 -output = 1_050_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-6-terra.toml b/providers/edenai/models/databricks/databricks-gpt-5-6-terra.toml deleted file mode 100644 index 0424ee8ad6..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-6-terra.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-gpt-5-6-terra" -description = "GPT-5.6 Terra is the balanced model in OpenAI's GPT-5.6 family for everyday agentic and reasoning workloads, offering performance competitive with GPT-5.5 at a lower cost. This model supports multimodal (text and image) inputs and a long context window. This endpoint is hosted by Databricks." -release_date = "2026-07-09" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5.00003 -output = 22.50003 - -[limit] -context = 1_050_000 -output = 1_050_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-mini.toml b/providers/edenai/models/databricks/databricks-gpt-5-mini.toml deleted file mode 100644 index b1a21c1616..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-mini.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-gpt-5-mini" -description = "GPT-5 mini is a state-of-the-art, general purpose large language model and reasoning model built and trained by OpenAI. It supports multimodal inputs and features a 128K token context window. The model is cost-optimized for reasoning and chat workloads and excels at well-defined tasks that require reliable reasoning, precise language, and rapid output for text and images. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.44989 -output = 1.99997 - -[limit] -context = 272_000 -output = 272_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5-nano.toml b/providers/edenai/models/databricks/databricks-gpt-5-nano.toml deleted file mode 100644 index fb5623a2d9..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5-nano.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-gpt-5-nano" -description = "GPT-5 nano is a state-of-the-art, general purpose large language model and reasoning model built and trained by OpenAI. It supports multimodal inputs and features a 128K token context window. The model excels at high-throughput tasks like simple instruction-following or classification for routine business processes or mobile applications. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.04998 -output = 0.39998 - -[limit] -context = 272_000 -output = 272_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-5.toml b/providers/edenai/models/databricks/databricks-gpt-5.toml deleted file mode 100644 index c73952a1d7..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-5.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-gpt-5" -description = "GPT-5 is a state-of-the-art, general purpose large language model and reasoning model built and trained by OpenAI. It supports multimodal inputs and features a 128K token context window. The model is built for coding, chat, reasoning and agent-driven tasks. This endpoint is hosted by Databricks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 1.24999 -output = 19.99998 - -[limit] -context = 272_000 -output = 272_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-oss-120b.toml b/providers/edenai/models/databricks/databricks-gpt-oss-120b.toml deleted file mode 100644 index 1847a2c2c3..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-oss-120b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-gpt-oss-120b" -description = "GPT OSS 120B is a state-of-the-art, reasoning model with chain-of-thought and adjustable reasoning effort levels built and trained by OpenAI. It is OpenAI's flagship open-weight model that features a 128K token context window. The model is built for high-quality reasoning tasks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15001 -output = 0.59997 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-gpt-oss-20b.toml b/providers/edenai/models/databricks/databricks-gpt-oss-20b.toml deleted file mode 100644 index 98ed08981b..0000000000 --- a/providers/edenai/models/databricks/databricks-gpt-oss-20b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "databricks-gpt-oss-20b" -description = "GPT OSS 20B is a state-of-the-art, lightweight reasoning model built and trained by OpenAI. This model also has a 128K token context window and excels at real-time copilots and batch inference tasks." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.07 -output = 0.30002 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-llama-4-maverick.toml b/providers/edenai/models/databricks/databricks-llama-4-maverick.toml deleted file mode 100644 index 08e13179c2..0000000000 --- a/providers/edenai/models/databricks/databricks-llama-4-maverick.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-llama-4-maverick" -description = "Llama 4 Maverick is a state-of-the-art mixture of experts (MoE) language model trained and released by Meta. The model has 17B active parameters, 128 experts, and 400 billion total parameters. The model supports a context length of 128K tokens. The model is optimized for multilingual dialogue use cases, supporting 12 languages, and is aligned with human preferences for helpfulness and safety. It is not intended for use in languages other than English. Llama 4 is licensed under the Meta Llama 4 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved. Customers are responsible for ensuring compliance with applicable model licenses." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.50001 -output = 1.50003 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-meta-llama-3-1-8b-instruct.toml b/providers/edenai/models/databricks/databricks-meta-llama-3-1-8b-instruct.toml deleted file mode 100644 index 0a39513623..0000000000 --- a/providers/edenai/models/databricks/databricks-meta-llama-3-1-8b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-meta-llama-3-1-8b-instruct" -description = "Llama 3.1 is a state-of-the-art 8B parameter dense language model trained and released by Meta. The model supports a context length of 128K tokens. The model is optimized for multilingual dialogue use cases and aligned with human preferences for helpfulness and safety. It is not intended for use in languages other than English. Meta Llama 3.1 is licensed under the Meta Llama 3.1 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved. Customers are responsible for ensuring compliance with applicable model licenses." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.15001 -output = 0.45003 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/databricks/databricks-meta-llama-3-3-70b-instruct.toml b/providers/edenai/models/databricks/databricks-meta-llama-3-3-70b-instruct.toml deleted file mode 100644 index 818a852df5..0000000000 --- a/providers/edenai/models/databricks/databricks-meta-llama-3-3-70b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "databricks-meta-llama-3-3-70b-instruct" -description = "Llama 3.3 is a state-of-the-art 70B parameter dense language model trained and released by Meta. The model supports a context length of 128K tokens. The model is optimized for multilingual dialogue use cases and aligned with human preferences for helpfulness and safety. It is not intended for use in languages other than English. Meta Llama 3.3 is licensed under the Meta Llama 3.3 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved. Customers are responsible for ensuring compliance with applicable model licenses." -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.50001 -output = 1.50003 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/ByteDance/Seed-1.8.toml b/providers/edenai/models/deepinfra/ByteDance/Seed-1.8.toml deleted file mode 100644 index d281415b42..0000000000 --- a/providers/edenai/models/deepinfra/ByteDance/Seed-1.8.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "ByteDance/Seed-1.8" -description = "Multimodal reasoning model for visual analysis, planning, and tool use" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.25 -output = 2 -cache_read = 0.05 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-code.toml b/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-code.toml deleted file mode 100644 index 9b43e32aab..0000000000 --- a/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-code.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "ByteDance/Seed-2.0-code" -description = "Coding model for repository understanding, refactors, and agentic engineering tasks" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 3 -cache_read = 0.1 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-mini.toml b/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-mini.toml deleted file mode 100644 index f6057467c1..0000000000 --- a/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-mini.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "ByteDance/Seed-2.0-mini" -description = "Multimodal reasoning model for visual analysis, planning, and tool use" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.4 -cache_read = 0.02 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-pro.toml b/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-pro.toml deleted file mode 100644 index ef985a9129..0000000000 --- a/providers/edenai/models/deepinfra/ByteDance/Seed-2.0-pro.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "ByteDance/Seed-2.0-pro" -description = "Multimodal reasoning model for visual analysis, planning, and tool use" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 3 -cache_read = 0.1 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Gryphe/MythoMax-L2-13b.toml b/providers/edenai/models/deepinfra/Gryphe/MythoMax-L2-13b.toml deleted file mode 100644 index fcfc6c5713..0000000000 --- a/providers/edenai/models/deepinfra/Gryphe/MythoMax-L2-13b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Gryphe/MythoMax-L2-13b" -description = "One of the highest performing and most popular fine-tunes of Llama 2 13B, with rich descriptions and roleplay. #merge" -release_date = "2023-07-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.4 -output = 0.4 - -[limit] -context = 4_096 -output = 4_096 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.5.toml b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.5.toml deleted file mode 100644 index 88eca3127c..0000000000 --- a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.5.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "MiniMaxAI/MiniMax-M2.5" -description = "MiniMax-M2.5 is a SOTA large language model designed for real-world productivity. Trained in a diverse range of complex real-world digital working environments, M2.5 builds upon the coding expertise of M2.1..." -release_date = "2026-02-12" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 1.15 -cache_read = 0.03 - -[limit] -context = 196_608 -output = 196_608 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7-Turbo.toml b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7-Turbo.toml deleted file mode 100644 index 718ab465c3..0000000000 --- a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7-Turbo.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "MiniMaxAI/MiniMax-M2.7-Turbo" -description = "Efficient MiniMax model for quick assistance, coding, and routine automation" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.38 -output = 1.7 -cache_read = 0.07 - -[limit] -context = 196_608 -output = 196_608 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7.toml b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7.toml deleted file mode 100644 index 856beb1131..0000000000 --- a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M2.7.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "MiniMaxAI/MiniMax-M2.7" -description = "MiniMax-M2.7 is a next-generation large language model designed for autonomous, real-world productivity and continuous improvement. Built to actively participate in its own evolution, M2.7 integrates advanced agentic capabilities through multi-agent..." -release_date = "2026-03-18" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.25 -output = 1 -cache_read = 0.05 - -[limit] -context = 196_608 -output = 196_608 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M3.toml b/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M3.toml deleted file mode 100644 index 7ad48f4a82..0000000000 --- a/providers/edenai/models/deepinfra/MiniMaxAI/MiniMax-M3.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "MiniMaxAI/MiniMax-M3" -description = "MiniMax-M3 is a multimodal foundation model from MiniMax. It supports text, image, and video inputs with text output, a 1M-token context window, and is suited for long-horizon agentic work, coding,..." -release_date = "2026-05-31" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 -cache_read = 0.06 - -[limit] -context = 524_288 -output = 524_288 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-405B.toml b/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-405B.toml deleted file mode 100644 index e205d89096..0000000000 --- a/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-405B.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "NousResearch/Hermes-3-Llama-3.1-405B" -description = "Hermes 3 is a generalist language model with many improvements over Hermes 2, including advanced agentic capabilities, much better roleplaying, reasoning, multi-turn conversation, long context coherence, and improvements across the..." -release_date = "2024-08-16" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 1 -output = 1 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-70B.toml b/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-70B.toml deleted file mode 100644 index 16124c31c5..0000000000 --- a/providers/edenai/models/deepinfra/NousResearch/Hermes-3-Llama-3.1-70B.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "NousResearch/Hermes-3-Llama-3.1-70B" -description = "Hermes 3 is a generalist language model with many improvements over [Hermes 2](/models/nousresearch/nous-hermes-2-mistral-7b-dpo), including advanced agentic capabilities, much better roleplaying, reasoning, multi-turn conversation, long context coherence, and improvements across the..." -release_date = "2024-08-18" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = true -open_weights = false - -[cost] -input = 0.7 -output = 0.7 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/QwQ-32B.toml b/providers/edenai/models/deepinfra/Qwen/QwQ-32B.toml deleted file mode 100644 index 0bb4d4a1a5..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/QwQ-32B.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Qwen/QwQ-32B" -description = "Qwen reasoning model for deliberate problem solving, math, and coding" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.15 -output = 0.4 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen2.5-72B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen2.5-72B-Instruct.toml deleted file mode 100644 index 7b31340157..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen2.5-72B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Qwen/Qwen2.5-72B-Instruct" -description = "Qwen2.5 72B is the latest series of Qwen large language models. Qwen2.5 brings the following improvements upon Qwen2: - Significantly more knowledge and has greatly improved capabilities in coding and..." -release_date = "2024-09-19" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.36 -output = 0.4 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen2.5-7B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen2.5-7B-Instruct.toml deleted file mode 100644 index 36811f14c3..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen2.5-7B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Qwen/Qwen2.5-7B-Instruct" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.04 -output = 0.1 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen2.5-VL-32B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen2.5-VL-32B-Instruct.toml deleted file mode 100644 index 302b381e97..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen2.5-VL-32B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Qwen/Qwen2.5-VL-32B-Instruct" -description = "Qwen vision-language model for visual reasoning, documents, and agent tasks" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.6 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["image", "text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-14B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-14B.toml deleted file mode 100644 index 1ae31b3702..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-14B.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "Qwen/Qwen3-14B" -description = "Qwen3-14B is a dense 14.8B parameter causal language model from the Qwen3 series, designed for both complex reasoning and efficient dialogue. It supports seamless switching between a \"thinking\" mode for..." -release_date = "2025-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.12 -output = 0.24 - -[limit] -context = 40_960 -output = 40_960 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507.toml deleted file mode 100644 index b21c1b3fc2..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "Qwen/Qwen3-235B-A22B-Instruct-2507" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.09 -output = 0.55 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507.toml deleted file mode 100644 index bf829f09a3..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "Qwen/Qwen3-235B-A22B-Thinking-2507" -description = "Qwen3-235B-A22B-Thinking-2507 is a high-performance, open-weight Mixture-of-Experts (MoE) language model optimized for complex reasoning tasks. It activates 22B of its 235B parameters per forward pass and natively supports up to 262,144..." -release_date = "2025-07-25" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.23 -output = 2.3 -cache_read = 0.2 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml deleted file mode 100644 index ce3d39c23e..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-235B-A22B.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3-235b-a22b" -release_date = "2026-06-02" -last_updated = "2026-08-01" -reasoning = false -structured_output = false -open_weights = false - -[cost] -input = 0.18 -output = 0.54 - -[limit] -context = 40_960 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-30B-A3B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-30B-A3B.toml deleted file mode 100644 index 7019b12c56..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-30B-A3B.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "Qwen/Qwen3-30B-A3B" -description = "Qwen3, the latest generation in the Qwen large language model series, features both dense and mixture-of-experts (MoE) architectures to excel in reasoning, multilingual support, and advanced agent tasks. Its unique..." -release_date = "2025-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.12 -output = 0.5 - -[limit] -context = 40_960 -output = 40_960 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml deleted file mode 100644 index 9839a2b1ef..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-32B.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3-32b" -release_date = "2025-04-28" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.08 -output = 0.28 - -[limit] -context = 40_960 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo.toml deleted file mode 100644 index c11cfb15c7..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo" -description = "Qwen coding model for software agents, repository edits, and code reasoning" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.3 -output = 1 -cache_read = 0.1 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml deleted file mode 100644 index 133a9f184a..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "alibaba/qwen3-coder-480b-a35b-instruct" -release_date = "2026-01-06" -last_updated = "2026-08-01" -structured_output = false -open_weights = false - -[cost] -input = 0.4 -output = 1.6 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Max-Thinking.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Max-Thinking.toml deleted file mode 100644 index 8b0bba88df..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-Max-Thinking.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "Qwen/Qwen3-Max-Thinking" -description = "Qwen reasoning model for deliberate problem solving, math, and coding" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 1.2 -output = 6 -cache_read = 0.24 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml deleted file mode 100644 index bcedaf457c..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-Max.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "alibaba/qwen3-max" -release_date = "2026-06-22" -last_updated = "2026-08-01" -reasoning = true -tool_call = false -structured_output = false -reasoning_options = [] - -[cost] -input = 1.2 -output = 6 -cache_read = 0.24 - -[limit] -context = 256_000 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml deleted file mode 100644 index b98e0b24b8..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "alibaba/qwen3-next-80b-a3b-instruct" -release_date = "2025-09-11" -last_updated = "2026-08-01" -reasoning = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.09 -output = 1.1 - -[limit] -context = 262_144 diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-235B-A22B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-235B-A22B-Instruct.toml deleted file mode 100644 index f9390cb3d9..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-235B-A22B-Instruct.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "Qwen/Qwen3-VL-235B-A22B-Instruct" -description = "Qwen3-VL-235B-A22B Instruct is an open-weight multimodal model that unifies strong text generation with visual understanding across images and video. The Instruct model targets general vision-language use (VQA, document parsing, chart/table..." -release_date = "2025-09-23" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 0.88 -cache_read = 0.11 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-30B-A3B-Instruct.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-30B-A3B-Instruct.toml deleted file mode 100644 index f6ffac05d0..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3-VL-30B-A3B-Instruct.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "Qwen/Qwen3-VL-30B-A3B-Instruct" -description = "Qwen3-VL-30B-A3B-Instruct is a multimodal model that unifies strong text generation with visual understanding for images and videos. Its Instruct variant optimizes instruction-following for general multimodal tasks. It excels in perception..." -release_date = "2025-10-06" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml deleted file mode 100644 index 6b4e79fa5d..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-122B-A10B.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.5-122b-a10b" -release_date = "2026-02-25" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.29 -output = 2.4 - -[modalities] -input = ["image", "text", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml deleted file mode 100644 index 3be262b6d5..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-27B.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.5-27b" -release_date = "2026-02-25" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 2.6 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml deleted file mode 100644 index c9d968de4b..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-35B-A3B.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "alibaba/qwen3.5-35b-a3b" -release_date = "2026-02-25" -last_updated = "2026-08-01" -tool_call = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.14 -output = 1 -cache_read = 0.05 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml deleted file mode 100644 index 2509650367..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-397B-A17B.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3.5-397b-a17b" -release_date = "2026-02-16" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.45 -output = 3 -cache_read = 0.22 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml deleted file mode 100644 index bf80480087..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.5-9B.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3.5-9b" -release_date = "2026-03-10" -last_updated = "2026-08-01" -attachment = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.15 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml deleted file mode 100644 index 19d75bbb1f..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-27B.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.6-27b" -release_date = "2026-04-27" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.32 -output = 3.2 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml deleted file mode 100644 index 4c7d1e38a4..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.6-35B-A3B.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.6-35b-a3b" -release_date = "2026-04-27" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.95 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml b/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml deleted file mode 100644 index ee4595f20a..0000000000 --- a/providers/edenai/models/deepinfra/Qwen/Qwen3.7-Max.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "alibaba/qwen3.7-max" -release_date = "2026-06-22" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -reasoning_options = [] - -[cost] -input = 2.5 -output = 7.5 -cache_read = 0.5 - -[limit] -context = 256_000 diff --git a/providers/edenai/models/deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo.toml b/providers/edenai/models/deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo.toml deleted file mode 100644 index 3be6e7cfbc..0000000000 --- a/providers/edenai/models/deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Sao10K/L3-8B-Lunaris-v1-Turbo" -description = "Efficient model for low-latency assistance, extraction, and routine automation" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.04 -output = 0.05 - -[limit] -context = 8_192 -output = 8_192 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Sao10K/L3.1-70B-Euryale-v2.2.toml b/providers/edenai/models/deepinfra/Sao10K/L3.1-70B-Euryale-v2.2.toml deleted file mode 100644 index eed30eea49..0000000000 --- a/providers/edenai/models/deepinfra/Sao10K/L3.1-70B-Euryale-v2.2.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Sao10K/L3.1-70B-Euryale-v2.2" -description = "General-purpose chat model for instruction following, writing, and analysis" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.85 -output = 0.85 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/Sao10K/L3.3-70B-Euryale-v2.3.toml b/providers/edenai/models/deepinfra/Sao10K/L3.3-70B-Euryale-v2.3.toml deleted file mode 100644 index a3dacff8e3..0000000000 --- a/providers/edenai/models/deepinfra/Sao10K/L3.3-70B-Euryale-v2.3.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Sao10K/L3.3-70B-Euryale-v2.3" -description = "General-purpose chat model for instruction following, writing, and analysis" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.65 -output = 0.75 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml b/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml deleted file mode 100644 index e7f077fcf4..0000000000 --- a/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5-Pro.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "XiaomiMiMo/MiMo-V2.5-Pro" -description = "MiMo-V2.5-Pro is Xiaomi’s flagship model, delivering strong performance in general agentic capabilities, complex software engineering, and long-horizon tasks, with top rankings on benchmarks such as ClawEval, GDPVal, and SWE-bench Pro...." -release_date = "2026-04-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1 -output = 3 -cache_read = 0.2 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5.toml b/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5.toml deleted file mode 100644 index 664cbbeffc..0000000000 --- a/providers/edenai/models/deepinfra/XiaomiMiMo/MiMo-V2.5.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "XiaomiMiMo/MiMo-V2.5" -description = "MiMo-V2.5 is a native omnimodal model by Xiaomi. It delivers Pro-level agentic performance at roughly half the inference cost, while surpassing MiMo-V2-Omni in multimodal perception across image and video understanding..." -release_date = "2026-04-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.4 -output = 2 -cache_read = 0.08 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "audio", "video"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/allenai/olmOCR-7B-0725-FP8.toml b/providers/edenai/models/deepinfra/allenai/olmOCR-7B-0725-FP8.toml deleted file mode 100644 index 72d1347541..0000000000 --- a/providers/edenai/models/deepinfra/allenai/olmOCR-7B-0725-FP8.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "allenai/olmOCR-7B-0725-FP8" -description = "General-purpose chat model for instruction following, writing, and analysis" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.27 -output = 1.5 - -[limit] -context = 16_384 -output = 16_384 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-3-7-sonnet-latest.toml b/providers/edenai/models/deepinfra/anthropic/claude-3-7-sonnet-latest.toml deleted file mode 100644 index a4da7f22c8..0000000000 --- a/providers/edenai/models/deepinfra/anthropic/claude-3-7-sonnet-latest.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "anthropic/claude-3-7-sonnet-latest" -description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3.3 -output = 16.5 -cache_read = 0.33 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-4-opus.toml b/providers/edenai/models/deepinfra/anthropic/claude-4-opus.toml deleted file mode 100644 index 530cbf5868..0000000000 --- a/providers/edenai/models/deepinfra/anthropic/claude-4-opus.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "anthropic/claude-4-opus" -description = "Flagship Claude model for deep reasoning, coding, and long-horizon agents" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 16.5 -output = 82.5 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-4-sonnet.toml b/providers/edenai/models/deepinfra/anthropic/claude-4-sonnet.toml deleted file mode 100644 index 3a44a45ddf..0000000000 --- a/providers/edenai/models/deepinfra/anthropic/claude-4-sonnet.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "anthropic/claude-4-sonnet" -description = "Balanced Claude model for coding, analysis, agent workflows, and cost control" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3.3 -output = 16.5 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml b/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml deleted file mode 100644 index 50a46bc7ca..0000000000 --- a/providers/edenai/models/deepinfra/anthropic/claude-haiku-4-5.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "anthropic/claude-haiku-4-5" -release_date = "2026-06-22" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -reasoning_options = [] - -[cost] -input = 1 -output = 5 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml b/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml deleted file mode 100644 index 630e143532..0000000000 --- a/providers/edenai/models/deepinfra/anthropic/claude-opus-4-7.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "anthropic/claude-opus-4-7" -release_date = "2026-06-22" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -reasoning_options = [] - -[cost] -input = 5 -output = 25 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml b/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml deleted file mode 100644 index d825617a9d..0000000000 --- a/providers/edenai/models/deepinfra/anthropic/claude-opus-5.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "anthropic/claude-opus-5" -release_date = "2026-07-27" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -reasoning_options = [] - -[cost] -input = 5 -output = 25 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml b/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml deleted file mode 100644 index 65d059afa5..0000000000 --- a/providers/edenai/models/deepinfra/anthropic/claude-sonnet-4-6.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "anthropic/claude-sonnet-4-6" -release_date = "2026-06-22" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -reasoning_options = [] - -[cost] -input = 3 -output = 15 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/deepreinforce-ai/Ornith-1.0-35B.toml b/providers/edenai/models/deepinfra/deepreinforce-ai/Ornith-1.0-35B.toml deleted file mode 100644 index c145aae101..0000000000 --- a/providers/edenai/models/deepinfra/deepreinforce-ai/Ornith-1.0-35B.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "deepreinforce-ai/Ornith-1.0-35B" -description = "Large coding-reasoning model for agentic software tasks and RL search" -release_date = "2026-06-29" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.75 -cache_read = 0.05 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo.toml deleted file mode 100644 index 4d0b2542b1..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "deepseek-ai/DeepSeek-R1-0528-Turbo" -description = "DeepSeek reasoning model for multi-step analysis, math, coding, and tools" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 1 -output = 3 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528.toml deleted file mode 100644 index 82e3ebe529..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-0528.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "deepseek-ai/DeepSeek-R1-0528" -description = "May 28th update to the [original DeepSeek R1](/deepseek/deepseek-r1) Performance on par with [OpenAI o1](/openai/o1), but open-sourced and with fully open reasoning tokens. It's 671B parameters in size, with 37B active..." -release_date = "2025-05-28" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 2.15 -cache_read = 0.35 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B.toml deleted file mode 100644 index 2256e25354..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "deepseek-ai/DeepSeek-R1-Distill-Llama-70B" -description = "DeepSeek R1 Distill Llama 70B is a distilled large language model based on [Llama-3.3-70B-Instruct](/meta-llama/llama-3.3-70b-instruct), using outputs from [DeepSeek R1](/deepseek/deepseek-r1). The model combines advanced distillation techniques to achieve high performance across..." -release_date = "2025-01-23" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.7 -output = 0.8 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B.toml deleted file mode 100644 index 337d284969..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.27 -output = 0.27 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Turbo.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Turbo.toml deleted file mode 100644 index 4060a00c4c..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1-Turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "deepseek-ai/DeepSeek-R1-Turbo" -description = "DeepSeek reasoning model for multi-step analysis, math, coding, and tools" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 1 -output = 3 - -[limit] -context = 40_960 -output = 40_960 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1.toml deleted file mode 100644 index f4739897d8..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-R1.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "deepseek-ai/DeepSeek-R1" -description = "DeepSeek reasoning model for multi-step analysis, math, coding, and tools" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.7 -output = 2.4 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3-0324.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3-0324.toml deleted file mode 100644 index 15e4b08d66..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3-0324.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "deepseek-ai/DeepSeek-V3-0324" -description = "DeepSeek chat model for instruction following, coding, and analysis" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.24 -output = 0.9 -cache_read = 0.135 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus.toml deleted file mode 100644 index 1c48c35e9d..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "deepseek-ai/DeepSeek-V3.1-Terminus" -description = "DeepSeek-V3.1 Terminus is an update to [DeepSeek V3.1](/deepseek/deepseek-chat-v3.1) that maintains the model's original capabilities while addressing issues reported by users, including language consistency and agent capabilities, further optimizing the model's..." -release_date = "2025-09-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.27 -output = 0.95 -cache_read = 0.13 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1.toml deleted file mode 100644 index 94064928f7..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.1.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "deepseek-ai/DeepSeek-V3.1" -description = "DeepSeek chat model for instruction following, coding, and analysis" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.25 -output = 0.95 -cache_read = 0.13 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.2.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.2.toml deleted file mode 100644 index 65513b6582..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.2.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "deepseek-ai/DeepSeek-V3.2" -description = "DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance. It introduces DeepSeek Sparse Attention (DSA), a fine-grained sparse attention mechanism..." -release_date = "2025-12-01" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 0.38 -cache_read = 0.13 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.toml deleted file mode 100644 index 4b12435b15..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V3.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "deepseek-ai/DeepSeek-V3" -description = "DeepSeek chat model for instruction following, coding, and analysis" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.32 -output = 0.89 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash-0731.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash-0731.toml deleted file mode 100644 index 49038e8fac..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash-0731.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "deepseek-ai/DeepSeek-V4-Flash-0731" -description = "DeepSeek V4 Flash 0731 is a sparse mixture-of-experts model from DeepSeek, with 13B active parameters out of 284B total. This re-post-trained revision is suited for coding, reasoning, and agent workflows." -release_date = "2026-07-31" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.09 -output = 0.18 -cache_read = 0.018 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash.toml deleted file mode 100644 index a7a8406270..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Flash.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "deepseek-ai/DeepSeek-V4-Flash" -description = "DeepSeek V4 Flash is an efficiency-optimized Mixture-of-Experts model from DeepSeek with 284B total parameters and 13B activated parameters, supporting a 1M-token context window. It is designed for fast inference and..." -release_date = "2026-04-24" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.09 -output = 0.18 -cache_read = 0.018 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Pro.toml b/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Pro.toml deleted file mode 100644 index 50a91f720e..0000000000 --- a/providers/edenai/models/deepinfra/deepseek-ai/DeepSeek-V4-Pro.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "deepseek-ai/DeepSeek-V4-Pro" -description = "DeepSeek V4 Pro is a large-scale Mixture-of-Experts model from DeepSeek with 1.6T total parameters and 49B activated parameters, supporting a 1M-token context window. It is designed for advanced reasoning, coding,..." -release_date = "2026-04-24" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.3 -output = 2.6 -cache_read = 0.1 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml b/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml deleted file mode 100644 index 812edcf6f3..0000000000 --- a/providers/edenai/models/deepinfra/google/gemini-2.5-flash.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "google/gemini-2.5-flash" -release_date = "2026-01-06" -last_updated = "2026-08-01" -structured_output = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 - -[limit] -context = 1_000_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml b/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml deleted file mode 100644 index 735bda26de..0000000000 --- a/providers/edenai/models/deepinfra/google/gemini-2.5-pro.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "google/gemini-2.5-pro" -release_date = "2026-01-06" -last_updated = "2026-08-01" -structured_output = false -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 - -[limit] -context = 1_000_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml b/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml deleted file mode 100644 index 57a651f802..0000000000 --- a/providers/edenai/models/deepinfra/google/gemini-3.1-flash-lite.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "google/gemini-3.1-flash-lite" -release_date = "2026-06-22" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -reasoning_options = [] - -[cost] -input = 0.25 -output = 1.5 - -[limit] -context = 1_000_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemini-3.1-pro.toml b/providers/edenai/models/deepinfra/google/gemini-3.1-pro.toml deleted file mode 100644 index 03ef4cba2c..0000000000 --- a/providers/edenai/models/deepinfra/google/gemini-3.1-pro.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "google/gemini-3.1-pro" -description = "Advanced Gemini model for complex reasoning, coding, and multimodal analysis" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 2 -output = 12 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml b/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml deleted file mode 100644 index 1145bb6b6a..0000000000 --- a/providers/edenai/models/deepinfra/google/gemini-3.5-flash.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "google/gemini-3.5-flash" -release_date = "2026-06-22" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -reasoning_options = [] - -[cost] -input = 1.5 -output = 9 - -[limit] -context = 1_000_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/google/gemma-3-12b-it.toml b/providers/edenai/models/deepinfra/google/gemma-3-12b-it.toml deleted file mode 100644 index e20d451912..0000000000 --- a/providers/edenai/models/deepinfra/google/gemma-3-12b-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google/gemma-3-12b-it" -description = "Gemma 3 introduces multimodality, supporting vision-language input and text outputs. It handles context windows up to 128k tokens, understands over 140 languages, and offers improved math, reasoning, and chat capabilities,..." -release_date = "2025-03-13" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.05 -output = 0.15 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-3-27b-it.toml b/providers/edenai/models/deepinfra/google/gemma-3-27b-it.toml deleted file mode 100644 index d27febfd64..0000000000 --- a/providers/edenai/models/deepinfra/google/gemma-3-27b-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google/gemma-3-27b-it" -description = "Gemma 3 introduces multimodality, supporting vision-language input and text outputs. It handles context windows up to 128k tokens, understands over 140 languages, and offers improved math, reasoning, and chat capabilities,..." -release_date = "2025-03-12" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.08 -output = 0.16 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-3-4b-it.toml b/providers/edenai/models/deepinfra/google/gemma-3-4b-it.toml deleted file mode 100644 index c956d95100..0000000000 --- a/providers/edenai/models/deepinfra/google/gemma-3-4b-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google/gemma-3-4b-it" -description = "Gemma 3 introduces multimodality, supporting vision-language input and text outputs. It handles context windows up to 128k tokens, understands over 140 languages, and offers improved math, reasoning, and chat capabilities,..." -release_date = "2025-03-13" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.05 -output = 0.1 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml b/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml deleted file mode 100644 index be35965e5d..0000000000 --- a/providers/edenai/models/deepinfra/google/gemma-4-26B-A4B-it.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemma-4-26b-a4b-it" -release_date = "2026-04-03" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.07 -output = 0.34 - -[modalities] -input = ["image", "text", "video"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-31B-it-Ultra.toml b/providers/edenai/models/deepinfra/google/gemma-4-31B-it-Ultra.toml deleted file mode 100644 index b35b59cc5c..0000000000 --- a/providers/edenai/models/deepinfra/google/gemma-4-31B-it-Ultra.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "google/gemma-4-31B-it-Ultra" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-07-28" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.27 -output = 0.76 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-31B-it-turbo.toml b/providers/edenai/models/deepinfra/google/gemma-4-31B-it-turbo.toml deleted file mode 100644 index fafddb7ef4..0000000000 --- a/providers/edenai/models/deepinfra/google/gemma-4-31B-it-turbo.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "google/gemma-4-31B-it-turbo" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.09 -output = 0.34 -cache_read = 0.05 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml b/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml deleted file mode 100644 index 1ab15459db..0000000000 --- a/providers/edenai/models/deepinfra/google/gemma-4-31B-it.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "google/gemma-4-31b-it" -last_updated = "2026-08-01" -tool_call = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.13 -output = 0.38 -cache_read = 0.05 - -[modalities] -input = ["image", "text", "video"] diff --git a/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml b/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml deleted file mode 100644 index 8d62eff9ae..0000000000 --- a/providers/edenai/models/deepinfra/google/gemma-4-E4B-it.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "google/gemma-4-E4B-it" -release_date = "2026-07-15" -last_updated = "2026-08-01" -attachment = false -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.02 -output = 0.1 - -[modalities] -input = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct.toml deleted file mode 100644 index 1e17d4a445..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Llama-3.2-11B-Vision-Instruct" -description = "Llama 3.2 11B Vision is a multimodal model with 11 billion parameters, designed to handle tasks combining visual and textual data. It excels in tasks such as image captioning and..." -release_date = "2024-09-25" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = true -open_weights = false - -[cost] -input = 0.345 -output = 0.345 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-3B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-3B-Instruct.toml deleted file mode 100644 index c64394313d..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Llama-3.2-3B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Llama-3.2-3B-Instruct" -description = "Open Llama instruction model for multilingual chat, reasoning, and coding" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.02 -output = 0.02 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml deleted file mode 100644 index 4a939bfe77..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Llama-3.3-70B-Instruct-Turbo" -description = "Compact Llama instruction model for fast chat and local deployment" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.1 -output = 0.32 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml deleted file mode 100644 index 3232cbb621..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Llama-3.3-70B-Instruct.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "meta/llama-3.3-70b-instruct" -last_updated = "2026-08-01" -attachment = false -structured_output = true -open_weights = false - -[cost] -input = 0.1 -output = 0.32 - -[limit] -context = 131_072 diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8.toml deleted file mode 100644 index 3e92058b40..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8" -description = "Open multimodal Llama model for strong reasoning and fast responses" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.8 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct.toml deleted file mode 100644 index 8e106c0986..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Llama-4-Scout-17B-16E-Instruct" -description = "Open multimodal Llama model for long-context analysis and efficient agents" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 327_680 -output = 327_680 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-3-8B.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-3-8B.toml deleted file mode 100644 index 4b7b8cac70..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-3-8B.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Llama-Guard-3-8B" -description = "Safety model for policy screening, moderation, and risk-aware routing workflows" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.055 -output = 0.055 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-4-12B.toml b/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-4-12B.toml deleted file mode 100644 index e2b4ef1e4c..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Llama-Guard-4-12B.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Llama-Guard-4-12B" -description = "Llama Guard 4 is a Llama 4 Scout-derived multimodal pretrained model, fine-tuned for content safety classification. Similar to previous versions, it can be used to classify content in both LLM..." -release_date = "2025-04-30" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = true -open_weights = false - -[cost] -input = 0.18 -output = 0.18 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["image", "text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3-8B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3-8B-Instruct.toml deleted file mode 100644 index 44d9f43169..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3-8B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Meta-Llama-3-8B-Instruct" -description = "Open Llama instruction model for multilingual chat, reasoning, and coding" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.03 -output = 0.06 - -[limit] -context = 8_192 -output = 8_192 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo.toml deleted file mode 100644 index 956e093906..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo" -description = "Compact Llama instruction model for fast chat and local deployment" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.4 -output = 0.4 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct.toml deleted file mode 100644 index 52d4138b4b..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Meta-Llama-3.1-70B-Instruct" -description = "Open Llama instruction model for multilingual chat, reasoning, and coding" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.4 -output = 0.4 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo.toml deleted file mode 100644 index c96b213b33..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo" -description = "Compact Llama instruction model for fast chat and local deployment" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.02 -output = 0.04 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct.toml b/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct.toml deleted file mode 100644 index 9a6c064c1b..0000000000 --- a/providers/edenai/models/deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Meta-Llama-3.1-8B-Instruct" -description = "Open Llama instruction model for multilingual chat, reasoning, and coding" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.02 -output = 0.05 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/microsoft/WizardLM-2-8x22B.toml b/providers/edenai/models/deepinfra/microsoft/WizardLM-2-8x22B.toml deleted file mode 100644 index 340f0efa9b..0000000000 --- a/providers/edenai/models/deepinfra/microsoft/WizardLM-2-8x22B.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "microsoft/WizardLM-2-8x22B" -description = "General-purpose chat model for instruction following, writing, and analysis" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.48 -output = 0.48 - -[limit] -context = 65_536 -output = 65_536 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/microsoft/phi-4.toml b/providers/edenai/models/deepinfra/microsoft/phi-4.toml deleted file mode 100644 index b5004da7d6..0000000000 --- a/providers/edenai/models/deepinfra/microsoft/phi-4.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "microsoft/phi-4" -description = "[Microsoft Research](/microsoft) Phi-4 is designed to perform well in complex reasoning tasks and can operate efficiently in situations with limited memory or where quick responses are needed. At 14 billion..." -release_date = "2025-01-10" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.07 -output = 0.14 - -[limit] -context = 16_384 -output = 16_384 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/mistralai/Mistral-Nemo-Instruct-2407.toml b/providers/edenai/models/deepinfra/mistralai/Mistral-Nemo-Instruct-2407.toml deleted file mode 100644 index 5bab262d70..0000000000 --- a/providers/edenai/models/deepinfra/mistralai/Mistral-Nemo-Instruct-2407.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistralai/Mistral-Nemo-Instruct-2407" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.019 -output = 0.03 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/mistralai/Mistral-Small-24B-Instruct-2501.toml b/providers/edenai/models/deepinfra/mistralai/Mistral-Small-24B-Instruct-2501.toml deleted file mode 100644 index 42f6976b1d..0000000000 --- a/providers/edenai/models/deepinfra/mistralai/Mistral-Small-24B-Instruct-2501.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistralai/Mistral-Small-24B-Instruct-2501" -description = "Mistral Small 3 is a 24B-parameter language model optimized for low-latency performance across common AI tasks. Released under the Apache 2.0 license, it features both pre-trained and instruction-tuned versions designed..." -release_date = "2025-01-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.05 -output = 0.08 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506.toml b/providers/edenai/models/deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506.toml deleted file mode 100644 index 2ef3ce0f0b..0000000000 --- a/providers/edenai/models/deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistralai/Mistral-Small-3.2-24B-Instruct-2506" -description = "Efficient Mistral model for fast chat, extraction, and production assistants" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.075 -output = 0.2 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1.toml b/providers/edenai/models/deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1.toml deleted file mode 100644 index 9d2fbf9cd9..0000000000 --- a/providers/edenai/models/deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistralai/Mixtral-8x7B-Instruct-v0.1" -description = "Tool-capable chat model for instruction following and agentic application workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.4 -output = 0.4 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct-0905.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct-0905.toml deleted file mode 100644 index b5f707d08d..0000000000 --- a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct-0905.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "moonshotai/Kimi-K2-Instruct-0905" -description = "Kimi model for long-context chat, coding, and agentic reasoning" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.5 -output = 2 -cache_read = 0.4 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct.toml deleted file mode 100644 index f639c58ffe..0000000000 --- a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "moonshotai/Kimi-K2-Instruct" -description = "Kimi model for long-context chat, coding, and agentic reasoning" -release_date = "2026-06-02" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.5 -output = 2 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.5.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.5.toml deleted file mode 100644 index cd89bb713f..0000000000 --- a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.5.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "moonshotai/kimi-k2.5" -release_date = "2026-01-27" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.45 -output = 2.25 -cache_read = 0.07 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.6.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.6.toml deleted file mode 100644 index eb4f4e7a48..0000000000 --- a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.6.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "moonshotai/kimi-k2.6" -release_date = "2026-04-20" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.75 -output = 3.5 -cache_read = 0.15 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.7-Code.toml b/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.7-Code.toml deleted file mode 100644 index dbeb7b4012..0000000000 --- a/providers/edenai/models/deepinfra/moonshotai/Kimi-K2.7-Code.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "moonshotai/kimi-k2.7-code" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.74 -output = 3.5 -cache_read = 0.15 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml b/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml deleted file mode 100644 index 6cf5fc9cb0..0000000000 --- a/providers/edenai/models/deepinfra/nemotron-3-ultra-550b-a55b.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "nvidia/nemotron-3-ultra-550b-a55b" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 2.2 -cache_read = 0.1 - -[limit] -context = 262_144 diff --git a/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml b/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml deleted file mode 100644 index 66baa7f783..0000000000 --- a/providers/edenai/models/deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "nvidia/llama-3.1-nemotron-70b-instruct" -release_date = "2026-01-06" -last_updated = "2026-08-01" -structured_output = false -open_weights = false - -[cost] -input = 0.6 -output = 0.6 - -[limit] -context = 131_072 diff --git a/providers/edenai/models/deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5.toml b/providers/edenai/models/deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5.toml deleted file mode 100644 index 9190e36de7..0000000000 --- a/providers/edenai/models/deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "nvidia/llama-3.3-nemotron-super-49b-v1.5" -release_date = "2025-10-10" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.4 -output = 0.4 diff --git a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B.toml b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B.toml deleted file mode 100644 index 551ca459fb..0000000000 --- a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Super-120B-A12B.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "nvidia/NVIDIA-Nemotron-3-Super-120B-A12B" -description = "Nemotron model for efficient reasoning, coding, and specialized AI agents" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.085 -output = 0.4 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml deleted file mode 100644 index 4c2c40b96f..0000000000 --- a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16" -description = "Nemotron multimodal model for visual reasoning and agentic AI workflows" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 1 -output = 5 -cache_read = 0.3 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B.toml b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B.toml deleted file mode 100644 index 372eea19dc..0000000000 --- a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B" -description = "Nemotron multimodal model for visual reasoning and agentic AI workflows" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 2.2 -cache_read = 0.1 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml b/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml deleted file mode 100644 index bfe472a919..0000000000 --- a/providers/edenai/models/deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "nvidia/NVIDIA-Nemotron-Nano-9B-v2" -description = "Compact Nemotron model for efficient reasoning and deployable AI agents" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.04 -output = 0.16 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-30B-A3B.toml b/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-30B-A3B.toml deleted file mode 100644 index 24d9af74ca..0000000000 --- a/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-30B-A3B.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "nvidia/nemotron-3-nano-30b-a3b" -release_date = "2025-12-14" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.05 -output = 0.2 -cache_read = 0.025 diff --git a/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml b/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml deleted file mode 100644 index 7a7f4f85bb..0000000000 --- a/providers/edenai/models/deepinfra/nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning.toml +++ /dev/null @@ -1,17 +0,0 @@ -base_model = "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning" -release_date = "2026-06-22" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 0.8 - -[limit] -context = 262_144 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/deepinfra/nvidia/Nemotron-Content-Safety-3.5.toml b/providers/edenai/models/deepinfra/nvidia/Nemotron-Content-Safety-3.5.toml deleted file mode 100644 index 880c6bcec7..0000000000 --- a/providers/edenai/models/deepinfra/nvidia/Nemotron-Content-Safety-3.5.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "nvidia/Nemotron-Content-Safety-3.5" -description = "Safety model for policy screening, moderation, and risk-aware routing workflows" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.2 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Turbo.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Turbo.toml deleted file mode 100644 index 5bb34e1a75..0000000000 --- a/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Turbo.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "openai/gpt-oss-120b-Turbo" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Ultra.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Ultra.toml deleted file mode 100644 index ddad3d0592..0000000000 --- a/providers/edenai/models/deepinfra/openai/gpt-oss-120b-Ultra.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "openai/gpt-oss-120b-Ultra" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2026-07-28" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 0.95 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml deleted file mode 100644 index 476ce59f60..0000000000 --- a/providers/edenai/models/deepinfra/openai/gpt-oss-120b.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "openai/gpt-oss-120b" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.037 -output = 0.17 diff --git a/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml b/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml deleted file mode 100644 index 4867c51e3b..0000000000 --- a/providers/edenai/models/deepinfra/openai/gpt-oss-20b.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "openai/gpt-oss-20b" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.03 -output = 0.14 diff --git a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml deleted file mode 100644 index 073965ca72..0000000000 --- a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.5-Flash.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "stepfun/step-3.5-flash" -base_model_omit = ["limit.input"] -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.09 -output = 0.3 -cache_read = 0.02 - -[limit] -context = 262_144 diff --git a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml b/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml deleted file mode 100644 index 04c0a68411..0000000000 --- a/providers/edenai/models/deepinfra/stepfun-ai/Step-3.7-Flash.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "stepfun/step-3.7-flash" -base_model_omit = ["limit.input"] -release_date = "2026-05-28" -last_updated = "2026-08-01" -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 1.15 -cache_read = 0.04 - -[limit] -context = 262_144 diff --git a/providers/edenai/models/deepinfra/tencent/Hy3.toml b/providers/edenai/models/deepinfra/tencent/Hy3.toml deleted file mode 100644 index 24c1ba2672..0000000000 --- a/providers/edenai/models/deepinfra/tencent/Hy3.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "tencent/hy3" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.14 -output = 0.58 -cache_read = 0.035 - -[limit] -context = 262_144 diff --git a/providers/edenai/models/deepinfra/thinkingmachines/Inkling-Small.toml b/providers/edenai/models/deepinfra/thinkingmachines/Inkling-Small.toml deleted file mode 100644 index b6a6e3937e..0000000000 --- a/providers/edenai/models/deepinfra/thinkingmachines/Inkling-Small.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "thinkingmachines/Inkling-Small" -description = "Inkling Small is an open-weight multimodal mixture-of-experts model from Thinking Machines Lab, with 12B active parameters out of 276B total. It is positioned as the smaller, more efficient member of..." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 1.2 -cache_read = 0.1 - -[limit] -context = 524_288 -output = 524_288 - -[modalities] -input = ["text", "image", "audio"] -output = ["text"] diff --git a/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml b/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml deleted file mode 100644 index 6c375f90b9..0000000000 --- a/providers/edenai/models/deepinfra/thinkingmachines/Inkling.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "thinkingmachines/inkling" -release_date = "2026-07-17" -last_updated = "2026-08-01" -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1 -output = 4.05 -cache_read = 0.17 - -[limit] -context = 524_288 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml deleted file mode 100644 index d93c9f3d19..0000000000 --- a/providers/edenai/models/deepinfra/zai-org/GLM-4.5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "zhipuai/glm-4.5" -release_date = "2026-06-02" -last_updated = "2026-08-01" -reasoning = false -structured_output = false -open_weights = false - -[cost] -input = 0.4 -output = 1.6 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml deleted file mode 100644 index 9edc5e5f45..0000000000 --- a/providers/edenai/models/deepinfra/zai-org/GLM-4.6.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "zhipuai/glm-4.6" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 2 -cache_read = 0.1 - -[limit] -context = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml deleted file mode 100644 index 6657b99d47..0000000000 --- a/providers/edenai/models/deepinfra/zai-org/GLM-4.7-Flash.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "zhipuai/glm-4.7-flash" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.06 -output = 0.4 -cache_read = 0.01 - -[limit] -context = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml b/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml deleted file mode 100644 index df337cd157..0000000000 --- a/providers/edenai/models/deepinfra/zai-org/GLM-4.7.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "zhipuai/glm-4.7" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.4 -output = 1.75 -cache_read = 0.08 - -[limit] -context = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml b/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml deleted file mode 100644 index 6c1d0d1666..0000000000 --- a/providers/edenai/models/deepinfra/zai-org/GLM-5.1.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "zhipuai/glm-5.1" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 1.05 -output = 3.5 -cache_read = 0.205 - -[limit] -context = 202_752 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml b/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml deleted file mode 100644 index f29a4f656c..0000000000 --- a/providers/edenai/models/deepinfra/zai-org/GLM-5.2.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "zhipuai/glm-5.2" -release_date = "2026-06-16" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.75 -output = 2.4 -cache_read = 0.14 - -[limit] -context = 1_048_576 diff --git a/providers/edenai/models/deepinfra/zai-org/GLM-5.toml b/providers/edenai/models/deepinfra/zai-org/GLM-5.toml deleted file mode 100644 index a32396e5eb..0000000000 --- a/providers/edenai/models/deepinfra/zai-org/GLM-5.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "zhipuai/glm-5" -release_date = "2026-02-11" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 2.08 -cache_read = 0.12 - -[limit] -context = 202_752 diff --git a/providers/edenai/models/deepseek/deepseek-chat.toml b/providers/edenai/models/deepseek/deepseek-chat.toml deleted file mode 100644 index 4f06172fe0..0000000000 --- a/providers/edenai/models/deepseek/deepseek-chat.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "deepseek/deepseek-chat" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -structured_output = true -open_weights = false - -[cost] -input = 0.28 -output = 0.42 -cache_read = 0.028 - -[limit] -context = 131_072 diff --git a/providers/edenai/models/deepseek/deepseek-reasoner.toml b/providers/edenai/models/deepseek/deepseek-reasoner.toml deleted file mode 100644 index 1de978d98d..0000000000 --- a/providers/edenai/models/deepseek/deepseek-reasoner.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "deepseek/deepseek-reasoner" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.28 -output = 0.42 -cache_read = 0.028 - -[limit] -context = 131_072 diff --git a/providers/edenai/models/deepseek/deepseek-v4-flash.toml b/providers/edenai/models/deepseek/deepseek-v4-flash.toml deleted file mode 100644 index 277d2d67b5..0000000000 --- a/providers/edenai/models/deepseek/deepseek-v4-flash.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "deepseek/deepseek-v4-flash" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.14 -output = 0.28 -cache_read = 0.0028 - -[limit] -context = 1_048_576 diff --git a/providers/edenai/models/deepseek/deepseek-v4-pro.toml b/providers/edenai/models/deepseek/deepseek-v4-pro.toml deleted file mode 100644 index 8444d8fe09..0000000000 --- a/providers/edenai/models/deepseek/deepseek-v4-pro.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "deepseek/deepseek-v4-pro" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.435 -output = 0.87 -cache_read = 0.003625 - -[limit] -context = 1_048_576 diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash-0731.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash-0731.toml deleted file mode 100644 index d0639f4719..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash-0731.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/deepseek-v4-flash-0731" -description = "DeepSeek V4 Flash 0731 is a sparse mixture-of-experts model from DeepSeek, with 13B active parameters out of 284B total. This re-post-trained revision is suited for coding, reasoning, and agent workflows." -release_date = "2026-07-31" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.14 -output = 0.28 -cache_read = 0.028 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash.toml deleted file mode 100644 index 8327883486..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-flash.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/deepseek-v4-flash" -description = "DeepSeek V4 Flash is an efficiency-optimized Mixture-of-Experts model from DeepSeek with 284B total parameters and 13B activated parameters, supporting a 1M-token context window. It is designed for fast inference and..." -release_date = "2026-04-24" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.14 -output = 0.28 -cache_read = 0.028 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-pro.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-pro.toml deleted file mode 100644 index 02201a893f..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/deepseek-v4-pro.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/deepseek-v4-pro" -description = "DeepSeek V4 Pro is a large-scale Mixture-of-Experts model from DeepSeek with 1.6T total parameters and 49B activated parameters, supporting a 1M-token context window. It is designed for advanced reasoning, coding,..." -release_date = "2026-04-24" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.74 -output = 3.48 -cache_read = 0.145 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/glm-5p2.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/glm-5p2.toml deleted file mode 100644 index 597c6fe6e6..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/glm-5p2.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/glm-5p2" -description = "Flagship GLM model for hybrid reasoning, coding, and agentic engineering" -release_date = "2026-06-29" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.4 -output = 4.4 -cache_read = 0.14 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-120b.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-120b.toml deleted file mode 100644 index c9d8caab28..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-120b.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/gpt-oss-120b" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 -cache_read = 0.015 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-20b.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-20b.toml deleted file mode 100644 index f4be57d0ee..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/gpt-oss-20b.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/gpt-oss-20b" -description = "Open-weight GPT model for self-hosted reasoning and instruction-following workloads" -release_date = "2025-08-05" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.07 -output = 0.3 -cache_read = 0.035 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p6.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p6.toml deleted file mode 100644 index f7a3d0cd4e..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p6.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/kimi-k2p6" -description = "Kimi multimodal agent model for visual understanding, coding, and planning" -release_date = "2026-06-29" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.95 -output = 4 -cache_read = 0.16 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p7-code.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p7-code.toml deleted file mode 100644 index 57f4a98acf..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k2p7-code.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/kimi-k2p7-code" -description = "Kimi coding model for software agents, refactors, and repository reasoning" -release_date = "2026-07-29" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.95 -output = 4 -cache_read = 0.19 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k3.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k3.toml deleted file mode 100644 index e3d09f0ab2..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/kimi-k3.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/kimi-k3" -description = "Kimi K3 is a 2.8T parameter open-weight multimodal reasoning model from Moonshot AI. It is suited for complex coding, knowledge work, and long-horizon agentic workflows, and is particularly strong at..." -release_date = "2026-07-16" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m2p7.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m2p7.toml deleted file mode 100644 index 1e932e085f..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m2p7.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/minimax-m2p7" -description = "MiniMax model for chat, coding, office work, and agentic tasks" -release_date = "2026-07-29" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 -cache_read = 0.06 - -[limit] -context = 196_608 -output = 196_608 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m3.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m3.toml deleted file mode 100644 index be5d0d51a5..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/models/minimax-m3.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/models/minimax-m3" -description = "MiniMax multimodal coding model for long-context reasoning and agent tasks" -release_date = "2026-07-29" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 -cache_read = 0.06 - -[limit] -context = 512_000 -output = 512_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/accounts/fireworks/routers/kimi-k2p7-code-fast.toml b/providers/edenai/models/fireworks_ai/accounts/fireworks/routers/kimi-k2p7-code-fast.toml deleted file mode 100644 index 5aeafa9df7..0000000000 --- a/providers/edenai/models/fireworks_ai/accounts/fireworks/routers/kimi-k2p7-code-fast.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "accounts/fireworks/routers/kimi-k2p7-code-fast" -description = "Kimi coding model for software agents, refactors, and repository reasoning" -release_date = "2026-07-29" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.9 -output = 8 -cache_read = 0.38 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml b/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml deleted file mode 100644 index e84956dd5f..0000000000 --- a/providers/edenai/models/fireworks_ai/deepseek-v4-flash.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "deepseek/deepseek-v4-flash" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.14 -output = 0.28 -cache_read = 0.028 - -[limit] -context = 1_048_576 diff --git a/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml b/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml deleted file mode 100644 index ee832042ea..0000000000 --- a/providers/edenai/models/fireworks_ai/deepseek-v4-pro.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "deepseek/deepseek-v4-pro" -last_updated = "2026-08-01" -tool_call = false -open_weights = false -reasoning_options = [] - -[cost] -input = 1.74 -output = 3.48 -cache_read = 0.145 - -[limit] -context = 1_048_576 diff --git a/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml b/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml deleted file mode 100644 index c0be3c2972..0000000000 --- a/providers/edenai/models/fireworks_ai/gpt-oss-120b.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-oss-120b" -last_updated = "2026-08-01" -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 -cache_read = 0.014 diff --git a/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml b/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml deleted file mode 100644 index a48c7f11b0..0000000000 --- a/providers/edenai/models/fireworks_ai/gpt-oss-20b.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-oss-20b" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.07 -output = 0.3 -cache_read = 0.035 diff --git a/providers/edenai/models/fireworks_ai/kimi-k3.toml b/providers/edenai/models/fireworks_ai/kimi-k3.toml deleted file mode 100644 index b32e21d2be..0000000000 --- a/providers/edenai/models/fireworks_ai/kimi-k3.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "moonshotai/kimi-k3" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/google/gemini-2.5-flash-image.toml b/providers/edenai/models/google/gemini-2.5-flash-image.toml deleted file mode 100644 index 76828d848b..0000000000 --- a/providers/edenai/models/google/gemini-2.5-flash-image.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "google/gemini-2.5-flash-image" -release_date = "2025-10-07" -last_updated = "2026-08-01" -reasoning = false -structured_output = true - -[cost] -input = 0.3 -output = 2.5 -cache_read = 0.03 -cache_write = 0.083333 -input_audio = 1 - -[modalities] -input = ["audio", "image", "text", "video"] diff --git a/providers/edenai/models/google/gemini-2.5-flash-lite.toml b/providers/edenai/models/google/gemini-2.5-flash-lite.toml deleted file mode 100644 index 8a35c9fb41..0000000000 --- a/providers/edenai/models/google/gemini-2.5-flash-lite.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemini-2.5-flash-lite" -release_date = "2025-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.4 -reasoning = 0.4 -cache_read = 0.01 -cache_write = 0.083333 -input_audio = 0.3 diff --git a/providers/edenai/models/google/gemini-2.5-flash.toml b/providers/edenai/models/google/gemini-2.5-flash.toml deleted file mode 100644 index 446ecbc568..0000000000 --- a/providers/edenai/models/google/gemini-2.5-flash.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-2.5-flash" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 -reasoning = 2.5 -cache_read = 0.03 -cache_write = 0.083333 -input_audio = 1 diff --git a/providers/edenai/models/google/gemini-2.5-pro.toml b/providers/edenai/models/google/gemini-2.5-pro.toml deleted file mode 100644 index cf00e491e7..0000000000 --- a/providers/edenai/models/google/gemini-2.5-pro.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-2.5-pro" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -reasoning = 10 -cache_read = 0.125 -cache_write = 0.375 -input_audio = 1.25 diff --git a/providers/edenai/models/google/gemini-3-flash-preview.toml b/providers/edenai/models/google/gemini-3-flash-preview.toml deleted file mode 100644 index fc73b39efa..0000000000 --- a/providers/edenai/models/google/gemini-3-flash-preview.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3-flash-preview" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.5 -output = 3 -reasoning = 3 -cache_read = 0.05 -cache_write = 0.083333 -input_audio = 1 diff --git a/providers/edenai/models/google/gemini-3-pro-image-preview.toml b/providers/edenai/models/google/gemini-3-pro-image-preview.toml deleted file mode 100644 index 1c2b653379..0000000000 --- a/providers/edenai/models/google/gemini-3-pro-image-preview.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemini-3-pro-image-preview" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 2 -output = 12 -reasoning = 12 -cache_read = 0.2 -cache_write = 0.375 -input_audio = 2 diff --git a/providers/edenai/models/google/gemini-3-pro-image.toml b/providers/edenai/models/google/gemini-3-pro-image.toml deleted file mode 100644 index b419cde242..0000000000 --- a/providers/edenai/models/google/gemini-3-pro-image.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "google/gemini-3-pro-image" -release_date = "2025-11-20" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 2 -output = 12 -reasoning = 12 -cache_read = 0.2 -cache_write = 0.375 -input_audio = 2 diff --git a/providers/edenai/models/google/gemini-3.1-flash-image-preview.toml b/providers/edenai/models/google/gemini-3.1-flash-image-preview.toml deleted file mode 100644 index 58a347ee51..0000000000 --- a/providers/edenai/models/google/gemini-3.1-flash-image-preview.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.1-flash-image-preview" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 0.5 -output = 3 - -[modalities] -input = ["image", "text"] diff --git a/providers/edenai/models/google/gemini-3.1-flash-image.toml b/providers/edenai/models/google/gemini-3.1-flash-image.toml deleted file mode 100644 index c52482e3fe..0000000000 --- a/providers/edenai/models/google/gemini-3.1-flash-image.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "google/gemini-3.1-flash-image" -release_date = "2026-02-26" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 0.5 -output = 3 - -[limit] -context = 65_536 - -[modalities] -input = ["image", "text"] diff --git a/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml b/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml deleted file mode 100644 index 2b8ebc0c51..0000000000 --- a/providers/edenai/models/google/gemini-3.1-flash-lite-image.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "google/gemini-3.1-flash-lite-image" -last_updated = "2026-08-01" -tool_call = false -structured_output = true -reasoning_options = [] - -[cost] -input = 0.25 -output = 1.5 diff --git a/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml b/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml deleted file mode 100644 index b899b7497b..0000000000 --- a/providers/edenai/models/google/gemini-3.1-flash-lite-preview.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemini-3.1-flash-lite-preview" -release_date = "2026-05-07" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.25 -output = 1.5 -reasoning = 1.5 -cache_read = 0.025 -cache_write = 0.083333 -input_audio = 0.5 diff --git a/providers/edenai/models/google/gemini-3.1-flash-lite.toml b/providers/edenai/models/google/gemini-3.1-flash-lite.toml deleted file mode 100644 index f306ae08c7..0000000000 --- a/providers/edenai/models/google/gemini-3.1-flash-lite.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.1-flash-lite" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.25 -output = 1.5 -reasoning = 1.5 -cache_read = 0.025 -cache_write = 0.083333 -input_audio = 0.5 diff --git a/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml b/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml deleted file mode 100644 index c7542d08de..0000000000 --- a/providers/edenai/models/google/gemini-3.1-pro-preview-customtools.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemini-3.1-pro-preview-customtools" -release_date = "2026-02-25" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2 -output = 12 -reasoning = 12 -cache_read = 0.2 -cache_write = 0.375 -input_audio = 2 diff --git a/providers/edenai/models/google/gemini-3.1-pro-preview.toml b/providers/edenai/models/google/gemini-3.1-pro-preview.toml deleted file mode 100644 index 47f1b71ebb..0000000000 --- a/providers/edenai/models/google/gemini-3.1-pro-preview.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.1-pro-preview" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2 -output = 12 -reasoning = 12 -cache_read = 0.2 -cache_write = 0.375 -input_audio = 2 diff --git a/providers/edenai/models/google/gemini-3.5-flash-lite.toml b/providers/edenai/models/google/gemini-3.5-flash-lite.toml deleted file mode 100644 index d3809ec02a..0000000000 --- a/providers/edenai/models/google/gemini-3.5-flash-lite.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.5-flash-lite" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 -reasoning = 2.5 -cache_read = 0.03 -cache_write = 0.083333 -input_audio = 0.3 diff --git a/providers/edenai/models/google/gemini-3.5-flash.toml b/providers/edenai/models/google/gemini-3.5-flash.toml deleted file mode 100644 index 45c1ca2aa2..0000000000 --- a/providers/edenai/models/google/gemini-3.5-flash.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.5-flash" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.5 -output = 9 -reasoning = 9 -cache_read = 0.15 -cache_write = 0.083333 -input_audio = 3 diff --git a/providers/edenai/models/google/gemini-3.6-flash.toml b/providers/edenai/models/google/gemini-3.6-flash.toml deleted file mode 100644 index bbbf040226..0000000000 --- a/providers/edenai/models/google/gemini-3.6-flash.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.6-flash" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.5 -output = 7.5 -reasoning = 7.5 -cache_read = 0.15 -cache_write = 0.083333 -input_audio = 1.5 diff --git a/providers/edenai/models/google/gemma-4-26b-a4b-it.toml b/providers/edenai/models/google/gemma-4-26b-a4b-it.toml deleted file mode 100644 index 88e1c680ef..0000000000 --- a/providers/edenai/models/google/gemma-4-26b-a4b-it.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemma-4-26b-a4b-it" -release_date = "2026-04-03" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0 -output = 0 - -[modalities] -input = ["image", "text", "video"] diff --git a/providers/edenai/models/google/gemma-4-31b-it.toml b/providers/edenai/models/google/gemma-4-31b-it.toml deleted file mode 100644 index 34f0e24b0b..0000000000 --- a/providers/edenai/models/google/gemma-4-31b-it.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemma-4-31b-it" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0 -output = 0 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/groq/llama-3.1-8b-instant.toml b/providers/edenai/models/groq/llama-3.1-8b-instant.toml deleted file mode 100644 index 0b3f20c8a5..0000000000 --- a/providers/edenai/models/groq/llama-3.1-8b-instant.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "llama-3.1-8b-instant" -description = "Compact Llama instruction model for fast chat and local deployment" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.05 -output = 0.08 -cache_read = 0.025 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/groq/llama-3.3-70b-versatile.toml b/providers/edenai/models/groq/llama-3.3-70b-versatile.toml deleted file mode 100644 index 49ee1284fa..0000000000 --- a/providers/edenai/models/groq/llama-3.3-70b-versatile.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "llama-3.3-70b-versatile" -description = "Open Llama instruction model for multilingual chat, reasoning, and coding" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.59 -output = 0.79 -cache_read = 0.295 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/groq/openai/gpt-oss-120b.toml b/providers/edenai/models/groq/openai/gpt-oss-120b.toml deleted file mode 100644 index f70c9c332f..0000000000 --- a/providers/edenai/models/groq/openai/gpt-oss-120b.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-oss-120b" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 -cache_read = 0.075 diff --git a/providers/edenai/models/groq/openai/gpt-oss-20b.toml b/providers/edenai/models/groq/openai/gpt-oss-20b.toml deleted file mode 100644 index 2761862d7b..0000000000 --- a/providers/edenai/models/groq/openai/gpt-oss-20b.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-oss-20b" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.075 -output = 0.3 -cache_read = 0.0375 diff --git a/providers/edenai/models/groq/openai/gpt-oss-safeguard-20b.toml b/providers/edenai/models/groq/openai/gpt-oss-safeguard-20b.toml deleted file mode 100644 index 406e3d77a3..0000000000 --- a/providers/edenai/models/groq/openai/gpt-oss-safeguard-20b.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "openai/gpt-oss-safeguard-20b" -description = "gpt-oss-safeguard-20b is a safety reasoning model from OpenAI built upon gpt-oss-20b. This open-weight, 21B-parameter Mixture-of-Experts (MoE) model offers lower latency for safety tasks like content classification, LLM filtering, and trust..." -release_date = "2025-10-29" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.075 -output = 0.3 -cache_read = 0.0375 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/groq/qwen/qwen3.6-27b.toml b/providers/edenai/models/groq/qwen/qwen3.6-27b.toml deleted file mode 100644 index 947366f4c5..0000000000 --- a/providers/edenai/models/groq/qwen/qwen3.6-27b.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "alibaba/qwen3.6-27b" -release_date = "2026-06-22" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 3 -cache_read = 0.3 - -[limit] -context = 131_072 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/lilac/google/gemma-4-31b-it.toml b/providers/edenai/models/lilac/google/gemma-4-31b-it.toml deleted file mode 100644 index 9de52db647..0000000000 --- a/providers/edenai/models/lilac/google/gemma-4-31b-it.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemma-4-31b-it" -release_date = "2026-06-08" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.0825 -output = 0.2625 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/lilac/minimaxai/minimax-m3.toml b/providers/edenai/models/lilac/minimaxai/minimax-m3.toml deleted file mode 100644 index c02160ba90..0000000000 --- a/providers/edenai/models/lilac/minimaxai/minimax-m3.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "minimaxai/minimax-m3" -description = "MiniMax multimodal coding model for long-context reasoning and agent tasks" -release_date = "2026-06-23" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.21 -output = 0.825 -cache_read = 0.0375 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/lilac/moonshotai/kimi-k2.6.toml b/providers/edenai/models/lilac/moonshotai/kimi-k2.6.toml deleted file mode 100644 index 417f70d66a..0000000000 --- a/providers/edenai/models/lilac/moonshotai/kimi-k2.6.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "moonshotai/kimi-k2.6" -release_date = "2026-06-08" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.525 -output = 2.625 -cache_read = 0.12 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/lilac/zai-org/glm-5.2.toml b/providers/edenai/models/lilac/zai-org/glm-5.2.toml deleted file mode 100644 index cab1ade7be..0000000000 --- a/providers/edenai/models/lilac/zai-org/glm-5.2.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "zhipuai/glm-5.2" -release_date = "2026-06-23" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.675 -output = 2.25 -cache_read = 0.1275 - -[limit] -context = 524_288 diff --git a/providers/edenai/models/microsoft/gpt-35-turbo-16k.toml b/providers/edenai/models/microsoft/gpt-35-turbo-16k.toml deleted file mode 100644 index 1bd6c85a56..0000000000 --- a/providers/edenai/models/microsoft/gpt-35-turbo-16k.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "gpt-35-turbo-16k" -description = "Compact GPT model for low-latency assistance and high-volume workloads" -release_date = "2023-08-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 3 -output = 4 - -[limit] -context = 16_385 -output = 16_385 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/microsoft/gpt-35-turbo.toml b/providers/edenai/models/microsoft/gpt-35-turbo.toml deleted file mode 100644 index 6b3acb570e..0000000000 --- a/providers/edenai/models/microsoft/gpt-35-turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "gpt-35-turbo" -description = "Compact GPT model for low-latency assistance and high-volume workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.5 -output = 1.5 - -[limit] -context = 4_097 -output = 4_097 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/microsoft/gpt-4.toml b/providers/edenai/models/microsoft/gpt-4.toml deleted file mode 100644 index 6c51fb4e6f..0000000000 --- a/providers/edenai/models/microsoft/gpt-4.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/gpt-4" -release_date = "2023-05-28" -last_updated = "2026-08-01" -attachment = false -structured_output = true - -[cost] -input = 30 -output = 60 - -[limit] -context = 8_191 diff --git a/providers/edenai/models/microsoft/gpt-4o-mini.toml b/providers/edenai/models/microsoft/gpt-4o-mini.toml deleted file mode 100644 index 6b4cd51cdb..0000000000 --- a/providers/edenai/models/microsoft/gpt-4o-mini.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "openai/gpt-4o-mini" -last_updated = "2026-08-01" -tool_call = false - -[cost] -input = 0.15 -output = 0.6 -cache_read = 0.075 diff --git a/providers/edenai/models/microsoft/gpt-4o.toml b/providers/edenai/models/microsoft/gpt-4o.toml deleted file mode 100644 index 67d293928d..0000000000 --- a/providers/edenai/models/microsoft/gpt-4o.toml +++ /dev/null @@ -1,7 +0,0 @@ -base_model = "openai/gpt-4o" -last_updated = "2026-08-01" - -[cost] -input = 2.5 -output = 10 -cache_read = 1.25 diff --git a/providers/edenai/models/microsoft/o1-mini.toml b/providers/edenai/models/microsoft/o1-mini.toml deleted file mode 100644 index 2743b5ace6..0000000000 --- a/providers/edenai/models/microsoft/o1-mini.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "o1-mini" -description = "O-series reasoning model for hard analysis, math, coding, and planning" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 1.21 -output = 4.84 -cache_read = 0.605 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/microsoft/o3-mini.toml b/providers/edenai/models/microsoft/o3-mini.toml deleted file mode 100644 index b113b46e2b..0000000000 --- a/providers/edenai/models/microsoft/o3-mini.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/o3-mini" -release_date = "2026-01-06" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.1 -output = 4.4 -cache_read = 0.55 diff --git a/providers/edenai/models/minimax/MiniMax-M2.1.toml b/providers/edenai/models/minimax/MiniMax-M2.1.toml deleted file mode 100644 index 13b1ed2549..0000000000 --- a/providers/edenai/models/minimax/MiniMax-M2.1.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "minimax/MiniMax-M2.1" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 -cache_read = 0.03 diff --git a/providers/edenai/models/minimax/MiniMax-M2.5.toml b/providers/edenai/models/minimax/MiniMax-M2.5.toml deleted file mode 100644 index aefb89aecc..0000000000 --- a/providers/edenai/models/minimax/MiniMax-M2.5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "minimax/MiniMax-M2.5" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 -cache_read = 0.03 diff --git a/providers/edenai/models/minimax/MiniMax-M2.7.toml b/providers/edenai/models/minimax/MiniMax-M2.7.toml deleted file mode 100644 index 2617a726fa..0000000000 --- a/providers/edenai/models/minimax/MiniMax-M2.7.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "minimax/MiniMax-M2.7" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 -cache_read = 0.06 diff --git a/providers/edenai/models/minimax/MiniMax-M2.toml b/providers/edenai/models/minimax/MiniMax-M2.toml deleted file mode 100644 index ddee2128e8..0000000000 --- a/providers/edenai/models/minimax/MiniMax-M2.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "minimax/MiniMax-M2" -release_date = "2025-10-23" -last_updated = "2026-08-01" -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 - -[limit] -context = 204_800 diff --git a/providers/edenai/models/minimax/MiniMax-M3.toml b/providers/edenai/models/minimax/MiniMax-M3.toml deleted file mode 100644 index 9c6ec53f8a..0000000000 --- a/providers/edenai/models/minimax/MiniMax-M3.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "minimax/MiniMax-M3" -release_date = "2026-05-31" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 -cache_read = 0.06 - -[limit] -context = 524_288 diff --git a/providers/edenai/models/minimax/minimax-m1.toml b/providers/edenai/models/minimax/minimax-m1.toml deleted file mode 100644 index 483efa0a2e..0000000000 --- a/providers/edenai/models/minimax/minimax-m1.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "minimax-m1" -description = "MiniMax-M1 is a large-scale, open-weight reasoning model designed for extended context and high-efficiency inference. It leverages a hybrid Mixture-of-Experts (MoE) architecture paired with a custom \"lightning attention\" mechanism, allowing it..." -release_date = "2025-06-17" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.4 -output = 2.2 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/codestral-2405.toml b/providers/edenai/models/mistral/codestral-2405.toml deleted file mode 100644 index d8543ff3bf..0000000000 --- a/providers/edenai/models/mistral/codestral-2405.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "codestral-2405" -description = "Mistral coding model for code completion, generation, and developer workflows" -release_date = "2026-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 1 -output = 3 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/codestral-2508.toml b/providers/edenai/models/mistral/codestral-2508.toml deleted file mode 100644 index c67445158e..0000000000 --- a/providers/edenai/models/mistral/codestral-2508.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "codestral-2508" -description = "Mistral's cutting-edge language model for coding released end of July 2025. Codestral specializes in low-latency, high-frequency tasks such as fill-in-the-middle (FIM), code correction and test generation. [Blog Post](https://mistral.ai/news/codestral-25-08)" -release_date = "2025-08-01" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.3 -output = 0.9 -cache_read = 0.03 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/mistral/codestral-latest.toml b/providers/edenai/models/mistral/codestral-latest.toml deleted file mode 100644 index 7513f52d6b..0000000000 --- a/providers/edenai/models/mistral/codestral-latest.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "mistral/codestral-latest" -release_date = "2026-06-05" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 1 -output = 3 diff --git a/providers/edenai/models/mistral/devstral-2512.toml b/providers/edenai/models/mistral/devstral-2512.toml deleted file mode 100644 index 5d9b3f794a..0000000000 --- a/providers/edenai/models/mistral/devstral-2512.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "mistral/devstral-2512" -last_updated = "2026-08-01" -attachment = true -structured_output = true -open_weights = false - -[cost] -input = 0.4 -output = 2 - -[modalities] -input = ["text", "pdf"] diff --git a/providers/edenai/models/mistral/devstral-latest.toml b/providers/edenai/models/mistral/devstral-latest.toml deleted file mode 100644 index c3eeb7f0ba..0000000000 --- a/providers/edenai/models/mistral/devstral-latest.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "devstral-latest" -description = "Mistral coding agent model for repository tasks and software engineering workflows" -release_date = "2026-02-20" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.4 -output = 2 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/devstral-medium-latest.toml b/providers/edenai/models/mistral/devstral-medium-latest.toml deleted file mode 100644 index 62fc1db2c6..0000000000 --- a/providers/edenai/models/mistral/devstral-medium-latest.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "mistral/devstral-medium-latest" -release_date = "2026-02-20" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 0.4 -output = 2 diff --git a/providers/edenai/models/mistral/devstral-small-latest.toml b/providers/edenai/models/mistral/devstral-small-latest.toml deleted file mode 100644 index f2bae846c3..0000000000 --- a/providers/edenai/models/mistral/devstral-small-latest.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "devstral-small-latest" -description = "Mistral coding agent model for repository tasks and software engineering workflows" -release_date = "2026-02-20" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/labs-devstral-small-2512.toml b/providers/edenai/models/mistral/labs-devstral-small-2512.toml deleted file mode 100644 index b62ae9f3ce..0000000000 --- a/providers/edenai/models/mistral/labs-devstral-small-2512.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "labs-devstral-small-2512" -description = "Mistral coding agent model for repository tasks and software engineering workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/magistral-medium-2509.toml b/providers/edenai/models/mistral/magistral-medium-2509.toml deleted file mode 100644 index 706604e20a..0000000000 --- a/providers/edenai/models/mistral/magistral-medium-2509.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "magistral-medium-2509" -description = "Mistral reasoning model for transparent analysis, math, and complex decisions" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2 -output = 5 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/mistral/magistral-medium-latest.toml b/providers/edenai/models/mistral/magistral-medium-latest.toml deleted file mode 100644 index 048bf99cbf..0000000000 --- a/providers/edenai/models/mistral/magistral-medium-latest.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "mistral/magistral-medium-latest" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -structured_output = true -reasoning_options = [] - -[cost] -input = 2 -output = 5 - -[limit] -context = 131_072 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/mistral/magistral-small-latest.toml b/providers/edenai/models/mistral/magistral-small-latest.toml deleted file mode 100644 index b20b5c5c16..0000000000 --- a/providers/edenai/models/mistral/magistral-small-latest.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "magistral-small-latest" -description = "Mistral reasoning model for transparent analysis, math, and complex decisions" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 1.5 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/mistral/ministral-14b-2512.toml b/providers/edenai/models/mistral/ministral-14b-2512.toml deleted file mode 100644 index 1ea6259369..0000000000 --- a/providers/edenai/models/mistral/ministral-14b-2512.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "ministral-14b-2512" -description = "The largest model in the Ministral 3 family, Ministral 3 14B offers frontier capabilities and performance comparable to its larger Mistral Small 3.2 24B counterpart. A powerful and efficient language..." -release_date = "2025-12-02" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.2 -output = 0.2 -cache_read = 0.02 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/mistral/ministral-3b-2512.toml b/providers/edenai/models/mistral/ministral-3b-2512.toml deleted file mode 100644 index f74897bb01..0000000000 --- a/providers/edenai/models/mistral/ministral-3b-2512.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "ministral-3b-2512" -description = "The smallest model in the Ministral 3 family, Ministral 3 3B is a powerful, efficient tiny language model with vision capabilities." -release_date = "2025-12-02" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.1 -output = 0.1 -cache_read = 0.01 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/mistral/ministral-8b-2512.toml b/providers/edenai/models/mistral/ministral-8b-2512.toml deleted file mode 100644 index f0f6819134..0000000000 --- a/providers/edenai/models/mistral/ministral-8b-2512.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "ministral-8b-2512" -description = "A balanced model in the Ministral 3 family, Ministral 3 8B is a powerful, efficient tiny language model with vision capabilities." -release_date = "2025-12-02" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.15 -output = 0.15 -cache_read = 0.015 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/mistral/ministral-8b-latest.toml b/providers/edenai/models/mistral/ministral-8b-latest.toml deleted file mode 100644 index 902bf8f40e..0000000000 --- a/providers/edenai/models/mistral/ministral-8b-latest.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "ministral-8b-latest" -description = "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads" -release_date = "2026-06-07" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.15 -output = 0.15 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-large-2402.toml b/providers/edenai/models/mistral/mistral-large-2402.toml deleted file mode 100644 index 09575c83bc..0000000000 --- a/providers/edenai/models/mistral/mistral-large-2402.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral-large-2402" -description = "Flagship Mistral model for advanced reasoning, coding, and multilingual work" -release_date = "2026-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 4 -output = 12 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-large-2407.toml b/providers/edenai/models/mistral/mistral-large-2407.toml deleted file mode 100644 index 6aaf0ead74..0000000000 --- a/providers/edenai/models/mistral/mistral-large-2407.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "mistral-large-2407" -description = "This is Mistral AI's flagship model, Mistral Large 2 (version mistral-large-2407). It's a proprietary weights-available model and excels at reasoning, code, JSON, chat, and more. Read the launch announcement [here](https://mistral.ai/news/mistral-large-2407/)...." -release_date = "2024-11-19" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 2 -output = 6 -cache_read = 0.2 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-large-2512.toml b/providers/edenai/models/mistral/mistral-large-2512.toml deleted file mode 100644 index 88ffa94d68..0000000000 --- a/providers/edenai/models/mistral/mistral-large-2512.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "mistral/mistral-large-2512" -release_date = "2025-12-01" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 0.5 -output = 1.5 -cache_read = 0.05 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/mistral/mistral-large-latest.toml b/providers/edenai/models/mistral/mistral-large-latest.toml deleted file mode 100644 index 51b0776d72..0000000000 --- a/providers/edenai/models/mistral/mistral-large-latest.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "mistral/mistral-large-latest" -release_date = "2024-02-26" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 2 -output = 6 -cache_read = 0.2 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/mistral/mistral-medium-2312.toml b/providers/edenai/models/mistral/mistral-medium-2312.toml deleted file mode 100644 index b33d9c0957..0000000000 --- a/providers/edenai/models/mistral/mistral-medium-2312.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral-medium-2312" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 2.7 -output = 8.1 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-2505.toml b/providers/edenai/models/mistral/mistral-medium-2505.toml deleted file mode 100644 index ae40ec8f8e..0000000000 --- a/providers/edenai/models/mistral/mistral-medium-2505.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "mistral/mistral-medium-2505" -release_date = "2026-01-06" -last_updated = "2026-08-01" -structured_output = true - -[cost] -input = 0.4 -output = 2 diff --git a/providers/edenai/models/mistral/mistral-medium-2508.toml b/providers/edenai/models/mistral/mistral-medium-2508.toml deleted file mode 100644 index 56ffd9356b..0000000000 --- a/providers/edenai/models/mistral/mistral-medium-2508.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral-medium-2508" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-06-29" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.4 -output = 2 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-2604.toml b/providers/edenai/models/mistral/mistral-medium-2604.toml deleted file mode 100644 index 7aa2d1377f..0000000000 --- a/providers/edenai/models/mistral/mistral-medium-2604.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "mistral/mistral-medium-2604" -release_date = "2026-06-29" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 1.5 -output = 7.5 diff --git a/providers/edenai/models/mistral/mistral-medium-3-5.toml b/providers/edenai/models/mistral/mistral-medium-3-5.toml deleted file mode 100644 index 0342dd44fc..0000000000 --- a/providers/edenai/models/mistral/mistral-medium-3-5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "mistral-medium-3-5" -description = "Mistral Medium 3.5 is a dense 128B instruction-following model from Mistral AI. It supports text and image inputs with text output, and is designed for agentic workflows, coding, and complex..." -release_date = "2026-04-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.5 -output = 7.5 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-3.5.toml b/providers/edenai/models/mistral/mistral-medium-3.5.toml deleted file mode 100644 index 43e99f9e8c..0000000000 --- a/providers/edenai/models/mistral/mistral-medium-3.5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "mistral-medium-3.5" -description = "Mistral Medium 3.5 is a dense 128B instruction-following model from Mistral AI. It supports text and image inputs with text output, and is designed for agentic workflows, coding, and complex..." -release_date = "2026-04-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.5 -output = 7.5 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-3.toml b/providers/edenai/models/mistral/mistral-medium-3.toml deleted file mode 100644 index 666257ea89..0000000000 --- a/providers/edenai/models/mistral/mistral-medium-3.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "mistral-medium-3" -description = "Mistral Medium 3 is a high-performance enterprise-grade language model designed to deliver frontier-level capabilities at significantly reduced operational cost. It balances state-of-the-art reasoning and multimodal performance with 8× lower cost..." -release_date = "2025-05-07" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.4 -output = 2 -cache_read = 0.04 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-medium-latest.toml b/providers/edenai/models/mistral/mistral-medium-latest.toml deleted file mode 100644 index b1680d29e1..0000000000 --- a/providers/edenai/models/mistral/mistral-medium-latest.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "mistral/mistral-medium-latest" -release_date = "2026-01-06" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 1.5 -output = 7.5 diff --git a/providers/edenai/models/mistral/mistral-medium.toml b/providers/edenai/models/mistral/mistral-medium.toml deleted file mode 100644 index 4f846dded3..0000000000 --- a/providers/edenai/models/mistral/mistral-medium.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "mistral-medium" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2.7 -output = 8.1 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-small-2603.toml b/providers/edenai/models/mistral/mistral-small-2603.toml deleted file mode 100644 index 4ecb254c27..0000000000 --- a/providers/edenai/models/mistral/mistral-small-2603.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "mistral/mistral-small-2603" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 -cache_read = 0.015 - -[limit] -context = 262_144 diff --git a/providers/edenai/models/mistral/mistral-small-latest.toml b/providers/edenai/models/mistral/mistral-small-latest.toml deleted file mode 100644 index 9107da65c6..0000000000 --- a/providers/edenai/models/mistral/mistral-small-latest.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "mistral/mistral-small-latest" -release_date = "2026-01-06" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.06 -output = 0.18 - -[limit] -context = 262_144 diff --git a/providers/edenai/models/mistral/mistral-small.toml b/providers/edenai/models/mistral/mistral-small.toml deleted file mode 100644 index 65a165e717..0000000000 --- a/providers/edenai/models/mistral/mistral-small.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral-small" -description = "Efficient Mistral model for fast chat, extraction, and production assistants" -release_date = "2026-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-tiny-latest.toml b/providers/edenai/models/mistral/mistral-tiny-latest.toml deleted file mode 100644 index e237bdac76..0000000000 --- a/providers/edenai/models/mistral/mistral-tiny-latest.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral-tiny-latest" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-06-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.25 -output = 0.25 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/mistral-tiny.toml b/providers/edenai/models/mistral/mistral-tiny.toml deleted file mode 100644 index 5948a4b59b..0000000000 --- a/providers/edenai/models/mistral/mistral-tiny.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral-tiny" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.25 -output = 0.25 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/open-mistral-7b.toml b/providers/edenai/models/mistral/open-mistral-7b.toml deleted file mode 100644 index dd12b0458d..0000000000 --- a/providers/edenai/models/mistral/open-mistral-7b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "open-mistral-7b" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.25 -output = 0.25 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/open-mistral-nemo-2407.toml b/providers/edenai/models/mistral/open-mistral-nemo-2407.toml deleted file mode 100644 index eace166bae..0000000000 --- a/providers/edenai/models/mistral/open-mistral-nemo-2407.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "open-mistral-nemo-2407" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.3 -output = 0.3 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/open-mistral-nemo.toml b/providers/edenai/models/mistral/open-mistral-nemo.toml deleted file mode 100644 index 09751404f8..0000000000 --- a/providers/edenai/models/mistral/open-mistral-nemo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "open-mistral-nemo" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.3 -output = 0.3 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/open-mixtral-8x22b.toml b/providers/edenai/models/mistral/open-mixtral-8x22b.toml deleted file mode 100644 index 3739e0a987..0000000000 --- a/providers/edenai/models/mistral/open-mixtral-8x22b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "open-mixtral-8x22b" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 2 -output = 6 - -[limit] -context = 65_336 -output = 65_336 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/open-mixtral-8x7b.toml b/providers/edenai/models/mistral/open-mixtral-8x7b.toml deleted file mode 100644 index fb5822838d..0000000000 --- a/providers/edenai/models/mistral/open-mixtral-8x7b.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "open-mixtral-8x7b" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.7 -output = 0.7 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/mistral/pixtral-12b-2409.toml b/providers/edenai/models/mistral/pixtral-12b-2409.toml deleted file mode 100644 index 6999c76870..0000000000 --- a/providers/edenai/models/mistral/pixtral-12b-2409.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "pixtral-12b-2409" -description = "Mistral vision-language model for image understanding and multimodal chat" -release_date = "2026-04-28" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.15 -output = 0.15 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["image", "text"] -output = ["text"] diff --git a/providers/edenai/models/moonshot/kimi-k2.6.toml b/providers/edenai/models/moonshot/kimi-k2.6.toml deleted file mode 100644 index aee8a2299e..0000000000 --- a/providers/edenai/models/moonshot/kimi-k2.6.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "moonshotai/kimi-k2.6" -release_date = "2026-04-20" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.95 -output = 4 -cache_read = 0.16 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/moonshot/kimi-k2.7-code.toml b/providers/edenai/models/moonshot/kimi-k2.7-code.toml deleted file mode 100644 index 70a7c54a37..0000000000 --- a/providers/edenai/models/moonshot/kimi-k2.7-code.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "moonshotai/kimi-k2.7-code" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.95 -output = 4 -cache_read = 0.19 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/moonshot/kimi-k3.toml b/providers/edenai/models/moonshot/kimi-k3.toml deleted file mode 100644 index b32e21d2be..0000000000 --- a/providers/edenai/models/moonshot/kimi-k3.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "moonshotai/kimi-k3" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M2.5.toml b/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M2.5.toml deleted file mode 100644 index e3af57668d..0000000000 --- a/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M2.5.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "MiniMaxAI/MiniMax-M2.5" -description = "MiniMax-M2.5 is a SOTA large language model designed for real-world productivity. Trained in a diverse range of complex real-world digital working environments, M2.5 builds upon the coding expertise of M2.1..." -release_date = "2026-02-12" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 - -[limit] -context = 196_608 -output = 196_608 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M3.toml b/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M3.toml deleted file mode 100644 index eeeef19310..0000000000 --- a/providers/edenai/models/nebius/MiniMaxAI/MiniMax-M3.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "MiniMaxAI/MiniMax-M3" -description = "MiniMax multimodal coding model for long-context reasoning and agent tasks" -release_date = "2026-07-11" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 - -[limit] -context = 8_000 -output = 8_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/nebius/NousResearch/Hermes-4-405B.toml b/providers/edenai/models/nebius/NousResearch/Hermes-4-405B.toml deleted file mode 100644 index ae75012077..0000000000 --- a/providers/edenai/models/nebius/NousResearch/Hermes-4-405B.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "NousResearch/Hermes-4-405B" -description = "Hermes 4 is a large-scale reasoning model built on Meta-Llama-3.1-405B and released by Nous Research. It introduces a hybrid reasoning mode, where the model can choose to deliberate internally with..." -release_date = "2025-08-26" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1 -output = 3 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/nebius/NousResearch/Hermes-4-70B.toml b/providers/edenai/models/nebius/NousResearch/Hermes-4-70B.toml deleted file mode 100644 index 9c8f4e83b0..0000000000 --- a/providers/edenai/models/nebius/NousResearch/Hermes-4-70B.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "NousResearch/Hermes-4-70B" -description = "Hermes 4 70B is a hybrid reasoning model from Nous Research, built on Meta-Llama-3.1-70B. It introduces the same hybrid mode as the larger 405B release, allowing the model to either..." -release_date = "2025-08-26" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.13 -output = 0.4 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml b/providers/edenai/models/nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml deleted file mode 100644 index fc3051713d..0000000000 --- a/providers/edenai/models/nebius/Qwen/Qwen2.5-VL-72B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Qwen/Qwen2.5-VL-72B-Instruct" -description = "Qwen2.5-VL is proficient in recognizing common objects such as flowers, birds, fish, and insects. It is also highly capable of analyzing texts, charts, icons, graphics, and layouts within images." -release_date = "2025-02-01" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.25 -output = 0.75 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-235B-A22B-Instruct-2507.toml b/providers/edenai/models/nebius/Qwen/Qwen3-235B-A22B-Instruct-2507.toml deleted file mode 100644 index 1018a14534..0000000000 --- a/providers/edenai/models/nebius/Qwen/Qwen3-235B-A22B-Instruct-2507.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Qwen/Qwen3-235B-A22B-Instruct-2507" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.2 -output = 0.6 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-30B-A3B-Instruct-2507.toml b/providers/edenai/models/nebius/Qwen/Qwen3-30B-A3B-Instruct-2507.toml deleted file mode 100644 index 26f58be4c5..0000000000 --- a/providers/edenai/models/nebius/Qwen/Qwen3-30B-A3B-Instruct-2507.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Qwen/Qwen3-30B-A3B-Instruct-2507" -description = "Qwen3-30B-A3B-Instruct-2507 is a 30.5B-parameter mixture-of-experts language model from Qwen, with 3.3B active parameters per inference. It operates in non-thinking mode and is designed for high-quality instruction following, multilingual understanding, and..." -release_date = "2025-07-29" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml b/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml deleted file mode 100644 index 9ae82c8718..0000000000 --- a/providers/edenai/models/nebius/Qwen/Qwen3-32B.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3-32b" -release_date = "2025-04-28" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 40_960 diff --git a/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml b/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml deleted file mode 100644 index b10d8eb142..0000000000 --- a/providers/edenai/models/nebius/Qwen/Qwen3-Next-80B-A3B-Thinking.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3-next-80b-a3b-thinking" -release_date = "2025-09-11" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 1.2 - -[limit] -context = 128_000 diff --git a/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml b/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml deleted file mode 100644 index 6f599c04f3..0000000000 --- a/providers/edenai/models/nebius/Qwen/Qwen3.5-397B-A17B.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3.5-397b-a17b" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 3.6 - -[modalities] -input = ["text"] diff --git a/providers/edenai/models/nebius/google/gemma-3-27b-it.toml b/providers/edenai/models/nebius/google/gemma-3-27b-it.toml deleted file mode 100644 index 12411c937d..0000000000 --- a/providers/edenai/models/nebius/google/gemma-3-27b-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google/gemma-3-27b-it" -description = "Gemma 3 introduces multimodality, supporting vision-language input and text outputs. It handles context windows up to 128k tokens, understands over 140 languages, and offers improved math, reasoning, and chat capabilities,..." -release_date = "2025-03-12" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 110_000 -output = 110_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml b/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml deleted file mode 100644 index f005333c82..0000000000 --- a/providers/edenai/models/nebius/meta-llama/Llama-3.3-70B-Instruct.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "meta/llama-3.3-70b-instruct" -last_updated = "2026-08-01" -attachment = false -structured_output = true -open_weights = false - -[cost] -input = 0.13 -output = 0.4 - -[limit] -context = 131_072 diff --git a/providers/edenai/models/nebius/moonshotai/Kimi-K2.6.toml b/providers/edenai/models/nebius/moonshotai/Kimi-K2.6.toml deleted file mode 100644 index d8d13870c8..0000000000 --- a/providers/edenai/models/nebius/moonshotai/Kimi-K2.6.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "moonshotai/kimi-k2.6" -release_date = "2026-04-20" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.95 -output = 4 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml b/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml deleted file mode 100644 index 1218d3388f..0000000000 --- a/providers/edenai/models/nebius/moonshotai/Kimi-K2.7-Code.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "moonshotai/kimi-k2.7-code" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.95 -output = 4 - -[limit] -context = 8_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml b/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml deleted file mode 100644 index 7918bda150..0000000000 --- a/providers/edenai/models/nebius/moonshotai/Kimi-K3.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "moonshotai/kimi-k3" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 3 -output = 15 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/nebius/nvidia/Cosmos3-Super-Reasoner.toml b/providers/edenai/models/nebius/nvidia/Cosmos3-Super-Reasoner.toml deleted file mode 100644 index 07c0405d8a..0000000000 --- a/providers/edenai/models/nebius/nvidia/Cosmos3-Super-Reasoner.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "nvidia/Cosmos3-Super-Reasoner" -description = "Multimodal reasoning model for visual analysis, planning, and tool use" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.3 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/nebius/nvidia/Llama-3_1-Nemotron-Ultra-253B-v1.toml b/providers/edenai/models/nebius/nvidia/Llama-3_1-Nemotron-Ultra-253B-v1.toml deleted file mode 100644 index c734e5985f..0000000000 --- a/providers/edenai/models/nebius/nvidia/Llama-3_1-Nemotron-Ultra-253B-v1.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" -description = "Flagship Nemotron model for high-throughput reasoning and complex agents" -release_date = "2026-06-05" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 1.8 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/nebius/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B.toml b/providers/edenai/models/nebius/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B.toml deleted file mode 100644 index 746ed79ede..0000000000 --- a/providers/edenai/models/nebius/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B" -description = "Compact Nemotron model for efficient reasoning and deployable AI agents" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.06 -output = 0.24 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/nebius/nvidia/Nemotron-3-Nano-Omni.toml b/providers/edenai/models/nebius/nvidia/Nemotron-3-Nano-Omni.toml deleted file mode 100644 index f51162e5c9..0000000000 --- a/providers/edenai/models/nebius/nvidia/Nemotron-3-Nano-Omni.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "nvidia/Nemotron-3-Nano-Omni" -description = "Omni-modal model for text, vision, audio, and multimodal agent tasks" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.06 -output = 0.24 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml b/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml deleted file mode 100644 index e93c385157..0000000000 --- a/providers/edenai/models/nebius/nvidia/Nemotron-3-Ultra-550b-a55b.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "nvidia/nemotron-3-ultra-550b-a55b" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1 -output = 3 - -[limit] -context = 1_048_576 diff --git a/providers/edenai/models/nebius/nvidia/nemotron-3-super-120b-a12b.toml b/providers/edenai/models/nebius/nvidia/nemotron-3-super-120b-a12b.toml deleted file mode 100644 index 19a51f2f4d..0000000000 --- a/providers/edenai/models/nebius/nvidia/nemotron-3-super-120b-a12b.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "nvidia/nemotron-3-super-120b-a12b" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 0.9 diff --git a/providers/edenai/models/nebius/openai/gpt-oss-120b.toml b/providers/edenai/models/nebius/openai/gpt-oss-120b.toml deleted file mode 100644 index 6165c4a61f..0000000000 --- a/providers/edenai/models/nebius/openai/gpt-oss-120b.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "openai/gpt-oss-120b" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 diff --git a/providers/edenai/models/nebius/openbmb/MiniCPM-V-4_5.toml b/providers/edenai/models/nebius/openbmb/MiniCPM-V-4_5.toml deleted file mode 100644 index c9b1994886..0000000000 --- a/providers/edenai/models/nebius/openbmb/MiniCPM-V-4_5.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "openbmb/MiniCPM-V-4_5" -description = "Multimodal model for analyzing text, images, documents, and rich media" -release_date = "2026-06-22" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = true -open_weights = false - -[cost] -input = 0.658 -output = 1.11 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/nebius/zai-org/GLM-5.1.toml b/providers/edenai/models/nebius/zai-org/GLM-5.1.toml deleted file mode 100644 index 2da445259b..0000000000 --- a/providers/edenai/models/nebius/zai-org/GLM-5.1.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "zhipuai/glm-5.1" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 1.4 -output = 4.4 - -[limit] -context = 202_752 diff --git a/providers/edenai/models/openai/gpt-3.5-turbo-0125.toml b/providers/edenai/models/openai/gpt-3.5-turbo-0125.toml deleted file mode 100644 index 6baa438e36..0000000000 --- a/providers/edenai/models/openai/gpt-3.5-turbo-0125.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "gpt-3.5-turbo-0125" -description = "Compact GPT model for low-latency assistance and high-volume workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.5 -output = 1.5 - -[limit] -context = 16_385 -output = 16_385 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-3.5-turbo-1106.toml b/providers/edenai/models/openai/gpt-3.5-turbo-1106.toml deleted file mode 100644 index 02b9995347..0000000000 --- a/providers/edenai/models/openai/gpt-3.5-turbo-1106.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "gpt-3.5-turbo-1106" -description = "Compact GPT model for low-latency assistance and high-volume workloads" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 1 -output = 2 - -[limit] -context = 16_385 -output = 16_385 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-3.5-turbo-16k.toml b/providers/edenai/models/openai/gpt-3.5-turbo-16k.toml deleted file mode 100644 index 4dbc8e92bd..0000000000 --- a/providers/edenai/models/openai/gpt-3.5-turbo-16k.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "gpt-3.5-turbo-16k" -description = "This model offers four times the context length of gpt-3.5-turbo, allowing it to support approximately 20 pages of text in a single request at a higher cost. Training data: up..." -release_date = "2023-08-28" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 3 -output = 4 - -[limit] -context = 16_385 -output = 16_385 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-3.5-turbo.toml b/providers/edenai/models/openai/gpt-3.5-turbo.toml deleted file mode 100644 index e6480830c0..0000000000 --- a/providers/edenai/models/openai/gpt-3.5-turbo.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-3.5-turbo" -release_date = "2023-05-28" -last_updated = "2026-08-01" -tool_call = true -structured_output = true - -[cost] -input = 0.5 -output = 1.5 diff --git a/providers/edenai/models/openai/gpt-4-0613.toml b/providers/edenai/models/openai/gpt-4-0613.toml deleted file mode 100644 index 4257776e30..0000000000 --- a/providers/edenai/models/openai/gpt-4-0613.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "gpt-4-0613" -description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" -release_date = "2026-06-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 30 -output = 60 - -[limit] -context = 8_192 -output = 8_192 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4-turbo-2024-04-09.toml b/providers/edenai/models/openai/gpt-4-turbo-2024-04-09.toml deleted file mode 100644 index 4e01abcb9a..0000000000 --- a/providers/edenai/models/openai/gpt-4-turbo-2024-04-09.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "gpt-4-turbo-2024-04-09" -description = "Compact GPT model for low-latency assistance and high-volume workloads" -release_date = "2024-04-09" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 10 -output = 30 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4-turbo.toml b/providers/edenai/models/openai/gpt-4-turbo.toml deleted file mode 100644 index 01f8a80dcf..0000000000 --- a/providers/edenai/models/openai/gpt-4-turbo.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-4-turbo" -release_date = "2024-04-09" -last_updated = "2026-08-01" -structured_output = true - -[cost] -input = 10 -output = 30 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4.1-2025-04-14.toml b/providers/edenai/models/openai/gpt-4.1-2025-04-14.toml deleted file mode 100644 index 7964002c7e..0000000000 --- a/providers/edenai/models/openai/gpt-4.1-2025-04-14.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-4.1-2025-04-14" -description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" -release_date = "2025-04-14" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 2 -output = 8 -cache_read = 0.5 - -[limit] -context = 1_047_576 -output = 1_047_576 - -[modalities] -input = ["image", "text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4.1-mini-2025-04-14.toml b/providers/edenai/models/openai/gpt-4.1-mini-2025-04-14.toml deleted file mode 100644 index c31d04b55f..0000000000 --- a/providers/edenai/models/openai/gpt-4.1-mini-2025-04-14.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-4.1-mini-2025-04-14" -description = "Compact GPT model for low-latency assistance and high-volume workloads" -release_date = "2025-04-14" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.4 -output = 1.6 -cache_read = 0.1 - -[limit] -context = 1_047_576 -output = 1_047_576 - -[modalities] -input = ["image", "text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4.1-mini.toml b/providers/edenai/models/openai/gpt-4.1-mini.toml deleted file mode 100644 index 536c61a87d..0000000000 --- a/providers/edenai/models/openai/gpt-4.1-mini.toml +++ /dev/null @@ -1,7 +0,0 @@ -base_model = "openai/gpt-4.1-mini" -last_updated = "2026-08-01" - -[cost] -input = 0.4 -output = 1.6 -cache_read = 0.1 diff --git a/providers/edenai/models/openai/gpt-4.1-nano-2025-04-14.toml b/providers/edenai/models/openai/gpt-4.1-nano-2025-04-14.toml deleted file mode 100644 index 67af045ec4..0000000000 --- a/providers/edenai/models/openai/gpt-4.1-nano-2025-04-14.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-4.1-nano-2025-04-14" -description = "Compact GPT model for low-latency assistance and high-volume workloads" -release_date = "2025-04-14" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.1 -output = 0.4 -cache_read = 0.025 - -[limit] -context = 1_047_576 -output = 1_047_576 - -[modalities] -input = ["image", "text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4.1-nano.toml b/providers/edenai/models/openai/gpt-4.1-nano.toml deleted file mode 100644 index 5af7475e1d..0000000000 --- a/providers/edenai/models/openai/gpt-4.1-nano.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-4.1-nano" -last_updated = "2026-08-01" - -[cost] -input = 0.1 -output = 0.4 -cache_read = 0.025 - -[modalities] -input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4.1.toml b/providers/edenai/models/openai/gpt-4.1.toml deleted file mode 100644 index 65c62d30c2..0000000000 --- a/providers/edenai/models/openai/gpt-4.1.toml +++ /dev/null @@ -1,7 +0,0 @@ -base_model = "openai/gpt-4.1" -last_updated = "2026-08-01" - -[cost] -input = 2 -output = 8 -cache_read = 0.5 diff --git a/providers/edenai/models/openai/gpt-4.toml b/providers/edenai/models/openai/gpt-4.toml deleted file mode 100644 index 6c51fb4e6f..0000000000 --- a/providers/edenai/models/openai/gpt-4.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/gpt-4" -release_date = "2023-05-28" -last_updated = "2026-08-01" -attachment = false -structured_output = true - -[cost] -input = 30 -output = 60 - -[limit] -context = 8_191 diff --git a/providers/edenai/models/openai/gpt-4o-2024-08-06.toml b/providers/edenai/models/openai/gpt-4o-2024-08-06.toml deleted file mode 100644 index 66e431ca19..0000000000 --- a/providers/edenai/models/openai/gpt-4o-2024-08-06.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-4o-2024-08-06" -release_date = "2024-11-20" -last_updated = "2026-08-01" - -[cost] -input = 2.5 -output = 10 -cache_read = 1.25 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4o-2024-11-20.toml b/providers/edenai/models/openai/gpt-4o-2024-11-20.toml deleted file mode 100644 index 646f161653..0000000000 --- a/providers/edenai/models/openai/gpt-4o-2024-11-20.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-4o-2024-11-20" -last_updated = "2026-08-01" - -[cost] -input = 2.5 -output = 10 -cache_read = 1.25 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-4o-mini-2024-07-18.toml b/providers/edenai/models/openai/gpt-4o-mini-2024-07-18.toml deleted file mode 100644 index 08169606b5..0000000000 --- a/providers/edenai/models/openai/gpt-4o-mini-2024-07-18.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-4o-mini-2024-07-18" -description = "GPT-4o mini is OpenAI's newest model after [GPT-4 Omni](/models/openai/gpt-4o), supporting both text and image inputs with text outputs. As their most advanced small model, it is many multiples more affordable..." -release_date = "2024-07-18" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.15 -output = 0.6 -cache_read = 0.075 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4o-mini-search-preview.toml b/providers/edenai/models/openai/gpt-4o-mini-search-preview.toml deleted file mode 100644 index d7f92962b3..0000000000 --- a/providers/edenai/models/openai/gpt-4o-mini-search-preview.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-4o-mini-search-preview" -description = "Compact GPT model for low-latency assistance and high-volume workloads" -release_date = "2025-03-12" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.15 -output = 0.6 -cache_read = 0.075 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4o-mini.toml b/providers/edenai/models/openai/gpt-4o-mini.toml deleted file mode 100644 index 940dd1f5c5..0000000000 --- a/providers/edenai/models/openai/gpt-4o-mini.toml +++ /dev/null @@ -1,7 +0,0 @@ -base_model = "openai/gpt-4o-mini" -last_updated = "2026-08-01" - -[cost] -input = 0.15 -output = 0.6 -cache_read = 0.075 diff --git a/providers/edenai/models/openai/gpt-4o-search-preview.toml b/providers/edenai/models/openai/gpt-4o-search-preview.toml deleted file mode 100644 index 170b368127..0000000000 --- a/providers/edenai/models/openai/gpt-4o-search-preview.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-4o-search-preview" -description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" -release_date = "2025-03-12" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 2.5 -output = 10 -cache_read = 1.25 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-4o.toml b/providers/edenai/models/openai/gpt-4o.toml deleted file mode 100644 index bca3eabd20..0000000000 --- a/providers/edenai/models/openai/gpt-4o.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "openai/gpt-4o" -release_date = "2024-11-20" -last_updated = "2026-08-01" - -[cost] -input = 2.5 -output = 10 -cache_read = 1.25 diff --git a/providers/edenai/models/openai/gpt-5-2025-08-07.toml b/providers/edenai/models/openai/gpt-5-2025-08-07.toml deleted file mode 100644 index 0478ba6feb..0000000000 --- a/providers/edenai/models/openai/gpt-5-2025-08-07.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5-2025-08-07" -description = "GPT-5 is OpenAI’s most advanced model, offering major improvements in reasoning, code quality, and user experience. It is optimized for complex tasks that require step-by-step reasoning, instruction following, and accuracy..." -release_date = "2025-08-07" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-mini-2025-08-07.toml b/providers/edenai/models/openai/gpt-5-mini-2025-08-07.toml deleted file mode 100644 index a1ec8993ef..0000000000 --- a/providers/edenai/models/openai/gpt-5-mini-2025-08-07.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5-mini-2025-08-07" -description = "GPT-5 Mini is a compact version of GPT-5, designed to handle lighter-weight reasoning tasks. It provides the same instruction-following and safety-tuning benefits as GPT-5, but with reduced latency and cost...." -release_date = "2025-08-07" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.25 -output = 2 -cache_read = 0.025 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-mini.toml b/providers/edenai/models/openai/gpt-5-mini.toml deleted file mode 100644 index f46e1a1adc..0000000000 --- a/providers/edenai/models/openai/gpt-5-mini.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-5-mini" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.25 -output = 2 -cache_read = 0.025 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5-nano-2025-08-07.toml b/providers/edenai/models/openai/gpt-5-nano-2025-08-07.toml deleted file mode 100644 index b822f4b166..0000000000 --- a/providers/edenai/models/openai/gpt-5-nano-2025-08-07.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5-nano-2025-08-07" -description = "GPT-5-Nano is the smallest and fastest variant in the GPT-5 system, optimized for developer tools, rapid interactions, and ultra-low latency environments. While limited in reasoning depth compared to its larger..." -release_date = "2025-08-07" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.05 -output = 0.4 -cache_read = 0.005 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-nano.toml b/providers/edenai/models/openai/gpt-5-nano.toml deleted file mode 100644 index 7e985eef52..0000000000 --- a/providers/edenai/models/openai/gpt-5-nano.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-5-nano" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.05 -output = 0.4 -cache_read = 0.005 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5-pro-2025-10-06.toml b/providers/edenai/models/openai/gpt-5-pro-2025-10-06.toml deleted file mode 100644 index 411b06959d..0000000000 --- a/providers/edenai/models/openai/gpt-5-pro-2025-10-06.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-5-pro-2025-10-06" -description = "Frontier GPT model for professional reasoning, coding, and multimodal work" -release_date = "2025-10-06" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 15 -output = 120 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["image", "text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-pro.toml b/providers/edenai/models/openai/gpt-5-pro.toml deleted file mode 100644 index 0e876c68a5..0000000000 --- a/providers/edenai/models/openai/gpt-5-pro.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-5-pro" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 15 -output = 120 - -[modalities] -input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5-search-api-2025-10-14.toml b/providers/edenai/models/openai/gpt-5-search-api-2025-10-14.toml deleted file mode 100644 index 60d50b6e69..0000000000 --- a/providers/edenai/models/openai/gpt-5-search-api-2025-10-14.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-5-search-api-2025-10-14" -description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" -release_date = "2026-02-13" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[limit] -context = 272_000 -output = 272_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5-search-api.toml b/providers/edenai/models/openai/gpt-5-search-api.toml deleted file mode 100644 index a6759a597d..0000000000 --- a/providers/edenai/models/openai/gpt-5-search-api.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-5-search-api" -description = "GPT model for general reasoning, writing, coding, and tool-assisted tasks" -release_date = "2026-02-13" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[limit] -context = 272_000 -output = 272_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.1-2025-11-13.toml b/providers/edenai/models/openai/gpt-5.1-2025-11-13.toml deleted file mode 100644 index 5619afcaa2..0000000000 --- a/providers/edenai/models/openai/gpt-5.1-2025-11-13.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5.1-2025-11-13" -description = "GPT-5.1 is the latest frontier-grade model in the GPT-5 series, offering stronger general-purpose reasoning, improved instruction adherence, and a more natural conversational style compared to GPT-5. It uses adaptive reasoning..." -release_date = "2025-11-13" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["image", "text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.1.toml b/providers/edenai/models/openai/gpt-5.1.toml deleted file mode 100644 index 958369506d..0000000000 --- a/providers/edenai/models/openai/gpt-5.1.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-5.1" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[modalities] -input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.2-2025-12-11.toml b/providers/edenai/models/openai/gpt-5.2-2025-12-11.toml deleted file mode 100644 index a6a4894daf..0000000000 --- a/providers/edenai/models/openai/gpt-5.2-2025-12-11.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5.2-2025-12-11" -description = "GPT-5.2 is the latest frontier-grade model in the GPT-5 series, offering stronger agentic and long context perfomance compared to GPT-5.1. It uses adaptive reasoning to allocate computation dynamically, responding quickly..." -release_date = "2025-12-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.75 -output = 14 -cache_read = 0.175 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.2-chat-latest.toml b/providers/edenai/models/openai/gpt-5.2-chat-latest.toml deleted file mode 100644 index b13930282f..0000000000 --- a/providers/edenai/models/openai/gpt-5.2-chat-latest.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/gpt-5.2-chat-latest" -release_date = "2025-12-10" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.75 -output = 14 -cache_read = 0.175 - -[modalities] -input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.2-pro-2025-12-11.toml b/providers/edenai/models/openai/gpt-5.2-pro-2025-12-11.toml deleted file mode 100644 index d833d6f177..0000000000 --- a/providers/edenai/models/openai/gpt-5.2-pro-2025-12-11.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "gpt-5.2-pro-2025-12-11" -description = "Frontier GPT model for professional reasoning, coding, and multimodal work" -release_date = "2025-12-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 21 -output = 168 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["image", "text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.2-pro.toml b/providers/edenai/models/openai/gpt-5.2-pro.toml deleted file mode 100644 index 82dfa24f94..0000000000 --- a/providers/edenai/models/openai/gpt-5.2-pro.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/gpt-5.2-pro" -release_date = "2025-12-10" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 21 -output = 168 - -[modalities] -input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.2.toml b/providers/edenai/models/openai/gpt-5.2.toml deleted file mode 100644 index a8cd82c20b..0000000000 --- a/providers/edenai/models/openai/gpt-5.2.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/gpt-5.2" -release_date = "2025-12-10" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.75 -output = 14 -cache_read = 0.175 - -[modalities] -input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.3-chat-latest.toml b/providers/edenai/models/openai/gpt-5.3-chat-latest.toml deleted file mode 100644 index e470d48e49..0000000000 --- a/providers/edenai/models/openai/gpt-5.3-chat-latest.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/gpt-5.3-chat-latest" -last_updated = "2026-08-01" -reasoning = true -reasoning_options = [] - -[cost] -input = 1.75 -output = 14 -cache_read = 0.175 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.3-codex.toml b/providers/edenai/models/openai/gpt-5.3-codex.toml deleted file mode 100644 index ee501d1d8e..0000000000 --- a/providers/edenai/models/openai/gpt-5.3-codex.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-5.3-codex" -release_date = "2026-02-24" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.75 -output = 14 -cache_read = 0.175 diff --git a/providers/edenai/models/openai/gpt-5.4-2026-03-05.toml b/providers/edenai/models/openai/gpt-5.4-2026-03-05.toml deleted file mode 100644 index aece63c3c1..0000000000 --- a/providers/edenai/models/openai/gpt-5.4-2026-03-05.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5.4-2026-03-05" -description = "GPT-5.4 is OpenAI’s latest frontier model, unifying the Codex and GPT lines into a single system. It features a 1M+ token context window (922K input, 128K output) with support for..." -release_date = "2026-03-05" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2.5 -output = 15 -cache_read = 0.25 - -[limit] -context = 1_050_000 -output = 1_050_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.4-mini-2026-03-17.toml b/providers/edenai/models/openai/gpt-5.4-mini-2026-03-17.toml deleted file mode 100644 index 828703c8d0..0000000000 --- a/providers/edenai/models/openai/gpt-5.4-mini-2026-03-17.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5.4-mini-2026-03-17" -description = "GPT-5.4 mini brings the core capabilities of GPT-5.4 to a faster, more efficient model optimized for high-throughput workloads. It supports text and image inputs with strong performance across reasoning, coding,..." -release_date = "2026-03-17" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.75 -output = 4.5 -cache_read = 0.075 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.4-mini.toml b/providers/edenai/models/openai/gpt-5.4-mini.toml deleted file mode 100644 index 38a3b6939d..0000000000 --- a/providers/edenai/models/openai/gpt-5.4-mini.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-5.4-mini" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.75 -output = 4.5 -cache_read = 0.075 - -[modalities] -input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.4-nano-2026-03-17.toml b/providers/edenai/models/openai/gpt-5.4-nano-2026-03-17.toml deleted file mode 100644 index 46715032a8..0000000000 --- a/providers/edenai/models/openai/gpt-5.4-nano-2026-03-17.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5.4-nano-2026-03-17" -description = "GPT-5.4 nano is the most lightweight and cost-efficient variant of the GPT-5.4 family, optimized for speed-critical and high-volume tasks. It supports text and image inputs and is designed for low-latency..." -release_date = "2026-03-17" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 1.25 -cache_read = 0.02 - -[limit] -context = 400_000 -output = 400_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.4-nano.toml b/providers/edenai/models/openai/gpt-5.4-nano.toml deleted file mode 100644 index ece5341e1a..0000000000 --- a/providers/edenai/models/openai/gpt-5.4-nano.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-5.4-nano" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.2 -output = 1.25 -cache_read = 0.02 - -[modalities] -input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/gpt-5.4-pro-2026-03-05.toml b/providers/edenai/models/openai/gpt-5.4-pro-2026-03-05.toml deleted file mode 100644 index 9e44bc1f86..0000000000 --- a/providers/edenai/models/openai/gpt-5.4-pro-2026-03-05.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5.4-pro-2026-03-05" -description = "GPT-5.4 Pro is OpenAI's most advanced model, building on GPT-5.4's unified architecture with enhanced reasoning capabilities for complex, high-stakes tasks. It features a 1M+ token context window (922K input, 128K..." -release_date = "2026-03-05" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 30 -output = 180 -cache_read = 3 - -[limit] -context = 1_050_000 -output = 1_050_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.4-pro.toml b/providers/edenai/models/openai/gpt-5.4-pro.toml deleted file mode 100644 index 58ad015a55..0000000000 --- a/providers/edenai/models/openai/gpt-5.4-pro.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "openai/gpt-5.4-pro" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 30 -output = 180 -cache_read = 3 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/gpt-5.4.toml b/providers/edenai/models/openai/gpt-5.4.toml deleted file mode 100644 index 760560b9b7..0000000000 --- a/providers/edenai/models/openai/gpt-5.4.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "openai/gpt-5.4" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2.5 -output = 15 -cache_read = 0.25 diff --git a/providers/edenai/models/openai/gpt-5.5-2026-04-23.toml b/providers/edenai/models/openai/gpt-5.5-2026-04-23.toml deleted file mode 100644 index ae1f73db99..0000000000 --- a/providers/edenai/models/openai/gpt-5.5-2026-04-23.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5.5-2026-04-23" -description = "GPT-5.5 is OpenAI’s frontier model designed for complex professional workloads, building on GPT-5.4 with stronger reasoning, higher reliability, and improved token efficiency on hard tasks. It features a 1M+ token..." -release_date = "2026-04-24" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 5 -output = 30 -cache_read = 0.5 - -[limit] -context = 1_050_000 -output = 1_050_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.5-pro-2026-04-23.toml b/providers/edenai/models/openai/gpt-5.5-pro-2026-04-23.toml deleted file mode 100644 index 1cca6848a7..0000000000 --- a/providers/edenai/models/openai/gpt-5.5-pro-2026-04-23.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "gpt-5.5-pro-2026-04-23" -description = "GPT-5.5 Pro is OpenAI’s high-capability model optimized for deep reasoning and accuracy on complex, high-stakes workloads. It features a 1M+ token context window (922K input, 128K output) with support for..." -release_date = "2026-04-24" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 30 -output = 180 -cache_read = 3 - -[limit] -context = 1_050_000 -output = 1_050_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/openai/gpt-5.5-pro.toml b/providers/edenai/models/openai/gpt-5.5-pro.toml deleted file mode 100644 index 48eea8ad2d..0000000000 --- a/providers/edenai/models/openai/gpt-5.5-pro.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-5.5-pro" -release_date = "2026-04-24" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 30 -output = 180 -cache_read = 3 diff --git a/providers/edenai/models/openai/gpt-5.5.toml b/providers/edenai/models/openai/gpt-5.5.toml deleted file mode 100644 index fe70f98bba..0000000000 --- a/providers/edenai/models/openai/gpt-5.5.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-5.5" -release_date = "2026-04-24" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 5 -output = 30 -cache_read = 0.5 diff --git a/providers/edenai/models/openai/gpt-5.6-luna.toml b/providers/edenai/models/openai/gpt-5.6-luna.toml deleted file mode 100644 index e592e6fc04..0000000000 --- a/providers/edenai/models/openai/gpt-5.6-luna.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-5.6-luna" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.2 -output = 1.2 -cache_read = 0.02 -cache_write = 0.25 diff --git a/providers/edenai/models/openai/gpt-5.6-sol.toml b/providers/edenai/models/openai/gpt-5.6-sol.toml deleted file mode 100644 index 555f893858..0000000000 --- a/providers/edenai/models/openai/gpt-5.6-sol.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-5.6-sol" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 5 -output = 30 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/openai/gpt-5.6-terra.toml b/providers/edenai/models/openai/gpt-5.6-terra.toml deleted file mode 100644 index e52ac6a6ba..0000000000 --- a/providers/edenai/models/openai/gpt-5.6-terra.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/gpt-5.6-terra" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2 -output = 12 -cache_read = 0.2 -cache_write = 2.5 diff --git a/providers/edenai/models/openai/gpt-5.toml b/providers/edenai/models/openai/gpt-5.toml deleted file mode 100644 index 4368bfa591..0000000000 --- a/providers/edenai/models/openai/gpt-5.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/gpt-5" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -cache_read = 0.125 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/o1-2024-12-17.toml b/providers/edenai/models/openai/o1-2024-12-17.toml deleted file mode 100644 index 1f3513ae66..0000000000 --- a/providers/edenai/models/openai/o1-2024-12-17.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "o1-2024-12-17" -description = "O-series reasoning model for hard analysis, math, coding, and planning" -release_date = "2024-12-17" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 15 -output = 60 -cache_read = 7.5 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/o1-pro-2025-03-19.toml b/providers/edenai/models/openai/o1-pro-2025-03-19.toml deleted file mode 100644 index 521d2e3ca2..0000000000 --- a/providers/edenai/models/openai/o1-pro-2025-03-19.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "o1-pro-2025-03-19" -description = "O-series reasoning model for hard analysis, math, coding, and planning" -release_date = "2025-03-19" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 150 -output = 600 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/o1-pro.toml b/providers/edenai/models/openai/o1-pro.toml deleted file mode 100644 index 966705cd19..0000000000 --- a/providers/edenai/models/openai/o1-pro.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/o1-pro" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 150 -output = 600 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/openai/o1.toml b/providers/edenai/models/openai/o1.toml deleted file mode 100644 index 44dcb2a836..0000000000 --- a/providers/edenai/models/openai/o1.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "openai/o1" -release_date = "2024-12-17" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 15 -output = 60 -cache_read = 7.5 diff --git a/providers/edenai/models/openai/o3-2025-04-16.toml b/providers/edenai/models/openai/o3-2025-04-16.toml deleted file mode 100644 index 5ba5101a80..0000000000 --- a/providers/edenai/models/openai/o3-2025-04-16.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "o3-2025-04-16" -description = "O-series reasoning model for hard analysis, math, coding, and planning" -release_date = "2025-04-16" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2 -output = 8 -cache_read = 0.5 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["image", "text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/o3-deep-research-2025-06-26.toml b/providers/edenai/models/openai/o3-deep-research-2025-06-26.toml deleted file mode 100644 index e352cec96d..0000000000 --- a/providers/edenai/models/openai/o3-deep-research-2025-06-26.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "o3-deep-research-2025-06-26" -description = "Research model for long-horizon investigation, synthesis, and analytical reports" -release_date = "2025-10-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 10 -output = 40 -cache_read = 2.5 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["image", "text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/o3-deep-research.toml b/providers/edenai/models/openai/o3-deep-research.toml deleted file mode 100644 index 820fa1772d..0000000000 --- a/providers/edenai/models/openai/o3-deep-research.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "openai/o3-deep-research" -release_date = "2025-10-10" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 10 -output = 40 -cache_read = 2.5 - -[modalities] -input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/openai/o3-mini-2025-01-31.toml b/providers/edenai/models/openai/o3-mini-2025-01-31.toml deleted file mode 100644 index 939f4602e7..0000000000 --- a/providers/edenai/models/openai/o3-mini-2025-01-31.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "o3-mini-2025-01-31" -description = "OpenAI o3-mini is a cost-efficient language model optimized for STEM reasoning tasks, particularly excelling in science, mathematics, and coding. This model supports the `reasoning_effort` parameter, which can be set to..." -release_date = "2025-01-31" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.1 -output = 4.4 -cache_read = 0.55 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/o3-mini.toml b/providers/edenai/models/openai/o3-mini.toml deleted file mode 100644 index 597097a822..0000000000 --- a/providers/edenai/models/openai/o3-mini.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "openai/o3-mini" -release_date = "2025-01-31" -last_updated = "2026-08-01" -attachment = true -reasoning_options = [] - -[cost] -input = 1.1 -output = 4.4 -cache_read = 0.55 - -[modalities] -input = ["text", "pdf"] diff --git a/providers/edenai/models/openai/o3-pro-2025-06-10.toml b/providers/edenai/models/openai/o3-pro-2025-06-10.toml deleted file mode 100644 index 1183d022d3..0000000000 --- a/providers/edenai/models/openai/o3-pro-2025-06-10.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "o3-pro-2025-06-10" -description = "O-series reasoning model for hard analysis, math, coding, and planning" -release_date = "2025-06-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 20 -output = 80 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text", "pdf", "image"] -output = ["text"] diff --git a/providers/edenai/models/openai/o3-pro.toml b/providers/edenai/models/openai/o3-pro.toml deleted file mode 100644 index 1a992ddf5d..0000000000 --- a/providers/edenai/models/openai/o3-pro.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/o3-pro" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 20 -output = 80 - -[modalities] -input = ["text", "pdf", "image"] diff --git a/providers/edenai/models/openai/o3.toml b/providers/edenai/models/openai/o3.toml deleted file mode 100644 index 2baadbc7c0..0000000000 --- a/providers/edenai/models/openai/o3.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "openai/o3" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2 -output = 8 -cache_read = 0.5 diff --git a/providers/edenai/models/openai/o4-mini-2025-04-16.toml b/providers/edenai/models/openai/o4-mini-2025-04-16.toml deleted file mode 100644 index f83fdd5137..0000000000 --- a/providers/edenai/models/openai/o4-mini-2025-04-16.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "o4-mini-2025-04-16" -description = "O-series reasoning model for hard analysis, math, coding, and planning" -release_date = "2025-04-16" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.1 -output = 4.4 -cache_read = 0.275 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["image", "text", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/openai/o4-mini-deep-research-2025-06-26.toml b/providers/edenai/models/openai/o4-mini-deep-research-2025-06-26.toml deleted file mode 100644 index dc30f25cde..0000000000 --- a/providers/edenai/models/openai/o4-mini-deep-research-2025-06-26.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "o4-mini-deep-research-2025-06-26" -description = "Research model for long-horizon investigation, synthesis, and analytical reports" -release_date = "2025-10-10" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 2 -output = 8 -cache_read = 0.5 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/openai/o4-mini-deep-research.toml b/providers/edenai/models/openai/o4-mini-deep-research.toml deleted file mode 100644 index 7a77acef91..0000000000 --- a/providers/edenai/models/openai/o4-mini-deep-research.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "openai/o4-mini-deep-research" -release_date = "2025-10-10" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 2 -output = 8 -cache_read = 0.5 - -[modalities] -input = ["pdf", "image", "text"] diff --git a/providers/edenai/models/openai/o4-mini.toml b/providers/edenai/models/openai/o4-mini.toml deleted file mode 100644 index 62c3e88a9d..0000000000 --- a/providers/edenai/models/openai/o4-mini.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "openai/o4-mini" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.1 -output = 4.4 -cache_read = 0.275 - -[modalities] -input = ["image", "text", "pdf"] diff --git a/providers/edenai/models/ovhcloud/Meta-Llama-3_3-70B-Instruct.toml b/providers/edenai/models/ovhcloud/Meta-Llama-3_3-70B-Instruct.toml deleted file mode 100644 index c2db95e261..0000000000 --- a/providers/edenai/models/ovhcloud/Meta-Llama-3_3-70B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Meta-Llama-3_3-70B-Instruct" -description = "Open Llama instruction model for multilingual chat, reasoning, and coding" -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.74 -output = 0.74 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Mistral-7B-Instruct-v0.3.toml b/providers/edenai/models/ovhcloud/Mistral-7B-Instruct-v0.3.toml deleted file mode 100644 index 7adb744951..0000000000 --- a/providers/edenai/models/ovhcloud/Mistral-7B-Instruct-v0.3.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Mistral-7B-Instruct-v0.3" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.11 -output = 0.11 - -[limit] -context = 65_536 -output = 65_536 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Mistral-Nemo-Instruct-2407.toml b/providers/edenai/models/ovhcloud/Mistral-Nemo-Instruct-2407.toml deleted file mode 100644 index 7d7352337a..0000000000 --- a/providers/edenai/models/ovhcloud/Mistral-Nemo-Instruct-2407.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Mistral-Nemo-Instruct-2407" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.14 -output = 0.14 - -[limit] -context = 65_536 -output = 65_536 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Mistral-Small-3.2-24B-Instruct-2506.toml b/providers/edenai/models/ovhcloud/Mistral-Small-3.2-24B-Instruct-2506.toml deleted file mode 100644 index 5a73a2b0ae..0000000000 --- a/providers/edenai/models/ovhcloud/Mistral-Small-3.2-24B-Instruct-2506.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Mistral-Small-3.2-24B-Instruct-2506" -description = "Efficient Mistral model for fast chat, extraction, and production assistants" -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.1 -output = 0.31 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Qwen2.5-VL-72B-Instruct.toml b/providers/edenai/models/ovhcloud/Qwen2.5-VL-72B-Instruct.toml deleted file mode 100644 index ec7423c654..0000000000 --- a/providers/edenai/models/ovhcloud/Qwen2.5-VL-72B-Instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Qwen2.5-VL-72B-Instruct" -description = "Multimodal model for analyzing text, images, documents, and rich media" -release_date = "2026-01-27" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = true -open_weights = false - -[cost] -input = 1.01 -output = 1.01 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/ovhcloud/Qwen3-32B.toml b/providers/edenai/models/ovhcloud/Qwen3-32B.toml deleted file mode 100644 index 418c87168c..0000000000 --- a/providers/edenai/models/ovhcloud/Qwen3-32B.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3-32b" -release_date = "2026-01-27" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.09 -output = 0.25 - -[limit] -context = 32_768 diff --git a/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml b/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml deleted file mode 100644 index 0000d8ca76..0000000000 --- a/providers/edenai/models/ovhcloud/Qwen3-Coder-30B-A3B-Instruct.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "alibaba/qwen3-coder-30b-a3b-instruct" -release_date = "2026-06-05" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.07 -output = 0.26 diff --git a/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml b/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml deleted file mode 100644 index 0e3488dd40..0000000000 --- a/providers/edenai/models/ovhcloud/Qwen3.5-397B-A17B.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "alibaba/qwen3.5-397b-a17b" -release_date = "2026-06-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.71 -output = 4.25 - -[modalities] -input = ["text"] diff --git a/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml b/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml deleted file mode 100644 index 6b692f08e4..0000000000 --- a/providers/edenai/models/ovhcloud/Qwen3.5-9B.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "alibaba/qwen3.5-9b" -release_date = "2026-06-05" -last_updated = "2026-08-01" -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.12 -output = 0.18 diff --git a/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml b/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml deleted file mode 100644 index 5ea1aef47b..0000000000 --- a/providers/edenai/models/ovhcloud/Qwen3.6-27B.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "alibaba/qwen3.6-27b" -release_date = "2026-06-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.47 -output = 3.19 - -[modalities] -input = ["text"] diff --git a/providers/edenai/models/ovhcloud/gpt-oss-120b.toml b/providers/edenai/models/ovhcloud/gpt-oss-120b.toml deleted file mode 100644 index 187df93a3d..0000000000 --- a/providers/edenai/models/ovhcloud/gpt-oss-120b.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-oss-120b" -release_date = "2026-01-27" -last_updated = "2026-08-01" -tool_call = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.09 -output = 0.47 diff --git a/providers/edenai/models/ovhcloud/gpt-oss-20b.toml b/providers/edenai/models/ovhcloud/gpt-oss-20b.toml deleted file mode 100644 index 4c4533d332..0000000000 --- a/providers/edenai/models/ovhcloud/gpt-oss-20b.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "openai/gpt-oss-20b" -release_date = "2026-01-27" -last_updated = "2026-08-01" -tool_call = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.05 -output = 0.18 diff --git a/providers/edenai/models/perplexityai/sonar-deep-research.toml b/providers/edenai/models/perplexityai/sonar-deep-research.toml deleted file mode 100644 index 233b2c9379..0000000000 --- a/providers/edenai/models/perplexityai/sonar-deep-research.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "sonar-deep-research" -description = "Sonar Deep Research is a research-focused model designed for multi-step retrieval, synthesis, and reasoning across complex topics. It autonomously searches, reads, and evaluates sources, refining its approach as it gathers..." -release_date = "2025-03-07" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 2 -output = 8 -reasoning = 3 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/perplexityai/sonar-pro.toml b/providers/edenai/models/perplexityai/sonar-pro.toml deleted file mode 100644 index cb2865c725..0000000000 --- a/providers/edenai/models/perplexityai/sonar-pro.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "perplexity/sonar-pro" -release_date = "2025-03-07" -last_updated = "2026-08-01" -structured_output = false - -[cost] -input = 3 -output = 15 diff --git a/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml b/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml deleted file mode 100644 index c29f60460b..0000000000 --- a/providers/edenai/models/perplexityai/sonar-reasoning-pro.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "perplexity/sonar-reasoning-pro" -release_date = "2025-03-07" -last_updated = "2026-08-01" -structured_output = false -reasoning_options = [] - -[cost] -input = 2 -output = 8 diff --git a/providers/edenai/models/perplexityai/sonar.toml b/providers/edenai/models/perplexityai/sonar.toml deleted file mode 100644 index 40c9d2d531..0000000000 --- a/providers/edenai/models/perplexityai/sonar.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "perplexity/sonar" -release_date = "2025-01-27" -last_updated = "2026-08-01" -attachment = true -structured_output = false - -[cost] -input = 1 -output = 1 - -[limit] -context = 127_072 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/qwen/deepseek-v3.2.toml b/providers/edenai/models/qwen/deepseek-v3.2.toml deleted file mode 100644 index 95a0e542e4..0000000000 --- a/providers/edenai/models/qwen/deepseek-v3.2.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "deepseek-v3.2" -description = "DeepSeek-V3.2 is the official release of a model that incorporates DeepSeek Sparse Attention—a sparse attention mechanism. It’s also the first model launched by DeepSeek that integrates reasoning into tool usage, supporting both reasoning-enabled and non-reasoning tool calls." -release_date = "2025-12-01" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3705 -output = 1.1115 -cache_read = 0.0741 -cache_write = 0.46345 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/deepseek-v4-flash.toml b/providers/edenai/models/qwen/deepseek-v4-flash.toml deleted file mode 100644 index d970f13951..0000000000 --- a/providers/edenai/models/qwen/deepseek-v4-flash.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "deepseek/deepseek-v4-flash" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.13 -output = 0.26 -cache_read = 0.026 diff --git a/providers/edenai/models/qwen/deepseek-v4-pro.toml b/providers/edenai/models/qwen/deepseek-v4-pro.toml deleted file mode 100644 index 7b6c220485..0000000000 --- a/providers/edenai/models/qwen/deepseek-v4-pro.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "deepseek/deepseek-v4-pro" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 1.56 -output = 3.12 -cache_read = 0.13 diff --git a/providers/edenai/models/qwen/glm-5.1.toml b/providers/edenai/models/qwen/glm-5.1.toml deleted file mode 100644 index 4d7c22e272..0000000000 --- a/providers/edenai/models/qwen/glm-5.1.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "zhipuai/glm-5.1" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.91 -output = 2.86 -cache_read = 0.169 - -[limit] -context = 202_745 diff --git a/providers/edenai/models/qwen/glm-5.2-fast-preview.toml b/providers/edenai/models/qwen/glm-5.2-fast-preview.toml deleted file mode 100644 index 22149b72b3..0000000000 --- a/providers/edenai/models/qwen/glm-5.2-fast-preview.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "glm-5.2-fast-preview" -description = "GLM-5.2-Fast-Preview is the high-speed variant of Zhipu AI's GLM-5.2, with 1M context and capabilities on par with the standard version. Inference-optimized to deliver 1.5–2× the output TPS, it fits latency-sensitive use cases such as real-time chat, multi-turn agents, and streaming code generation." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 1.82 -output = 5.72 -cache_read = 0.364 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/glm-5.2.toml b/providers/edenai/models/qwen/glm-5.2.toml deleted file mode 100644 index 0268f51187..0000000000 --- a/providers/edenai/models/qwen/glm-5.2.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "zhipuai/glm-5.2" -release_date = "2026-06-16" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.91 -output = 2.86 -cache_read = 0.182 - -[limit] -context = 1_048_576 diff --git a/providers/edenai/models/qwen/kimi-k2.7-code.toml b/providers/edenai/models/qwen/kimi-k2.7-code.toml deleted file mode 100644 index 4a9396b3ef..0000000000 --- a/providers/edenai/models/qwen/kimi-k2.7-code.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "moonshotai/kimi-k2.7-code" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6175 -output = 2.6 -cache_read = 0.1235 diff --git a/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml b/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml deleted file mode 100644 index d4c819b361..0000000000 --- a/providers/edenai/models/qwen/qwen-flash-2025-07-28.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen-flash-2025-07-28" -description = "The Qwen3 Flash model (snapshot 2025-07-28) offers a powerful fusion of thinking and non-thinking modes with dynamic in-conversation switching, excelling in complex reasoning while showing significant gains in instruction following and text comprehension. It supports a 1M context length and is billed on a tiered model corresponding to context usage." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.0325 -output = 0.26 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-flash-character.toml b/providers/edenai/models/qwen/qwen-flash-character.toml deleted file mode 100644 index 64b89cee5c..0000000000 --- a/providers/edenai/models/qwen/qwen-flash-character.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen-flash-character" -description = "The Qwen Role-Playing Model Series is specifically optimized for muti-language anthropomorphic interaction scenarios. It demonstrates advanced capabilities in character consistency maintenance, context-aware dialogue progression, and empathetic engagement, enabling precise personalized character embodiment. This version significantly enhances Japanese linguistic localization (including dialects and honorifics), human-like role-playing authenticity, narrative coherence control, and scenario-based cognitive intelligence." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.0325 -output = 0.26 -cache_read = 0.0065 - -[limit] -context = 8_192 -output = 8_192 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-flash.toml b/providers/edenai/models/qwen/qwen-flash.toml deleted file mode 100644 index 901f6ce4b4..0000000000 --- a/providers/edenai/models/qwen/qwen-flash.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen-flash" -release_date = "2026-07-30" -last_updated = "2026-08-01" -tool_call = false -structured_output = true -reasoning_options = [] - -[cost] -input = 0.0325 -output = 0.26 -cache_read = 0.0065 -cache_write = 0.04095 diff --git a/providers/edenai/models/qwen/qwen-max.toml b/providers/edenai/models/qwen/qwen-max.toml deleted file mode 100644 index 661c95d4a5..0000000000 --- a/providers/edenai/models/qwen/qwen-max.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "alibaba/qwen-max" -release_date = "2026-07-30" -last_updated = "2026-08-01" -tool_call = false -structured_output = true - -[cost] -input = 1.04 -output = 4.16 -cache_read = 0.208 diff --git a/providers/edenai/models/qwen/qwen-mt-flash.toml b/providers/edenai/models/qwen/qwen-mt-flash.toml deleted file mode 100644 index 23baf9d73f..0000000000 --- a/providers/edenai/models/qwen/qwen-mt-flash.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen-mt-flash" -description = "Qwen-MT-Flash, a large language model from the Qwen series, has been fully upgraded with the Qwen 3 architecture for significantly enhanced performance and translation quality. It provides rapid, cost-effective translation across 92 languages, while supporting advanced features such as terminology intervention, format preservation, and domain-specific adaptation. It is the ideal choice for applications requiring a powerful balance of speed, quality, and cost." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.104 -output = 0.3185 - -[limit] -context = 16_384 -output = 16_384 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-mt-lite.toml b/providers/edenai/models/qwen/qwen-mt-lite.toml deleted file mode 100644 index 2461e8b68b..0000000000 --- a/providers/edenai/models/qwen/qwen-mt-lite.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen-mt-lite" -description = "Qwen-MT-Lite is a large language model of the Qwen model series that specializes in multi-lingual translation. It provides high-quality and rapid translation services across 32 languages at a cost-effective price. It offers features such as terminology intervention, format preservation, and domain-specific translation to cater to the diverse needs of various applications, ensuring both efficiency and performance." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.078 -output = 0.234 - -[limit] -context = 16_384 -output = 16_384 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-mt-plus.toml b/providers/edenai/models/qwen/qwen-mt-plus.toml deleted file mode 100644 index 4e5b909506..0000000000 --- a/providers/edenai/models/qwen/qwen-mt-plus.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen-mt-plus" -description = "Qwen-MT-Plus, the flagship translation model from our Qwen series, is now fully upgraded with the Qwen3 architecture. It supports 92 languages and delivers exceptionally accurate and natural-sounding translations. Its advanced capabilities in contextual understanding, terminology control, and format preservation make it a superior choice over traditional models, especially for specialized domains." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 1.599 -output = 4.7905 - -[limit] -context = 4_096 -output = 4_096 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-mt-turbo.toml b/providers/edenai/models/qwen/qwen-mt-turbo.toml deleted file mode 100644 index c3abe4b2b9..0000000000 --- a/providers/edenai/models/qwen/qwen-mt-turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen-mt-turbo" -description = "Qwen-MT-Turbo is a large language model within the Qwen model series that specializes in multi-lingual translation. It provides high-quality and rapid translation services across 92 languages at a cost-effective price point. It also offers features such as terminology intervention, format preservation, and domain-specific translation to cater to the diverse needs of various applications, ensuring both efficiency and performance." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.104 -output = 0.3185 - -[limit] -context = 4_096 -output = 4_096 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml b/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml deleted file mode 100644 index cd1ef01615..0000000000 --- a/providers/edenai/models/qwen/qwen-plus-2025-01-25.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen-plus-2025-01-25" -description = "The Qwen series of models, which are well-balanced in capabilities, offer reasoning performance and speed that fall between Qwen-Max and Qwen-Turbo, making them suitable for moderately complex tasks. Compared to previous versions, it shows significant improvements in both Chinese and English code generation, logical reasoning, and multilingual abilities. The response style has been greatly adjusted to align with human preferences, with noticeable enhancements in the level of detail and clarity of responses. Specialized improvements have been made in creative writing, adherence to JSON formatting, and role-playing abilities." -release_date = "2025-09-08" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 0.78 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml b/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml deleted file mode 100644 index b5803ba0b8..0000000000 --- a/providers/edenai/models/qwen/qwen-plus-2025-04-28.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen-plus-2025-04-28" -description = "The Plus model of the Qwen3 series, effectively integrates thinking mode and non-thinking mode, allowing for mode switching during conversations. Its reasoning capabilities significantly surpass those of QwQ, and its general capabilities notably exceed those of Qwen2.5-Plus, reaching the SOTA level in the same scale within the industry. This model is the snapshot from April 28, 2025." -release_date = "2025-09-08" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 0.78 -reasoning = 2.6 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml b/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml deleted file mode 100644 index cf1fb6abc5..0000000000 --- a/providers/edenai/models/qwen/qwen-plus-2025-07-14.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen-plus-2025-07-14" -description = "The Plus model of the Qwen3 Series, achieving effective integration of thinking mode and non-thinking mode, allows switching modes during conversations. This is a snapshot from July 14, 2025. Compared to the previous version, there has been a significant improvement in both Chinese and English capabilities under non-thinking mode, with enhanced tool-calling abilities." -release_date = "2025-09-08" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 0.78 -reasoning = 2.6 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml b/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml deleted file mode 100644 index b14a93b6e0..0000000000 --- a/providers/edenai/models/qwen/qwen-plus-2025-07-28.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen-plus-2025-07-28" -description = "Qwen3 series Plus model, integrates thinking and non-thinking modes and can switch modes during dialogue. Compared to the prior version, adds dedicated enhancements for Chinese & English capabilities and tool calling. This is a snapshot from 28 July, 2025; first to support 1 M context length, and uses tiered pricing." -release_date = "2025-09-08" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 0.78 -reasoning = 2.6 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml b/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml deleted file mode 100644 index 2fdb2b0835..0000000000 --- a/providers/edenai/models/qwen/qwen-plus-2025-09-11.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen-plus-2025-09-11" -description = "As of the September 11, 2025 snapshot, this release features enhanced instruction following and streamlined summary responses in thinking mode. Non-thinking mode provides superior Chinese text understanding and augmented logical reasoning capabilities. The model supports a 1M context length with tiered pricing." -release_date = "2025-09-08" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 0.78 -reasoning = 2.6 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml b/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml deleted file mode 100644 index 64cf9e2755..0000000000 --- a/providers/edenai/models/qwen/qwen-plus-2025-12-01.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen-plus-2025-12-01" -description = "This version is a snapshot as of December 1, 2025, and features improved reasoning capabilities compared to the July 28 snapshot. Agent capabilities and multi-turn tool invocation abilities have been further enhanced, and performance on subjective creative tasks has improved significantly. It supports a context length of up to 1 million tokens, with tiered pricing based on context length." -release_date = "2025-09-08" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 0.78 -reasoning = 2.6 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-character-ja.toml b/providers/edenai/models/qwen/qwen-plus-character-ja.toml deleted file mode 100644 index bc75e2efcf..0000000000 --- a/providers/edenai/models/qwen/qwen-plus-character-ja.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen-plus-character-ja" -description = "The Qwen Role-Playing Model Series is specifically optimized for Japanese anthropomorphic interaction scenarios. It demonstrates advanced capabilities in character consistency maintenance, context-aware dialogue progression, and empathetic engagement, enabling precise personalized character embodiment. This version significantly enhances Japanese linguistic localization (including dialects and honorifics), human-like role-playing authenticity, narrative coherence control, and scenario-based cognitive intelligence." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.325 -output = 0.91 -cache_read = 0.065 - -[limit] -context = 8_192 -output = 8_192 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-character.toml b/providers/edenai/models/qwen/qwen-plus-character.toml deleted file mode 100644 index 834bbb84a8..0000000000 --- a/providers/edenai/models/qwen/qwen-plus-character.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen-plus-character" -description = "The role-playing model of the Qwen series. This is a dynamically updated version, and notifications will be provided in advance for any model updates. It is suitable for anthropomorphic role-playing and has optimized capabilities in following predefined character instructions, advancing conversations, and demonstrating active listening and empathy. Additionally, it supports the deep restoration of personalized characters." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = true -open_weights = false - -[cost] -input = 0.325 -output = 0.91 -cache_read = 0.065 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus-latest.toml b/providers/edenai/models/qwen/qwen-plus-latest.toml deleted file mode 100644 index bff7b0fff1..0000000000 --- a/providers/edenai/models/qwen/qwen-plus-latest.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen-plus-latest" -description = "The Qwen series model optimized for balanced performance, offering inference efficiency between Qwen-Max and Qwen-Turbo, is designed to handle moderately complex tasks effectively. This dynamically updated version implements changes without prior notice." -release_date = "2025-09-08" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 0.78 -reasoning = 2.6 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen-plus.toml b/providers/edenai/models/qwen/qwen-plus.toml deleted file mode 100644 index c26ed7c5a0..0000000000 --- a/providers/edenai/models/qwen/qwen-plus.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen-plus" -release_date = "2025-09-08" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 0.26 -output = 0.78 -reasoning = 2.6 -cache_read = 0.052 -cache_write = 0.325 diff --git a/providers/edenai/models/qwen/qwen-turbo.toml b/providers/edenai/models/qwen/qwen-turbo.toml deleted file mode 100644 index 4c03571ae1..0000000000 --- a/providers/edenai/models/qwen/qwen-turbo.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "alibaba/qwen-turbo" -release_date = "2026-07-30" -last_updated = "2026-08-01" -tool_call = false -structured_output = true -reasoning_options = [] - -[cost] -input = 0.0325 -output = 0.13 -reasoning = 0.325 -cache_read = 0.0065 - -[limit] -context = 131_072 diff --git a/providers/edenai/models/qwen/qwen-vl-max.toml b/providers/edenai/models/qwen/qwen-vl-max.toml deleted file mode 100644 index e17c02c90d..0000000000 --- a/providers/edenai/models/qwen/qwen-vl-max.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "alibaba/qwen-vl-max" -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -tool_call = false -structured_output = true - -[cost] -input = 0.52 -output = 2.08 -cache_read = 0.104 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen-vl-plus.toml b/providers/edenai/models/qwen/qwen-vl-plus.toml deleted file mode 100644 index f8eb2cf634..0000000000 --- a/providers/edenai/models/qwen/qwen-vl-plus.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "alibaba/qwen-vl-plus" -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -tool_call = false -structured_output = false - -[cost] -input = 0.1365 -output = 0.4095 -cache_read = 0.0273 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3-14b.toml b/providers/edenai/models/qwen/qwen3-14b.toml deleted file mode 100644 index 603074b8ba..0000000000 --- a/providers/edenai/models/qwen/qwen3-14b.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen3-14b" -description = "Achieves effective integration of thinking and non-thinking modes, allowing mode switching during conversations. Its reasoning capability reaches the SOTA level in the same scale industry, and its general capability significantly surpasses Qwen2.5-14B." -release_date = "2025-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2275 -output = 0.91 -reasoning = 2.73 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml b/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml deleted file mode 100644 index f42ca4f809..0000000000 --- a/providers/edenai/models/qwen/qwen3-235b-a22b-instruct-2507.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-235b-a22b-instruct-2507" -description = "Open-source Qwen3 non-thinking model; compared to the previous version (Qwen3-235B-A22B) shows slight improvements in subjective creativity and model safety." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = true -open_weights = false - -[cost] -input = 0.1495 -output = 0.598 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml b/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml deleted file mode 100644 index ebd41871d2..0000000000 --- a/providers/edenai/models/qwen/qwen3-235b-a22b-thinking-2507.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-235b-a22b-thinking-2507" -description = "Open-source Qwen3 thinking model; compared to the previous version (Qwen3-235B-A22B) shows major improvements in logical ability, general capabilities, knowledge enhancement, and creativity, suitable for high-difficulty, strong-thinking scenarios." -release_date = "2025-07-25" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1495 -output = 1.495 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-235b-a22b.toml b/providers/edenai/models/qwen/qwen3-235b-a22b.toml deleted file mode 100644 index d7d69d2fbb..0000000000 --- a/providers/edenai/models/qwen/qwen3-235b-a22b.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "alibaba/qwen3-235b-a22b" -release_date = "2025-04-28" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.455 -output = 1.82 -reasoning = 5.46 diff --git a/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml b/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml deleted file mode 100644 index e0a7de04a1..0000000000 --- a/providers/edenai/models/qwen/qwen3-30b-a3b-instruct-2507.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-30b-a3b-instruct-2507" -description = "Open-source Qwen3 non-thinking model; compared to the previous version (Qwen3-30B-A3B) shows major improvements in Chinese, English, and overall multilingual general capabilities. Optimized for subjective open-ended tasks, delivering responses significantly more aligned with user preferences and more helpful." -release_date = "2025-07-29" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.13 -output = 0.52 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml b/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml deleted file mode 100644 index 258f1f0a17..0000000000 --- a/providers/edenai/models/qwen/qwen3-30b-a3b-thinking-2507.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-30b-a3b-thinking-2507" -description = "Open-source Qwen3 thinking model; compared to the previous version (Qwen3-30B-A3B) excels in complex thinking tasks, including logic, math, science, code, and other challenging scenarios; instruction following, text understanding, and multilingual translation capabilities significantly improved." -release_date = "2025-08-28" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.13 -output = 1.56 - -[limit] -context = 81_920 -output = 81_920 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-30b-a3b.toml b/providers/edenai/models/qwen/qwen3-30b-a3b.toml deleted file mode 100644 index c211a82700..0000000000 --- a/providers/edenai/models/qwen/qwen3-30b-a3b.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen3-30b-a3b" -description = "Achieves effective integration of thinking and non-thinking modes, allowing mode switching during conversations. Its reasoning capability rivals QwQ-32B with a smaller parameter size, and its general capability significantly surpasses Qwen2.5-14B, reaching the SOTA level in the same scale industry." -release_date = "2025-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.13 -output = 0.52 -reasoning = 1.56 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-32b.toml b/providers/edenai/models/qwen/qwen3-32b.toml deleted file mode 100644 index 49a81373ce..0000000000 --- a/providers/edenai/models/qwen/qwen3-32b.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "alibaba/qwen3-32b" -release_date = "2025-04-28" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.104 -output = 0.416 -reasoning = 0.416 diff --git a/providers/edenai/models/qwen/qwen3-8b.toml b/providers/edenai/models/qwen/qwen3-8b.toml deleted file mode 100644 index 6430cbc296..0000000000 --- a/providers/edenai/models/qwen/qwen3-8b.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen3-8b" -description = "Achieves effective integration of thinking and non-thinking modes, allowing mode switching during conversations. Its reasoning capability reaches the SOTA level in the same scale industry, and its general capability significantly surpasses Qwen2.5-7B." -release_date = "2025-04-28" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.117 -output = 0.455 -reasoning = 1.365 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml b/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml deleted file mode 100644 index fd19155eab..0000000000 --- a/providers/edenai/models/qwen/qwen3-coder-30b-a3b-instruct.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "alibaba/qwen3-coder-30b-a3b-instruct" -release_date = "2025-07-31" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 0.2925 -output = 1.4625 diff --git a/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml b/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml deleted file mode 100644 index 192d479512..0000000000 --- a/providers/edenai/models/qwen/qwen3-coder-480b-a35b-instruct.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "alibaba/qwen3-coder-480b-a35b-instruct" -release_date = "2026-07-30" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.975 -output = 4.875 diff --git a/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml b/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml deleted file mode 100644 index 37120a68e1..0000000000 --- a/providers/edenai/models/qwen/qwen3-coder-flash-2025-07-28.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-coder-flash-2025-07-28" -description = "Based on Qwen3, this code generation model inherits the coding agent capabilities of Qwen3-Coder-Plus and supports multi-turn tool interaction. It features focused optimizations on repository-level understanding and enhanced tool-calling stability. This version is a snapshot dated July 28, 2025." -release_date = "2025-09-17" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.195 -output = 0.975 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-flash.toml b/providers/edenai/models/qwen/qwen3-coder-flash.toml deleted file mode 100644 index a954160272..0000000000 --- a/providers/edenai/models/qwen/qwen3-coder-flash.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "alibaba/qwen3-coder-flash" -release_date = "2025-09-17" -last_updated = "2026-08-01" -structured_output = true - -[cost] -input = 0.195 -output = 0.975 -cache_read = 0.039 -cache_write = 0.24375 diff --git a/providers/edenai/models/qwen/qwen3-coder-next.toml b/providers/edenai/models/qwen/qwen3-coder-next.toml deleted file mode 100644 index bae65b49d3..0000000000 --- a/providers/edenai/models/qwen/qwen3-coder-next.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-coder-next" -description = "The new-generation code generation model in the Qwen3 series delivers performance close to that of Qwen3-Coder-Plus while offering even better capabilities. The model has been optimized with a focus on repository-level understanding, supports multi-turn tool interactions, and enhances its compatibility with agentic coding tools." -release_date = "2026-02-04" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.195 -output = 0.975 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml b/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml deleted file mode 100644 index 38b6a21fab..0000000000 --- a/providers/edenai/models/qwen/qwen3-coder-plus-2025-07-22.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-coder-plus-2025-07-22" -description = "Qwen3-based code generation model with strong coding agent power, excels at tool calling and environment interaction, capable of autonomous programming with outstanding code capability while maintaining general ability. This is a snapshot from 22 July, 2025." -release_date = "2025-09-23" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.65 -output = 3.25 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml b/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml deleted file mode 100644 index b18ea1611e..0000000000 --- a/providers/edenai/models/qwen/qwen3-coder-plus-2025-09-23.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-coder-plus-2025-09-23" -description = "Qwen3-based code generation model with strong coding agent power, excels at tool calling and environment interaction, capable of autonomous programming with outstanding code capability while maintaining general ability. This is a snapshot from 23 September , 2025.Compared to the previous version (snapshot from July 22), it demonstrates improved robustness in downstream task performance and tool invocation, along with enhanced code security." -release_date = "2025-09-23" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.65 -output = 3.25 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-coder-plus.toml b/providers/edenai/models/qwen/qwen3-coder-plus.toml deleted file mode 100644 index 1892162bba..0000000000 --- a/providers/edenai/models/qwen/qwen3-coder-plus.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3-coder-plus" -release_date = "2025-09-23" -last_updated = "2026-08-01" -structured_output = true - -[cost] -input = 0.65 -output = 3.25 -cache_read = 0.13 -cache_write = 0.8125 - -[limit] -context = 1_000_000 diff --git a/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml b/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml deleted file mode 100644 index 7bd2c0f502..0000000000 --- a/providers/edenai/models/qwen/qwen3-max-2025-09-23.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-max-2025-09-23" -description = "The Qwen 3 series Max model has undergone specialized upgrades in agent programming and tool invocation compared to the preview version. The officially released model this time has achieved state-of-the-art (SOTA) performance in its field and is better suited to meet the demands of agents operating in more complex scenarios.This version is a snapshot as of September 23, 2025." -release_date = "2025-09-23" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.78 -output = 3.9 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml b/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml deleted file mode 100644 index ae93dd01a9..0000000000 --- a/providers/edenai/models/qwen/qwen3-max-2026-01-23.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-max-2026-01-23" -description = "Compared with the snapshot as of September 23, 2025, the Qwen-3 series Max model in this release achieves an effective integration of thinking and non-thinking modes, resulting in a comprehensive and substantial improvement in the model’s overall performance. In thinking mode, the model simultaneously supports web search, web information extraction, and a code interpreter tool, enabling it to tackle more complex and challenging problems with greater accuracy by leveraging external tools while engaging in slow, deliberative reasoning. This version is based on a snapshot taken on January 23, 2026." -release_date = "2025-09-23" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.78 -output = 3.9 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-max-preview.toml b/providers/edenai/models/qwen/qwen3-max-preview.toml deleted file mode 100644 index af01939ecb..0000000000 --- a/providers/edenai/models/qwen/qwen3-max-preview.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen3-max-preview" -description = "A preview version of the Max model in the Qwen 3 series, achieving an effective integration of thinking and non-thinking modes. In thinking mode, there is a significant enhancement in capabilities such as intelligent agent programming, common-sense reasoning, and reasoning across mathematics, science, and general domains." -release_date = "2025-09-23" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.78 -output = 3.9 -cache_read = 0.156 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-max.toml b/providers/edenai/models/qwen/qwen3-max.toml deleted file mode 100644 index 44a25e05ec..0000000000 --- a/providers/edenai/models/qwen/qwen3-max.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "alibaba/qwen3-max" -last_updated = "2026-08-01" -reasoning = true -structured_output = true -reasoning_options = [] - -[cost] -input = 0.78 -output = 3.9 -cache_read = 0.156 -cache_write = 0.975 diff --git a/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml b/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml deleted file mode 100644 index ef3b254637..0000000000 --- a/providers/edenai/models/qwen/qwen3-next-80b-a3b-instruct.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "alibaba/qwen3-next-80b-a3b-instruct" -release_date = "2025-09-11" -last_updated = "2026-08-01" -structured_output = true -open_weights = false - -[cost] -input = 0.0975 -output = 0.78 diff --git a/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml b/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml deleted file mode 100644 index fe37aabd6e..0000000000 --- a/providers/edenai/models/qwen/qwen3-next-80b-a3b-thinking.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "alibaba/qwen3-next-80b-a3b-thinking" -release_date = "2025-09-11" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.0975 -output = 0.78 diff --git a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml deleted file mode 100644 index 5358ebbd62..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-vl-235b-a22b-instruct" -description = "The Qwen3 series VL models has been comprehensively upgraded in areas such as visual coding and spatial perception. Its visual perception and recognition capabilities have significantly improved, supporting the understanding of ultra-long videos, and its OCR functionality has undergone a major enhancement." -release_date = "2025-09-23" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.26 -output = 1.04 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml deleted file mode 100644 index 3c28e9dc39..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-235b-a22b-thinking.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-vl-235b-a22b-thinking" -description = "Qwen3 series VL models feature significantly enhanced multimodal reasoning capabilities, with a particular focus on optimizing the model for STEM and mathematical reasoning. Visual perception and recognition abilities have been comprehensively improved, and OCR capabilities have undergone a major upgrade." -release_date = "2025-09-23" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 2.6 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml deleted file mode 100644 index 93b9d01d68..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-vl-30b-a3b-instruct" -description = "The Instruct version of the second-largest MoE model in the Qwen3-VL series offers rapid response speeds and supports extremely long contexts like lengthy videos and documents. It includes comprehensively upgraded image/video understanding, spatial awareness, and object recognition capabilities, as well as 2D/3D visual localization, enabling it to handle intricate real-world challenges." -release_date = "2025-10-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.13 -output = 0.52 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml deleted file mode 100644 index 82551c5665..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-30b-a3b-thinking.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-vl-30b-a3b-thinking" -description = "The Thinking version of the second-largest MoE model in the Qwen3-VL series features fast response speeds and enhanced multimodal understanding and reasoning capabilities, visual agents, and support for extremely long contexts such as lengthy videos and documents. It also boasts comprehensively upgraded image/video understanding, spatial awareness, and object recognition abilities, making it well-suited for complex real-world tasks." -release_date = "2025-10-06" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.13 -output = 1.56 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml deleted file mode 100644 index 8c84318e22..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-32b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-vl-32b-instruct" -description = "The largest dense model in the Qwen3-VL series, in its non-inference version, delivers overall performance second only to Qwen3-VL-235B-Instruct. It excels in document recognition and comprehension, demonstrates strong spatial awareness and object identification capabilities, and achieves state-of-the-art performance in 2D visual detection and spatial reasoning. It is well-suited for complex perception tasks across a wide range of general-purpose scenarios." -release_date = "2025-10-23" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.104 -output = 0.416 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml deleted file mode 100644 index a39e34f54b..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-32b-thinking.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-vl-32b-thinking" -description = "The largest dense model in the Qwen3-VL series, its reasoning version boasts multimodal reasoning capabilities second only to Qwen3-VL-235B-Thinking. It excels in STEM and math problem-solving, general image and video understanding, and achieves state-of-the-art performance in multimodal agent capabilities, making it ideal for complex multimodal reasoning tasks." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.104 -output = 0.416 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml b/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml deleted file mode 100644 index 56bae7f3a0..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-8b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-vl-8b-instruct" -description = "The Instruct version of the 8B Dense model in the Qwen3-VL series requires less GPU memory and provides comprehensively upgraded image/video understanding, support for extremely long contexts like lengthy videos and documents, spatial awareness, and object recognition capabilities, making it suitable for tackling complex real-world tasks." -release_date = "2025-10-14" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.117 -output = 0.455 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["image", "text", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml b/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml deleted file mode 100644 index 0c8d77c7ea..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-8b-thinking.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-vl-8b-thinking" -description = "The Thinking version of the 8B Dense model in the Qwen3-VL series consumes less GPU memory and is capable of performing multimodal understanding and reasoning. It supports extremely long contexts such as lengthy videos and documents, 2D/3D visual localization, and features comprehensively upgraded image/video understanding, spatial awareness, and object recognition abilities." -release_date = "2025-10-14" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.117 -output = 1.365 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["image", "text", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml b/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml deleted file mode 100644 index 380d38ad5e..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-flash-2025-10-15.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-vl-flash-2025-10-15" -description = "The Qwen3 series of small-scale visual understanding models effectively integrates thinking and non-thinking modes, delivering superior performance compared to the open-source Qwen3-VL-30B-A3B while maintaining fast response speeds. It features a comprehensive upgrade in image/video understanding, supporting ultra-long contexts such as extended videos and documents, spatial awareness, and object recognition across various domains. Equipped with 2D/3D visual localization capabilities, it is well-suited for tackling complex real-world tasks.This version is a snapshot as of October 15, 2025." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.0325 -output = 0.26 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml b/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml deleted file mode 100644 index dc885c2026..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-flash-2026-01-22.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-vl-flash-2026-01-22" -description = "The Qwen3 series of small-sized visual understanding models effectively integrates thinking and non-thinking modes. Compared with the snapshot taken on October 15, 2025, the overall performance of the model has improved significantly: it delivers enhanced capabilities in general visual recognition and reasoning, and shows marked improvements in recognition accuracy across various business scenarios such as security, in-store inspections, equipment monitoring, and photo-based problem solving. This version is a snapshot as of January 22, 2026." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.0325 -output = 0.26 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-flash.toml b/providers/edenai/models/qwen/qwen3-vl-flash.toml deleted file mode 100644 index 058c172110..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-flash.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "qwen3-vl-flash" -description = "The Qwen3 series of small-scale visual understanding models effectively integrates thinking and non-thinking modes, delivering superior performance compared to the open-source Qwen3-VL-30B-A3B while maintaining fast response speeds. It features a comprehensive upgrade in image/video understanding, supporting ultra-long contexts such as extended videos and documents, spatial awareness, and object recognition across various domains. Equipped with 2D/3D visual localization capabilities, it is well-suited for tackling complex real-world tasks." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.0325 -output = 0.26 -cache_read = 0.0065 -cache_write = 0.040625 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml b/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml deleted file mode 100644 index 58396a350c..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-plus-2025-09-23.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-vl-plus-2025-09-23" -description = "The Qwen3 series VL models effectively integrates thinking and non-thinking modes, achieving world-leading performance in visual agent capabilities on public benchmark datasets such as OS World. This version features comprehensive upgrades in areas like visual coding, spatial perception, and multimodal reasoning, significantly enhancing visual perception and recognition abilities, and supporting the understanding of ultra-long videos.This version is a snapshot as of September 23, 2025" -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.13 -output = 1.04 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml b/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml deleted file mode 100644 index 7c8b83fe11..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-plus-2025-12-19.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3-vl-plus-2025-12-19" -description = "The Qwen3 series of visual understanding models effectively integrates thinking and non-thinking modes. Compared to the snapshot released on September 23, this version delivers superior performance in reasoning and analysis tasks as well as style control, while also offering lower latency and faster response speeds. This version is based on a snapshot taken on December 19, 2025." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.13 -output = 1.04 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3-vl-plus.toml b/providers/edenai/models/qwen/qwen3-vl-plus.toml deleted file mode 100644 index 3c2b797e31..0000000000 --- a/providers/edenai/models/qwen/qwen3-vl-plus.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "alibaba/qwen3-vl-plus" -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = true - -[cost] -input = 0.13 -output = 1.04 -cache_read = 0.026 -cache_write = 0.1625 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml b/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml deleted file mode 100644 index 38f782c92d..0000000000 --- a/providers/edenai/models/qwen/qwen3.5-122b-a10b.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.5-122b-a10b" -release_date = "2026-02-25" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 2.08 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-27b.toml b/providers/edenai/models/qwen/qwen3.5-27b.toml deleted file mode 100644 index 27d1fcccfb..0000000000 --- a/providers/edenai/models/qwen/qwen3.5-27b.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.5-27b" -release_date = "2026-02-25" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.195 -output = 1.56 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml b/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml deleted file mode 100644 index 2cbe54d157..0000000000 --- a/providers/edenai/models/qwen/qwen3.5-35b-a3b.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.5-35b-a3b" -release_date = "2026-02-25" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1625 -output = 1.3 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml b/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml deleted file mode 100644 index 48a8ba88a1..0000000000 --- a/providers/edenai/models/qwen/qwen3.5-397b-a17b.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.5-397b-a17b" -release_date = "2026-02-16" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.39 -output = 2.34 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml b/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml deleted file mode 100644 index bea4c67ad9..0000000000 --- a/providers/edenai/models/qwen/qwen3.5-flash-2026-02-23.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3.5-flash-2026-02-23" -description = "The Qwen3.5 native vision-language Flash models are built on a hybrid architecture that integrates a linear attention mechanism with a sparse mixture-of-experts model, achieving higher inference efficiency. Compared to the 3 series, these models deliver a leap forward in performance for both pure text and multimodal tasks, offering fast response times while balancing inference speed and overall performance.This version is a snapshot as of February 23, 2026." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.065 -output = 0.26 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.5-flash.toml b/providers/edenai/models/qwen/qwen3.5-flash.toml deleted file mode 100644 index 17883f9cb2..0000000000 --- a/providers/edenai/models/qwen/qwen3.5-flash.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen3.5-flash" -description = "The Qwen3.5 native vision-language Flash models are built on a hybrid architecture that integrates a linear attention mechanism with a sparse mixture-of-experts model, achieving higher inference efficiency. Compared to the 3 series, these models deliver a leap forward in performance for both pure text and multimodal tasks, offering fast response times while balancing inference speed and overall performance." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.065 -output = 0.26 -cache_write = 0.08125 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml b/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml deleted file mode 100644 index e73c2bfafd..0000000000 --- a/providers/edenai/models/qwen/qwen3.5-plus-2026-02-15.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3.5-plus-2026-02-15" -description = "The Qwen3.5 native vision-language series Plus models are built on a hybrid architecture that integrates linear attention mechanisms with sparse mixture-of-experts models, achieving higher inference efficiency. In a variety of task evaluations, the 3.5 series consistently demonstrates performance on par with state-of-the-art leading models. Compared to the 3 series, these models show a leap forward in both pure-text and multimodal capabilities.This version is a snapshot as of February 15, 2026." -release_date = "2026-04-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 1.56 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml b/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml deleted file mode 100644 index e409a0a96b..0000000000 --- a/providers/edenai/models/qwen/qwen3.5-plus-2026-04-20.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen3.5-plus-2026-04-20" -description = "The Qwen3.5 native vision-language series Plus model has seen a substantial improvement in agentic coding capabilities compared to the February 15th snapshot. Inference speed has also been significantly enhanced, while its knowledge retention, reasoning ability, and long-context processing remain at a high level, making it well-suited for complex agent-based tasks. It is ideal for applications such as coding agents, production workflows, and high-throughput scenarios. This version is based on a snapshot taken on April 20, 2026." -release_date = "2026-04-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 1.56 -cache_write = 0.325 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.5-plus.toml b/providers/edenai/models/qwen/qwen3.5-plus.toml deleted file mode 100644 index 6cad2d6f12..0000000000 --- a/providers/edenai/models/qwen/qwen3.5-plus.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "alibaba/qwen3.5-plus" -release_date = "2026-04-27" -last_updated = "2026-08-01" -attachment = true -structured_output = true -reasoning_options = [] - -[cost] -input = 0.26 -output = 1.56 -cache_write = 0.325 diff --git a/providers/edenai/models/qwen/qwen3.6-27b.toml b/providers/edenai/models/qwen/qwen3.6-27b.toml deleted file mode 100644 index 2b5a750eb4..0000000000 --- a/providers/edenai/models/qwen/qwen3.6-27b.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.6-27b" -release_date = "2026-04-27" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.39 -output = 2.34 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml b/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml deleted file mode 100644 index b00412770d..0000000000 --- a/providers/edenai/models/qwen/qwen3.6-35b-a3b.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3.6-35b-a3b" -release_date = "2026-07-30" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.24375 -output = 1.4625 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml b/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml deleted file mode 100644 index 8e1a0717ca..0000000000 --- a/providers/edenai/models/qwen/qwen3.6-flash-2026-04-16.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3.6-flash-2026-04-16" -description = "The Qwen3.6 native vision-language Flash model series delivers a significant performance boost over the 3.5-Flash version. This model particularly excels in agentic coding capabilities, substantially outperforming its predecessor on multiple code-agent benchmarks, as well as in mathematical and code reasoning. In terms of vision, it features markedly improved spatial intelligence, with especially notable enhancements in object localization and object detection.This release is based on a snapshot taken on April 16, 2026." -release_date = "2026-04-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.1625 -output = 0.975 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.6-flash.toml b/providers/edenai/models/qwen/qwen3.6-flash.toml deleted file mode 100644 index 06b8041fe8..0000000000 --- a/providers/edenai/models/qwen/qwen3.6-flash.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "alibaba/qwen3.6-flash" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.1625 -output = 0.975 -cache_write = 0.203125 diff --git a/providers/edenai/models/qwen/qwen3.6-max-preview.toml b/providers/edenai/models/qwen/qwen3.6-max-preview.toml deleted file mode 100644 index 739a765e13..0000000000 --- a/providers/edenai/models/qwen/qwen3.6-max-preview.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "alibaba/qwen3.6-max-preview" -release_date = "2026-04-27" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 0.845 -output = 5.07 -cache_write = 1.05625 diff --git a/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml b/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml deleted file mode 100644 index 3e472d024a..0000000000 --- a/providers/edenai/models/qwen/qwen3.6-plus-2026-04-02.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3.6-plus-2026-04-02" -description = "The Qwen3.6 native vision-language Plus series models demonstrate exceptional performance on par with the current state-of-the-art models, with a significant improvement in overall results compared to the 3.5 series. The models have been markedly enhanced in code-related capabilities such as agentic coding, front-end programming, and Vibe coding, as well as in multi-modal general object recognition, OCR, and object localization.This version is a snapshot as of April 2, 2026." -release_date = "2026-04-02" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.325 -output = 1.95 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.6-plus.toml b/providers/edenai/models/qwen/qwen3.6-plus.toml deleted file mode 100644 index 7c36a121a0..0000000000 --- a/providers/edenai/models/qwen/qwen3.6-plus.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "alibaba/qwen3.6-plus" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 0.325 -output = 1.95 -cache_write = 0.40625 diff --git a/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml b/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml deleted file mode 100644 index 4790bb398d..0000000000 --- a/providers/edenai/models/qwen/qwen3.7-flash-2026-07-15.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "qwen3.7-flash-2026-07-15" -description = "The Qwen3.7 native vision-language Flash model series delivers a comprehensive upgrade over 3.6-Flash in multimodal understanding and agent execution. This model particularly excels in enhanced multimodal foundations with stronger universal object recognition, further improved real-world perception and spatial intelligence, significantly upgraded multimodal agent capabilities for Search Agent and CI Agent scenarios with more stable end-to-end task execution, as well as optimized multimodal coding for a smoother vibe coding experience. This version is a snapshot from July 15, 2026." -release_date = "2026-07-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.0195 -output = 0.0845 -cache_read = 0.0039 -cache_write = 0.0247 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-flash.toml b/providers/edenai/models/qwen/qwen3.7-flash.toml deleted file mode 100644 index f02b80148c..0000000000 --- a/providers/edenai/models/qwen/qwen3.7-flash.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "qwen3.7-flash" -description = "The Qwen3.7 native vision-language Flash model series delivers a comprehensive upgrade over 3.6-Flash in multimodal understanding and agent execution. This model particularly excels in enhanced multimodal foundations with stronger universal object recognition, further improved real-world perception and spatial intelligence, significantly upgraded multimodal agent capabilities for Search Agent and CI Agent scenarios with more stable end-to-end task execution, as well as optimized multimodal coding for a smoother vibe coding experience." -release_date = "2026-07-27" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.0195 -output = 0.0845 -cache_read = 0.0039 -cache_write = 0.0247 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml b/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml deleted file mode 100644 index 199f11e948..0000000000 --- a/providers/edenai/models/qwen/qwen3.7-max-2026-05-17.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3.7-max-2026-05-17" -description = "The early version of the Max model in the Qwen3.7 series supports only the reasoning mode and makes its plain-text capabilities available for experimentation. Qwen3.7 is a next‑generation flagship model designed for the agent‑centric era, with major improvements in coding and agent‑level capabilities. This release is a snapshot as of May 17, 2026." -release_date = "2026-05-21" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.625 -output = 4.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml b/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml deleted file mode 100644 index 0a011f1ec1..0000000000 --- a/providers/edenai/models/qwen/qwen3.7-max-2026-05-20.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "qwen3.7-max-2026-05-20" -description = "The Max model, the largest and most capable in the Qwen3.7 series, currently offers a pure‑text‑only interface for public experimentation. Qwen3.7 is a next‑generation flagship model designed for the agent‑centric era, with its core strengths lying in the breadth and depth of its agent‑level capabilities: it excels at programming, office and productivity tasks, and long‑term autonomous execution.This version is a snapshot as of May 20, 2026." -release_date = "2026-05-21" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.625 -output = 4.875 -cache_write = 2.03125 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml b/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml deleted file mode 100644 index 11575b3196..0000000000 --- a/providers/edenai/models/qwen/qwen3.7-max-2026-06-08.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "qwen3.7-max-2026-06-08" -description = "The Max model, the largest and most capable in the Qwen3.7 series, has added visual‑modal understanding compared to the May 20 snapshot, enabling it to perceive real‑world scenes and supporting multimodal interactive hybrid agent capabilities. This version is based on a snapshot taken on June 8, 2026." -release_date = "2026-05-21" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.625 -output = 4.875 -cache_read = 0.325 -cache_write = 2.03125 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max-preview.toml b/providers/edenai/models/qwen/qwen3.7-max-preview.toml deleted file mode 100644 index e0a07f48e5..0000000000 --- a/providers/edenai/models/qwen/qwen3.7-max-preview.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen3.7-max-preview" -description = "The Max model, the largest and most capable variant in the Qwen3.7 series, is available as a preview and supports only thinking mode, offering a pure text‑only interface for experimentation. It is primarily optimized for general‑purpose conversational use cases, such as knowledge‑based question answering, instruction following, and creative writing." -release_date = "2026-05-21" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.625 -output = 4.875 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-max.toml b/providers/edenai/models/qwen/qwen3.7-max.toml deleted file mode 100644 index 8d2b198478..0000000000 --- a/providers/edenai/models/qwen/qwen3.7-max.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "alibaba/qwen3.7-max" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 1.625 -output = 4.875 -cache_read = 0.325 -cache_write = 2.03125 diff --git a/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml b/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml deleted file mode 100644 index 3bf38fa3b5..0000000000 --- a/providers/edenai/models/qwen/qwen3.7-plus-2026-05-26.toml +++ /dev/null @@ -1,24 +0,0 @@ -name = "qwen3.7-plus-2026-05-26" -description = "Among the Qwen3.7 series, the cost-effective Plus model builds on its robust text capabilities while delivering a comprehensive upgrade to its vision‑language abilities, all while preserving its full‑stack agent‑level intelligence for coding, tool use, and productivity workflows. Its key distinguishing feature is multi‑modal interactive hybrid agent capabilities, enabling it to perceive real‑world scenes, read screens and interact with GUIs, generate code based on visual references, and perform end‑to‑end navigation within mobile apps.This version is a snapshot as of May 26, 2026." -release_date = "2026-06-03" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.26 -output = 1.04 -cache_read = 0.052 -cache_write = 0.325 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/qwen/qwen3.7-plus.toml b/providers/edenai/models/qwen/qwen3.7-plus.toml deleted file mode 100644 index 1e93df7ce3..0000000000 --- a/providers/edenai/models/qwen/qwen3.7-plus.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "alibaba/qwen3.7-plus" -release_date = "2026-06-03" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 0.26 -output = 1.04 -cache_read = 0.052 -cache_write = 0.325 diff --git a/providers/edenai/models/qwen/qwq-plus.toml b/providers/edenai/models/qwen/qwq-plus.toml deleted file mode 100644 index 6221e8aea1..0000000000 --- a/providers/edenai/models/qwen/qwq-plus.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "alibaba/qwq-plus" -release_date = "2026-07-30" -last_updated = "2026-08-01" -tool_call = false -structured_output = false -reasoning_options = [] - -[cost] -input = 0.52 -output = 1.56 diff --git a/providers/edenai/models/scaleway/devstral-2-123b-instruct-2512.toml b/providers/edenai/models/scaleway/devstral-2-123b-instruct-2512.toml deleted file mode 100644 index 3f4509d774..0000000000 --- a/providers/edenai/models/scaleway/devstral-2-123b-instruct-2512.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "devstral-2-123b-instruct-2512" -description = "Mistral coding agent model for repository tasks and software engineering workflows" -release_date = "2025-12-23" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.4594 -output = 2.297 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/scaleway/gemma-3-27b-it.toml b/providers/edenai/models/scaleway/gemma-3-27b-it.toml deleted file mode 100644 index 70979f5fcc..0000000000 --- a/providers/edenai/models/scaleway/gemma-3-27b-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "gemma-3-27b-it" -description = "Open Gemma instruction model for efficient chat and self-hosted deployments" -release_date = "2024-10-31" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.287125 -output = 0.57425 - -[limit] -context = 40_000 -output = 40_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml b/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml deleted file mode 100644 index 1ec5c4616c..0000000000 --- a/providers/edenai/models/scaleway/gemma-4-26b-a4b-it.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "google/gemma-4-26b-a4b-it" -release_date = "2026-04-29" -last_updated = "2026-08-01" -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.287125 -output = 0.57425 - -[limit] -context = 256_000 diff --git a/providers/edenai/models/scaleway/glm-5.2.toml b/providers/edenai/models/scaleway/glm-5.2.toml deleted file mode 100644 index 687ecb4ee6..0000000000 --- a/providers/edenai/models/scaleway/glm-5.2.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "zhipuai/glm-5.2" -release_date = "2026-06-25" -last_updated = "2026-08-01" -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 2.0673 -output = 6.316749 - -[limit] -context = 256_000 diff --git a/providers/edenai/models/scaleway/gpt-oss-120b.toml b/providers/edenai/models/scaleway/gpt-oss-120b.toml deleted file mode 100644 index 827551acaa..0000000000 --- a/providers/edenai/models/scaleway/gpt-oss-120b.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "openai/gpt-oss-120b" -release_date = "2025-08-13" -last_updated = "2026-08-01" -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.172275 -output = 0.6891 - -[limit] -context = 128_000 diff --git a/providers/edenai/models/scaleway/holo2-30b-a3b.toml b/providers/edenai/models/scaleway/holo2-30b-a3b.toml deleted file mode 100644 index 4cd2d1bc45..0000000000 --- a/providers/edenai/models/scaleway/holo2-30b-a3b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "holo2-30b-a3b" -description = "Multimodal reasoning model for visual analysis, planning, and tool use" -release_date = "2025-08-12" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.34455 -output = 0.80395 - -[limit] -context = 22_000 -output = 22_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml b/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml deleted file mode 100644 index 6eba4c7f8e..0000000000 --- a/providers/edenai/models/scaleway/llama-3.3-70b-instruct.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "meta/llama-3.3-70b-instruct" -release_date = "2025-01-07" -last_updated = "2026-08-01" -attachment = false -structured_output = false -open_weights = false - -[cost] -input = 1.03365 -output = 1.03365 diff --git a/providers/edenai/models/scaleway/mistral-medium-3.5-128b.toml b/providers/edenai/models/scaleway/mistral-medium-3.5-128b.toml deleted file mode 100644 index 22758da7fa..0000000000 --- a/providers/edenai/models/scaleway/mistral-medium-3.5-128b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "mistral-medium-3.5-128b" -description = "Mistral model for multilingual chat, reasoning, and tool-assisted workflows" -release_date = "2026-05-07" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 1.72275 -output = 8.613749 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/scaleway/mistral-small-3.2-24b-instruct-2506.toml b/providers/edenai/models/scaleway/mistral-small-3.2-24b-instruct-2506.toml deleted file mode 100644 index 421c5ff5d6..0000000000 --- a/providers/edenai/models/scaleway/mistral-small-3.2-24b-instruct-2506.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "mistral-small-3.2-24b-instruct-2506" -description = "Efficient Mistral model for fast chat, extraction, and production assistants" -release_date = "2025-08-12" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.172275 -output = 0.401975 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/scaleway/pixtral-12b-2409.toml b/providers/edenai/models/scaleway/pixtral-12b-2409.toml deleted file mode 100644 index 54c51cf46a..0000000000 --- a/providers/edenai/models/scaleway/pixtral-12b-2409.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "pixtral-12b-2409" -description = "Mistral vision-language model for image understanding and multimodal chat" -release_date = "2024-10-31" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.2297 -output = 0.2297 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text", "image"] -output = ["text"] diff --git a/providers/edenai/models/scaleway/qwen3-235b-a22b-instruct-2507.toml b/providers/edenai/models/scaleway/qwen3-235b-a22b-instruct-2507.toml deleted file mode 100644 index bb6cceb785..0000000000 --- a/providers/edenai/models/scaleway/qwen3-235b-a22b-instruct-2507.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen3-235b-a22b-instruct-2507" -description = "Tool-capable chat model for instruction following and agentic application workflows" -release_date = "2025-08-01" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.861375 -output = 2.584125 - -[limit] -context = 250_000 -output = 250_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml b/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml deleted file mode 100644 index 3f04374617..0000000000 --- a/providers/edenai/models/scaleway/qwen3-coder-30b-a3b-instruct.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "alibaba/qwen3-coder-30b-a3b-instruct" -release_date = "2025-08-12" -last_updated = "2026-08-01" -structured_output = false -open_weights = false - -[cost] -input = 0.2297 -output = 0.9188 - -[limit] -context = 128_000 diff --git a/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml b/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml deleted file mode 100644 index 4889ff2ff5..0000000000 --- a/providers/edenai/models/scaleway/qwen3.5-397b-a17b.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "alibaba/qwen3.5-397b-a17b" -release_date = "2026-03-13" -last_updated = "2026-08-01" -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6891 -output = 4.1346 - -[limit] -context = 250_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml b/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml deleted file mode 100644 index fdb70d4bdf..0000000000 --- a/providers/edenai/models/scaleway/qwen3.6-35b-a3b.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "alibaba/qwen3.6-35b-a3b" -release_date = "2026-05-07" -last_updated = "2026-08-01" -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.287125 -output = 1.72275 - -[limit] -context = 256_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/scaleway/voxtral-small-24b-2507.toml b/providers/edenai/models/scaleway/voxtral-small-24b-2507.toml deleted file mode 100644 index 08af193642..0000000000 --- a/providers/edenai/models/scaleway/voxtral-small-24b-2507.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "voxtral-small-24b-2507" -description = "Efficient model for low-latency assistance, extraction, and routine automation" -release_date = "2025-09-08" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.172275 -output = 0.401975 - -[limit] -context = 32_000 -output = 32_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/LiquidAI/LFM2.5-8B-A1B.toml b/providers/edenai/models/together_ai/LiquidAI/LFM2.5-8B-A1B.toml deleted file mode 100644 index ac12d678ac..0000000000 --- a/providers/edenai/models/together_ai/LiquidAI/LFM2.5-8B-A1B.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "LiquidAI/LFM2.5-8B-A1B" -description = "General-purpose chat model for instruction following, writing, and analysis" -release_date = "2026-07-09" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.03 -output = 0.12 - -[limit] -context = 128_000 -output = 128_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/MiniMaxAI/MiniMax-M3.toml b/providers/edenai/models/together_ai/MiniMaxAI/MiniMax-M3.toml deleted file mode 100644 index 54509e252c..0000000000 --- a/providers/edenai/models/together_ai/MiniMaxAI/MiniMax-M3.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "MiniMaxAI/MiniMax-M3" -description = "MiniMax-M3 is a multimodal foundation model from MiniMax. It supports text, image, and video inputs with text output, a 1M-token context window, and is suited for long-horizon agentic work, coding,..." -release_date = "2026-05-31" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 -cache_read = 0.06 - -[limit] -context = 524_288 -output = 524_288 - -[modalities] -input = ["text", "image", "video"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo.toml b/providers/edenai/models/together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo.toml deleted file mode 100644 index 1fa724a264..0000000000 --- a/providers/edenai/models/together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "Qwen/Qwen2.5-7B-Instruct-Turbo" -description = "Efficient Qwen model for fast chat, extraction, and high-volume workloads" -release_date = "2026-06-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.3 -output = 0.3 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml b/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml deleted file mode 100644 index e61177e38e..0000000000 --- a/providers/edenai/models/together_ai/Qwen/Qwen3.5-9B.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "alibaba/qwen3.5-9b" -release_date = "2026-03-10" -last_updated = "2026-08-01" -attachment = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.17 -output = 0.25 - -[modalities] -input = ["text", "image", "video"] diff --git a/providers/edenai/models/together_ai/arize-ai/qwen-2-1.5b-instruct.toml b/providers/edenai/models/together_ai/arize-ai/qwen-2-1.5b-instruct.toml deleted file mode 100644 index 81b424218f..0000000000 --- a/providers/edenai/models/together_ai/arize-ai/qwen-2-1.5b-instruct.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "arize-ai/qwen-2-1.5b-instruct" -description = "Qwen instruction model for multilingual chat, reasoning, and tool use" -release_date = "2026-06-05" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.1 -output = 0.1 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/deepcogito/cogito-v2-1-671b.toml b/providers/edenai/models/together_ai/deepcogito/cogito-v2-1-671b.toml deleted file mode 100644 index 804ac599cc..0000000000 --- a/providers/edenai/models/together_ai/deepcogito/cogito-v2-1-671b.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "deepcogito/cogito-v2-1-671b" -description = "Cogito v2.1 671B MoE represents one of the strongest open models globally, matching performance of frontier closed and open models. This model is trained using self play with reinforcement learning..." -release_date = "2025-11-13" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.25 -output = 1.25 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/deepseek-ai/DeepSeek-V4-Pro.toml b/providers/edenai/models/together_ai/deepseek-ai/DeepSeek-V4-Pro.toml deleted file mode 100644 index 4ed4f41742..0000000000 --- a/providers/edenai/models/together_ai/deepseek-ai/DeepSeek-V4-Pro.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "deepseek-ai/DeepSeek-V4-Pro" -description = "Flagship DeepSeek model for coding, reasoning, and agentic work" -release_date = "2026-04-24" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.74 -output = 3.48 -cache_read = 0.2 - -[limit] -context = 512_000 -output = 512_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/google/gemma-3n-E4B-it.toml b/providers/edenai/models/together_ai/google/gemma-3n-E4B-it.toml deleted file mode 100644 index 0a26d0aa83..0000000000 --- a/providers/edenai/models/together_ai/google/gemma-3n-E4B-it.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "google/gemma-3n-E4B-it" -description = "Gemma 3n E4B-it is optimized for efficient execution on mobile and low-resource devices, such as phones, laptops, and tablets. It supports multimodal inputs—including text, visual data, and audio—enabling diverse tasks..." -release_date = "2025-05-20" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = false -structured_output = true -open_weights = false - -[cost] -input = 0.06 -output = 0.12 - -[limit] -context = 32_768 -output = 32_768 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml b/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml deleted file mode 100644 index a5950b5bfd..0000000000 --- a/providers/edenai/models/together_ai/google/gemma-4-31B-it.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemma-4-31b-it" -last_updated = "2026-08-01" -tool_call = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.39 -output = 0.97 - -[modalities] -input = ["image", "text", "video"] diff --git a/providers/edenai/models/together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml b/providers/edenai/models/together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml deleted file mode 100644 index b8b607651f..0000000000 --- a/providers/edenai/models/together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Llama-3.3-70B-Instruct-Turbo" -description = "Compact Llama instruction model for fast chat and local deployment" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 1.04 -output = 1.04 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/meta-llama/Llama-Guard-4-12B.toml b/providers/edenai/models/together_ai/meta-llama/Llama-Guard-4-12B.toml deleted file mode 100644 index 55843d8e1a..0000000000 --- a/providers/edenai/models/together_ai/meta-llama/Llama-Guard-4-12B.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "meta-llama/Llama-Guard-4-12B" -description = "Llama Guard 4 is a Llama 4 Scout-derived multimodal pretrained model, fine-tuned for content safety classification. Similar to previous versions, it can be used to classify content in both LLM..." -release_date = "2025-04-30" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = false -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.2 - -[limit] -context = 1_048_576 -output = 1_048_576 - -[modalities] -input = ["image", "text"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/moonshotai/Kimi-K2.6.toml b/providers/edenai/models/together_ai/moonshotai/Kimi-K2.6.toml deleted file mode 100644 index fb8245cbfa..0000000000 --- a/providers/edenai/models/together_ai/moonshotai/Kimi-K2.6.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "moonshotai/kimi-k2.6" -release_date = "2026-04-20" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 1.2 -output = 4.5 -cache_read = 0.2 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/together_ai/moonshotai/Kimi-K2.7-Code.toml b/providers/edenai/models/together_ai/moonshotai/Kimi-K2.7-Code.toml deleted file mode 100644 index 70a7c54a37..0000000000 --- a/providers/edenai/models/together_ai/moonshotai/Kimi-K2.7-Code.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "moonshotai/kimi-k2.7-code" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.95 -output = 4 -cache_read = 0.19 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml b/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml deleted file mode 100644 index 2b3a7209bb..0000000000 --- a/providers/edenai/models/together_ai/moonshotai/Kimi-K3.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "moonshotai/kimi-k3" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 - -[limit] -context = 1_000_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml b/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml deleted file mode 100644 index 5f04cc67fc..0000000000 --- a/providers/edenai/models/together_ai/nvidia/nemotron-3-ultra-550b-a55b.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "nvidia/nemotron-3-ultra-550b-a55b" -last_updated = "2026-08-01" -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 3.6 -cache_read = 0.2 - -[limit] -context = 512_288 diff --git a/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml b/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml deleted file mode 100644 index 6165c4a61f..0000000000 --- a/providers/edenai/models/together_ai/openai/gpt-oss-120b.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "openai/gpt-oss-120b" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 0.6 diff --git a/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml b/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml deleted file mode 100644 index 1d18c8547b..0000000000 --- a/providers/edenai/models/together_ai/openai/gpt-oss-20b.toml +++ /dev/null @@ -1,8 +0,0 @@ -base_model = "openai/gpt-oss-20b" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 0.05 -output = 0.2 diff --git a/providers/edenai/models/together_ai/pearl-ai/gemma-4-31b-it.toml b/providers/edenai/models/together_ai/pearl-ai/gemma-4-31b-it.toml deleted file mode 100644 index 0ddf03e9d5..0000000000 --- a/providers/edenai/models/together_ai/pearl-ai/gemma-4-31b-it.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "pearl-ai/gemma-4-31b-it" -description = "Gemma 4 31B Instruct is Google DeepMind's 30.7B dense multimodal model supporting text and image input with text output. Features a 256K token context window, configurable thinking/reasoning mode, native function..." -release_date = "2026-04-02" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = false -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.28 -output = 0.86 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["image", "text", "video"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/thinkingmachines/Inkling-Small.toml b/providers/edenai/models/together_ai/thinkingmachines/Inkling-Small.toml deleted file mode 100644 index dbeb6bd1bc..0000000000 --- a/providers/edenai/models/together_ai/thinkingmachines/Inkling-Small.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "thinkingmachines/Inkling-Small" -description = "Inkling Small is an open-weight multimodal mixture-of-experts model from Thinking Machines Lab, with 12B active parameters out of 276B total. It is positioned as the smaller, more efficient member of..." -release_date = "2026-07-30" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.5 -output = 1.2 -cache_read = 0.1 - -[limit] -context = 524_288 -output = 524_288 - -[modalities] -input = ["text", "image", "audio"] -output = ["text"] diff --git a/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml b/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml deleted file mode 100644 index add1613035..0000000000 --- a/providers/edenai/models/together_ai/thinkingmachines/Inkling.toml +++ /dev/null @@ -1,14 +0,0 @@ -base_model = "thinkingmachines/inkling" -release_date = "2026-07-17" -last_updated = "2026-08-01" -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 1 -output = 4.05 -cache_read = 0.17 - -[limit] -context = 524_288 diff --git a/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml b/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml deleted file mode 100644 index ad0eea5112..0000000000 --- a/providers/edenai/models/together_ai/zai-org/GLM-5.2.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "zhipuai/glm-5.2" -release_date = "2026-06-16" -last_updated = "2026-08-01" -open_weights = false -reasoning_options = [] - -[cost] -input = 1.4 -output = 4.4 -cache_read = 0.26 - -[limit] -context = 512_000 diff --git a/providers/edenai/models/vertex/claude-fable-5.toml b/providers/edenai/models/vertex/claude-fable-5.toml deleted file mode 100644 index 3c739cb629..0000000000 --- a/providers/edenai/models/vertex/claude-fable-5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-fable-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 10 -output = 50 -cache_read = 1 -cache_write = 12.5 diff --git a/providers/edenai/models/vertex/claude-fable-5@eu.toml b/providers/edenai/models/vertex/claude-fable-5@eu.toml deleted file mode 100644 index bdc3afff47..0000000000 --- a/providers/edenai/models/vertex/claude-fable-5@eu.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-fable-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 11 -output = 55 -cache_read = 1.1 -cache_write = 13.75 diff --git a/providers/edenai/models/vertex/claude-haiku-4-5.toml b/providers/edenai/models/vertex/claude-haiku-4-5.toml deleted file mode 100644 index 06fca54354..0000000000 --- a/providers/edenai/models/vertex/claude-haiku-4-5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-haiku-4-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 1 -output = 5 -cache_read = 0.1 -cache_write = 1.25 diff --git a/providers/edenai/models/vertex/claude-opus-4-1.toml b/providers/edenai/models/vertex/claude-opus-4-1.toml deleted file mode 100644 index 08b1806a04..0000000000 --- a/providers/edenai/models/vertex/claude-opus-4-1.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-4-1" -last_updated = "2026-08-01" -structured_output = false -reasoning_options = [] - -[cost] -input = 15 -output = 75 -cache_read = 1.5 -cache_write = 18.75 diff --git a/providers/edenai/models/vertex/claude-opus-4-5.toml b/providers/edenai/models/vertex/claude-opus-4-5.toml deleted file mode 100644 index 5eb221cdaf..0000000000 --- a/providers/edenai/models/vertex/claude-opus-4-5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-4-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/vertex/claude-opus-4-6.toml b/providers/edenai/models/vertex/claude-opus-4-6.toml deleted file mode 100644 index 46b6d8b7c5..0000000000 --- a/providers/edenai/models/vertex/claude-opus-4-6.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "anthropic/claude-opus-4-6" -release_date = "2026-02-04" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/vertex/claude-opus-4-7.toml b/providers/edenai/models/vertex/claude-opus-4-7.toml deleted file mode 100644 index 549fc82d5c..0000000000 --- a/providers/edenai/models/vertex/claude-opus-4-7.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-4-7" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/vertex/claude-opus-4-7@eu.toml b/providers/edenai/models/vertex/claude-opus-4-7@eu.toml deleted file mode 100644 index b630b13a9c..0000000000 --- a/providers/edenai/models/vertex/claude-opus-4-7@eu.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-4-7" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 diff --git a/providers/edenai/models/vertex/claude-opus-4-7@us.toml b/providers/edenai/models/vertex/claude-opus-4-7@us.toml deleted file mode 100644 index b630b13a9c..0000000000 --- a/providers/edenai/models/vertex/claude-opus-4-7@us.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-opus-4-7" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 diff --git a/providers/edenai/models/vertex/claude-opus-4-8.toml b/providers/edenai/models/vertex/claude-opus-4-8.toml deleted file mode 100644 index 41d61ef245..0000000000 --- a/providers/edenai/models/vertex/claude-opus-4-8.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "anthropic/claude-opus-4-8" -release_date = "2026-05-27" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5 -output = 25 -cache_read = 0.5 -cache_write = 6.25 diff --git a/providers/edenai/models/vertex/claude-opus-4-8@eu.toml b/providers/edenai/models/vertex/claude-opus-4-8@eu.toml deleted file mode 100644 index 081a5cb685..0000000000 --- a/providers/edenai/models/vertex/claude-opus-4-8@eu.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "anthropic/claude-opus-4-8" -release_date = "2026-05-27" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 diff --git a/providers/edenai/models/vertex/claude-opus-4-8@us.toml b/providers/edenai/models/vertex/claude-opus-4-8@us.toml deleted file mode 100644 index 081a5cb685..0000000000 --- a/providers/edenai/models/vertex/claude-opus-4-8@us.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "anthropic/claude-opus-4-8" -release_date = "2026-05-27" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 5.5 -output = 27.5 -cache_read = 0.55 -cache_write = 6.875 diff --git a/providers/edenai/models/vertex/claude-sonnet-4-5.toml b/providers/edenai/models/vertex/claude-sonnet-4-5.toml deleted file mode 100644 index 410da17f7e..0000000000 --- a/providers/edenai/models/vertex/claude-sonnet-4-5.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "anthropic/claude-sonnet-4-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 -cache_write = 3.75 - -[limit] -context = 1_000_000 diff --git a/providers/edenai/models/vertex/claude-sonnet-4-6.toml b/providers/edenai/models/vertex/claude-sonnet-4-6.toml deleted file mode 100644 index 2a98900c73..0000000000 --- a/providers/edenai/models/vertex/claude-sonnet-4-6.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-sonnet-4-6" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 3 -output = 15 -cache_read = 0.3 -cache_write = 3.75 diff --git a/providers/edenai/models/vertex/claude-sonnet-5.toml b/providers/edenai/models/vertex/claude-sonnet-5.toml deleted file mode 100644 index a341529363..0000000000 --- a/providers/edenai/models/vertex/claude-sonnet-5.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-sonnet-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 2 -output = 10 -cache_read = 0.2 -cache_write = 2.5 diff --git a/providers/edenai/models/vertex/claude-sonnet-5@eu.toml b/providers/edenai/models/vertex/claude-sonnet-5@eu.toml deleted file mode 100644 index fb58d97d3c..0000000000 --- a/providers/edenai/models/vertex/claude-sonnet-5@eu.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-sonnet-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 2.2 -output = 11 -cache_read = 0.22 -cache_write = 2.75 diff --git a/providers/edenai/models/vertex/claude-sonnet-5@us.toml b/providers/edenai/models/vertex/claude-sonnet-5@us.toml deleted file mode 100644 index fb58d97d3c..0000000000 --- a/providers/edenai/models/vertex/claude-sonnet-5@us.toml +++ /dev/null @@ -1,10 +0,0 @@ -base_model = "anthropic/claude-sonnet-5" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 2.2 -output = 11 -cache_read = 0.22 -cache_write = 2.75 diff --git a/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas.toml b/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas.toml deleted file mode 100644 index 5a905a06ad..0000000000 --- a/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "deepseek-ai/deepseek-v3.2-maas" -description = "DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance. It introduces DeepSeek Sparse Attention (DSA), a fine-grained sparse attention mechanism..." -release_date = "2025-12-01" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.56 -output = 1.68 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@eu.toml b/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@eu.toml deleted file mode 100644 index 60a1fa8d4c..0000000000 --- a/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@eu.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "deepseek-ai/deepseek-v3.2-maas" -description = "DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance. It introduces DeepSeek Sparse Attention (DSA), a fine-grained sparse attention mechanism..." -release_date = "2025-12-01" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.616 -output = 1.848 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@us.toml b/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@us.toml deleted file mode 100644 index 60a1fa8d4c..0000000000 --- a/providers/edenai/models/vertex/deepseek-ai/deepseek-v3.2-maas@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "deepseek-ai/deepseek-v3.2-maas" -description = "DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance. It introduces DeepSeek Sparse Attention (DSA), a fine-grained sparse attention mechanism..." -release_date = "2025-12-01" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.616 -output = 1.848 - -[limit] -context = 163_840 -output = 163_840 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/gemini-2.5-flash-image.toml b/providers/edenai/models/vertex/gemini-2.5-flash-image.toml deleted file mode 100644 index 87b433d43e..0000000000 --- a/providers/edenai/models/vertex/gemini-2.5-flash-image.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemini-2.5-flash-image" -release_date = "2025-10-07" -last_updated = "2026-08-01" -reasoning = false -structured_output = true - -[cost] -input = 0.3 -output = 2.5 -cache_read = 0.03 -cache_write = 0.083333 -input_audio = 1 diff --git a/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml b/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml deleted file mode 100644 index 8a35c9fb41..0000000000 --- a/providers/edenai/models/vertex/gemini-2.5-flash-lite.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemini-2.5-flash-lite" -release_date = "2025-07-22" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.1 -output = 0.4 -reasoning = 0.4 -cache_read = 0.01 -cache_write = 0.083333 -input_audio = 0.3 diff --git a/providers/edenai/models/vertex/gemini-2.5-flash.toml b/providers/edenai/models/vertex/gemini-2.5-flash.toml deleted file mode 100644 index 446ecbc568..0000000000 --- a/providers/edenai/models/vertex/gemini-2.5-flash.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-2.5-flash" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 -reasoning = 2.5 -cache_read = 0.03 -cache_write = 0.083333 -input_audio = 1 diff --git a/providers/edenai/models/vertex/gemini-2.5-pro.toml b/providers/edenai/models/vertex/gemini-2.5-pro.toml deleted file mode 100644 index cf00e491e7..0000000000 --- a/providers/edenai/models/vertex/gemini-2.5-pro.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-2.5-pro" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.25 -output = 10 -reasoning = 10 -cache_read = 0.125 -cache_write = 0.375 -input_audio = 1.25 diff --git a/providers/edenai/models/vertex/gemini-3-flash-preview.toml b/providers/edenai/models/vertex/gemini-3-flash-preview.toml deleted file mode 100644 index fc73b39efa..0000000000 --- a/providers/edenai/models/vertex/gemini-3-flash-preview.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3-flash-preview" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.5 -output = 3 -reasoning = 3 -cache_read = 0.05 -cache_write = 0.083333 -input_audio = 1 diff --git a/providers/edenai/models/vertex/gemini-3-pro-image.toml b/providers/edenai/models/vertex/gemini-3-pro-image.toml deleted file mode 100644 index f1aaa59f85..0000000000 --- a/providers/edenai/models/vertex/gemini-3-pro-image.toml +++ /dev/null @@ -1,13 +0,0 @@ -base_model = "google/gemini-3-pro-image" -release_date = "2026-06-18" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 2 -output = 12 -reasoning = 12 -cache_read = 0.2 -cache_write = 0.375 -input_audio = 2 diff --git a/providers/edenai/models/vertex/gemini-3.1-flash-image.toml b/providers/edenai/models/vertex/gemini-3.1-flash-image.toml deleted file mode 100644 index 9b22e48977..0000000000 --- a/providers/edenai/models/vertex/gemini-3.1-flash-image.toml +++ /dev/null @@ -1,12 +0,0 @@ -base_model = "google/gemini-3.1-flash-image" -release_date = "2026-06-18" -last_updated = "2026-08-01" -structured_output = true -reasoning_options = [] - -[cost] -input = 0.5 -output = 3 - -[modalities] -input = ["image", "text"] diff --git a/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml b/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml deleted file mode 100644 index 2b8ebc0c51..0000000000 --- a/providers/edenai/models/vertex/gemini-3.1-flash-lite-image.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "google/gemini-3.1-flash-lite-image" -last_updated = "2026-08-01" -tool_call = false -structured_output = true -reasoning_options = [] - -[cost] -input = 0.25 -output = 1.5 diff --git a/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml b/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml deleted file mode 100644 index 47f1b71ebb..0000000000 --- a/providers/edenai/models/vertex/gemini-3.1-pro-preview.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.1-pro-preview" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2 -output = 12 -reasoning = 12 -cache_read = 0.2 -cache_write = 0.375 -input_audio = 2 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml b/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml deleted file mode 100644 index d3809ec02a..0000000000 --- a/providers/edenai/models/vertex/gemini-3.5-flash-lite.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.5-flash-lite" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 -reasoning = 2.5 -cache_read = 0.03 -cache_write = 0.083333 -input_audio = 0.3 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml b/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml deleted file mode 100644 index d3809ec02a..0000000000 --- a/providers/edenai/models/vertex/gemini-3.5-flash-lite@eu.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.5-flash-lite" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 -reasoning = 2.5 -cache_read = 0.03 -cache_write = 0.083333 -input_audio = 0.3 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml b/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml deleted file mode 100644 index d3809ec02a..0000000000 --- a/providers/edenai/models/vertex/gemini-3.5-flash-lite@us.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.5-flash-lite" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 0.3 -output = 2.5 -reasoning = 2.5 -cache_read = 0.03 -cache_write = 0.083333 -input_audio = 0.3 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash.toml b/providers/edenai/models/vertex/gemini-3.5-flash.toml deleted file mode 100644 index 45c1ca2aa2..0000000000 --- a/providers/edenai/models/vertex/gemini-3.5-flash.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.5-flash" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.5 -output = 9 -reasoning = 9 -cache_read = 0.15 -cache_write = 0.083333 -input_audio = 3 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml b/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml deleted file mode 100644 index 45c1ca2aa2..0000000000 --- a/providers/edenai/models/vertex/gemini-3.5-flash@eu.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.5-flash" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.5 -output = 9 -reasoning = 9 -cache_read = 0.15 -cache_write = 0.083333 -input_audio = 3 diff --git a/providers/edenai/models/vertex/gemini-3.5-flash@us.toml b/providers/edenai/models/vertex/gemini-3.5-flash@us.toml deleted file mode 100644 index 45c1ca2aa2..0000000000 --- a/providers/edenai/models/vertex/gemini-3.5-flash@us.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.5-flash" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.5 -output = 9 -reasoning = 9 -cache_read = 0.15 -cache_write = 0.083333 -input_audio = 3 diff --git a/providers/edenai/models/vertex/gemini-3.6-flash.toml b/providers/edenai/models/vertex/gemini-3.6-flash.toml deleted file mode 100644 index bbbf040226..0000000000 --- a/providers/edenai/models/vertex/gemini-3.6-flash.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "google/gemini-3.6-flash" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.5 -output = 7.5 -reasoning = 7.5 -cache_read = 0.15 -cache_write = 0.083333 -input_audio = 1.5 diff --git a/providers/edenai/models/vertex/minimaxai/minimax-m2-maas.toml b/providers/edenai/models/vertex/minimaxai/minimax-m2-maas.toml deleted file mode 100644 index 6cd6535b7d..0000000000 --- a/providers/edenai/models/vertex/minimaxai/minimax-m2-maas.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "minimaxai/minimax-m2-maas" -description = "MiniMax-M2 is a compact, high-efficiency large language model optimized for end-to-end coding and agentic workflows. With 10 billion activated parameters (230 billion total), it delivers near-frontier intelligence across general reasoning,..." -release_date = "2025-10-23" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 1.2 - -[limit] -context = 196_608 -output = 196_608 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/moonshotai/kimi-k2-thinking-maas.toml b/providers/edenai/models/vertex/moonshotai/kimi-k2-thinking-maas.toml deleted file mode 100644 index 0af7145082..0000000000 --- a/providers/edenai/models/vertex/moonshotai/kimi-k2-thinking-maas.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "moonshotai/kimi-k2-thinking-maas" -description = "Kimi K2 Thinking is Moonshot AI’s most advanced open reasoning model to date, extending the K2 series into agentic, long-horizon reasoning. Built on the trillion-parameter Mixture-of-Experts (MoE) architecture introduced in..." -release_date = "2025-11-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 2.5 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas.toml deleted file mode 100644 index 2c9f00045f..0000000000 --- a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen/qwen3-next-80b-a3b-instruct-maas" -description = "Qwen3-Next-80B-A3B-Instruct is an instruction-tuned chat model in the Qwen3-Next series optimized for fast, stable responses without “thinking” traces. It targets complex tasks across reasoning, code generation, knowledge QA, and multilingual..." -release_date = "2025-09-11" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.15 -output = 1.2 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@eu.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@eu.toml deleted file mode 100644 index 2d69a80d0d..0000000000 --- a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@eu.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen/qwen3-next-80b-a3b-instruct-maas" -description = "Qwen3-Next-80B-A3B-Instruct is an instruction-tuned chat model in the Qwen3-Next series optimized for fast, stable responses without “thinking” traces. It targets complex tasks across reasoning, code generation, knowledge QA, and multilingual..." -release_date = "2025-09-11" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.165 -output = 1.32 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@us.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@us.toml deleted file mode 100644 index 2d69a80d0d..0000000000 --- a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-instruct-maas@us.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "qwen/qwen3-next-80b-a3b-instruct-maas" -description = "Qwen3-Next-80B-A3B-Instruct is an instruction-tuned chat model in the Qwen3-Next series optimized for fast, stable responses without “thinking” traces. It targets complex tasks across reasoning, code generation, knowledge QA, and multilingual..." -release_date = "2025-09-11" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.165 -output = 1.32 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas.toml deleted file mode 100644 index 44e5de43f2..0000000000 --- a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen/qwen3-next-80b-a3b-thinking-maas" -description = "Qwen3-Next-80B-A3B-Thinking is a reasoning-first chat model in the Qwen3-Next line that outputs structured “thinking” traces by default. It’s designed for hard multi-step problems; math proofs, code synthesis/debugging, logic, and agentic..." -release_date = "2025-09-11" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.15 -output = 1.2 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@eu.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@eu.toml deleted file mode 100644 index 74cac97591..0000000000 --- a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@eu.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen/qwen3-next-80b-a3b-thinking-maas" -description = "Qwen3-Next-80B-A3B-Thinking is a reasoning-first chat model in the Qwen3-Next line that outputs structured “thinking” traces by default. It’s designed for hard multi-step problems; math proofs, code synthesis/debugging, logic, and agentic..." -release_date = "2025-09-11" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.165 -output = 1.32 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@us.toml b/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@us.toml deleted file mode 100644 index 74cac97591..0000000000 --- a/providers/edenai/models/vertex/qwen/qwen3-next-80b-a3b-thinking-maas@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "qwen/qwen3-next-80b-a3b-thinking-maas" -description = "Qwen3-Next-80B-A3B-Thinking is a reasoning-first chat model in the Qwen3-Next line that outputs structured “thinking” traces by default. It’s designed for hard multi-step problems; math proofs, code synthesis/debugging, logic, and agentic..." -release_date = "2025-09-11" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.165 -output = 1.32 - -[limit] -context = 262_144 -output = 262_144 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/zai-org/glm-4.7-maas.toml b/providers/edenai/models/vertex/zai-org/glm-4.7-maas.toml deleted file mode 100644 index b7e0e42549..0000000000 --- a/providers/edenai/models/vertex/zai-org/glm-4.7-maas.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "zai-org/glm-4.7-maas" -description = "GLM-4.7 is Z.ai’s latest flagship model, featuring upgrades in two key areas: enhanced programming capabilities and more stable multi-step reasoning/execution. It demonstrates significant improvements in executing complex agent tasks while..." -release_date = "2025-12-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 2.2 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/zai-org/glm-4.7-maas@eu.toml b/providers/edenai/models/vertex/zai-org/glm-4.7-maas@eu.toml deleted file mode 100644 index fbfbaad543..0000000000 --- a/providers/edenai/models/vertex/zai-org/glm-4.7-maas@eu.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "zai-org/glm-4.7-maas" -description = "GLM-4.7 is Z.ai’s latest flagship model, featuring upgrades in two key areas: enhanced programming capabilities and more stable multi-step reasoning/execution. It demonstrates significant improvements in executing complex agent tasks while..." -release_date = "2025-12-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.66 -output = 2.42 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/vertex/zai-org/glm-4.7-maas@us.toml b/providers/edenai/models/vertex/zai-org/glm-4.7-maas@us.toml deleted file mode 100644 index fbfbaad543..0000000000 --- a/providers/edenai/models/vertex/zai-org/glm-4.7-maas@us.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "zai-org/glm-4.7-maas" -description = "GLM-4.7 is Z.ai’s latest flagship model, featuring upgrades in two key areas: enhanced programming capabilities and more stable multi-step reasoning/execution. It demonstrates significant improvements in executing complex agent tasks while..." -release_date = "2025-12-22" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.66 -output = 2.42 - -[limit] -context = 200_000 -output = 200_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-beta.toml b/providers/edenai/models/xai/grok-3-beta.toml deleted file mode 100644 index 8c648e2e57..0000000000 --- a/providers/edenai/models/xai/grok-3-beta.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-3-beta" -description = "Grok 3 is the latest model from xAI. It's their flagship model that excels at enterprise use cases like data extraction, coding, and text summarization. Possesses deep domain knowledge in..." -release_date = "2025-04-09" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3 -output = 15 -cache_read = 0.75 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-fast-beta.toml b/providers/edenai/models/xai/grok-3-fast-beta.toml deleted file mode 100644 index 8101d9fafe..0000000000 --- a/providers/edenai/models/xai/grok-3-fast-beta.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-3-fast-beta" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 5 -output = 25 -cache_read = 1.25 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-fast-latest.toml b/providers/edenai/models/xai/grok-3-fast-latest.toml deleted file mode 100644 index 1f2b2ffbb0..0000000000 --- a/providers/edenai/models/xai/grok-3-fast-latest.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-3-fast-latest" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 5 -output = 25 -cache_read = 1.25 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-latest.toml b/providers/edenai/models/xai/grok-3-latest.toml deleted file mode 100644 index e6e5be47fa..0000000000 --- a/providers/edenai/models/xai/grok-3-latest.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-3-latest" -description = "Grok model for agentic tool use, reasoning, coding, and live assistance" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3 -output = 15 -cache_read = 0.75 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-mini-fast-beta.toml b/providers/edenai/models/xai/grok-3-mini-fast-beta.toml deleted file mode 100644 index 8ea120e261..0000000000 --- a/providers/edenai/models/xai/grok-3-mini-fast-beta.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-3-mini-fast-beta" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 4 -cache_read = 0.15 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-mini-fast-latest.toml b/providers/edenai/models/xai/grok-3-mini-fast-latest.toml deleted file mode 100644 index 449dda35a2..0000000000 --- a/providers/edenai/models/xai/grok-3-mini-fast-latest.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-3-mini-fast-latest" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 4 -cache_read = 0.15 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-mini-fast.toml b/providers/edenai/models/xai/grok-3-mini-fast.toml deleted file mode 100644 index d1ec5bf461..0000000000 --- a/providers/edenai/models/xai/grok-3-mini-fast.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-3-mini-fast" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.6 -output = 4 -cache_read = 0.15 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-3-mini-latest.toml b/providers/edenai/models/xai/grok-3-mini-latest.toml deleted file mode 100644 index ece5a0d03e..0000000000 --- a/providers/edenai/models/xai/grok-3-mini-latest.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-3-mini-latest" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.3 -output = 0.5 -cache_read = 0.075 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-3.toml b/providers/edenai/models/xai/grok-3.toml deleted file mode 100644 index a2206413e1..0000000000 --- a/providers/edenai/models/xai/grok-3.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-3" -description = "Grok 3 is the latest model from xAI. It's their flagship model that excels at enterprise use cases like data extraction, coding, and text summarization. Possesses deep domain knowledge in..." -release_date = "2025-06-10" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3 -output = 15 -cache_read = 0.75 - -[limit] -context = 131_072 -output = 131_072 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-0709.toml b/providers/edenai/models/xai/grok-4-0709.toml deleted file mode 100644 index 93d68f2e15..0000000000 --- a/providers/edenai/models/xai/grok-4-0709.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "grok-4-0709" -description = "Grok model for agentic tool use, reasoning, coding, and live assistance" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3 -output = 15 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast-non-reasoning-latest.toml b/providers/edenai/models/xai/grok-4-1-fast-non-reasoning-latest.toml deleted file mode 100644 index 2d66ae301d..0000000000 --- a/providers/edenai/models/xai/grok-4-1-fast-non-reasoning-latest.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-4-1-fast-non-reasoning-latest" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.2 -output = 0.5 -cache_read = 0.05 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["audio", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast-non-reasoning.toml b/providers/edenai/models/xai/grok-4-1-fast-non-reasoning.toml deleted file mode 100644 index 00eb3d5a19..0000000000 --- a/providers/edenai/models/xai/grok-4-1-fast-non-reasoning.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-4-1-fast-non-reasoning" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = true -open_weights = false - -[cost] -input = 0.2 -output = 0.5 -cache_read = 0.05 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["audio", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast-reasoning-latest.toml b/providers/edenai/models/xai/grok-4-1-fast-reasoning-latest.toml deleted file mode 100644 index d09b36c32a..0000000000 --- a/providers/edenai/models/xai/grok-4-1-fast-reasoning-latest.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-4-1-fast-reasoning-latest" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 0.5 -cache_read = 0.05 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["audio", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast-reasoning.toml b/providers/edenai/models/xai/grok-4-1-fast-reasoning.toml deleted file mode 100644 index d242c3044a..0000000000 --- a/providers/edenai/models/xai/grok-4-1-fast-reasoning.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-4-1-fast-reasoning" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 0.5 -cache_read = 0.05 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["audio", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-1-fast.toml b/providers/edenai/models/xai/grok-4-1-fast.toml deleted file mode 100644 index 642a0aaa98..0000000000 --- a/providers/edenai/models/xai/grok-4-1-fast.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-4-1-fast" -description = "Grok 4.1 Fast is xAI's best agentic tool calling model that shines in real-world use cases like customer support and deep research. 2M context window. Reasoning can be enabled/disabled using..." -release_date = "2025-11-19" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 0.5 -cache_read = 0.05 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["audio", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-fast-non-reasoning.toml b/providers/edenai/models/xai/grok-4-fast-non-reasoning.toml deleted file mode 100644 index 63f1c73a48..0000000000 --- a/providers/edenai/models/xai/grok-4-fast-non-reasoning.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-4-fast-non-reasoning" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.5 -cache_read = 0.05 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-fast-reasoning.toml b/providers/edenai/models/xai/grok-4-fast-reasoning.toml deleted file mode 100644 index 6064eae96e..0000000000 --- a/providers/edenai/models/xai/grok-4-fast-reasoning.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-4-fast-reasoning" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 0.2 -output = 0.5 -cache_read = 0.05 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-fast.toml b/providers/edenai/models/xai/grok-4-fast.toml deleted file mode 100644 index 38e488310b..0000000000 --- a/providers/edenai/models/xai/grok-4-fast.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-4-fast" -description = "Grok 4 Fast is xAI's latest multimodal model with SOTA cost-efficiency and a 2M token context window. It comes in two flavors: non-reasoning and reasoning. Read more about the model..." -release_date = "2025-09-19" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 0.5 -cache_read = 0.05 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["pdf", "image", "text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4-latest.toml b/providers/edenai/models/xai/grok-4-latest.toml deleted file mode 100644 index 342d81166b..0000000000 --- a/providers/edenai/models/xai/grok-4-latest.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "grok-4-latest" -description = "Grok model for agentic tool use, reasoning, coding, and live assistance" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3 -output = 15 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml b/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml deleted file mode 100644 index 346a2cd9a9..0000000000 --- a/providers/edenai/models/xai/grok-4.20-0309-non-reasoning.toml +++ /dev/null @@ -1,15 +0,0 @@ -base_model = "xai/grok-4.20-0309-non-reasoning" -release_date = "2026-06-05" -last_updated = "2026-08-01" -structured_output = false - -[cost] -input = 1.25 -output = 2.5 -cache_read = 0.2 - -[limit] -context = 2_000_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml b/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml deleted file mode 100644 index 41d33ca629..0000000000 --- a/providers/edenai/models/xai/grok-4.20-0309-reasoning.toml +++ /dev/null @@ -1,16 +0,0 @@ -base_model = "xai/grok-4.20-0309-reasoning" -release_date = "2026-04-19" -last_updated = "2026-08-01" -structured_output = false -reasoning_options = [] - -[cost] -input = 1.25 -output = 2.5 -cache_read = 0.2 - -[limit] -context = 2_000_000 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/xai/grok-4.20-beta-0309-non-reasoning.toml b/providers/edenai/models/xai/grok-4.20-beta-0309-non-reasoning.toml deleted file mode 100644 index 5bc198e143..0000000000 --- a/providers/edenai/models/xai/grok-4.20-beta-0309-non-reasoning.toml +++ /dev/null @@ -1,22 +0,0 @@ -name = "grok-4.20-beta-0309-non-reasoning" -description = "Grok model for agentic tool use, reasoning, coding, and live assistance" -release_date = "2026-03-19" -last_updated = "2026-08-01" -attachment = true -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 2 -output = 6 -cache_read = 0.2 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["image", "text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.20-beta-0309-reasoning.toml b/providers/edenai/models/xai/grok-4.20-beta-0309-reasoning.toml deleted file mode 100644 index d27c6073bc..0000000000 --- a/providers/edenai/models/xai/grok-4.20-beta-0309-reasoning.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-4.20-beta-0309-reasoning" -description = "Grok model for agentic tool use, reasoning, coding, and live assistance" -release_date = "2026-03-19" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 2 -output = 6 -cache_read = 0.2 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["image", "text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.20.toml b/providers/edenai/models/xai/grok-4.20.toml deleted file mode 100644 index 8348b3aa15..0000000000 --- a/providers/edenai/models/xai/grok-4.20.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-4.20" -description = "Grok 4.20 is a reasoning model from xAI with industry-leading speed and agentic tool calling capabilities. It combines the lowest hallucination rate on the market with strict prompt adherance, delivering..." -release_date = "2026-03-31" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.25 -output = 2.5 -cache_read = 0.2 - -[limit] -context = 2_000_000 -output = 2_000_000 - -[modalities] -input = ["text", "image", "pdf"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.3-latest.toml b/providers/edenai/models/xai/grok-4.3-latest.toml deleted file mode 100644 index 5491ad260b..0000000000 --- a/providers/edenai/models/xai/grok-4.3-latest.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-4.3-latest" -description = "Grok model for agentic tool use, reasoning, coding, and live assistance" -release_date = "2026-05-07" -last_updated = "2026-08-01" -attachment = true -reasoning = true -tool_call = true -structured_output = true -open_weights = false -reasoning_options = [] - -[cost] -input = 1.25 -output = 2.5 -cache_read = 0.2 - -[limit] -context = 1_000_000 -output = 1_000_000 - -[modalities] -input = ["image", "text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-4.3.toml b/providers/edenai/models/xai/grok-4.3.toml deleted file mode 100644 index bc19cdcc9c..0000000000 --- a/providers/edenai/models/xai/grok-4.3.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "xai/grok-4.3" -release_date = "2026-04-30" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1.25 -output = 2.5 -cache_read = 0.2 diff --git a/providers/edenai/models/xai/grok-4.5.toml b/providers/edenai/models/xai/grok-4.5.toml deleted file mode 100644 index c05a3d8385..0000000000 --- a/providers/edenai/models/xai/grok-4.5.toml +++ /dev/null @@ -1,11 +0,0 @@ -base_model = "xai/grok-4.5" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 2 -output = 6 -cache_read = 0.3 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/xai/grok-4.toml b/providers/edenai/models/xai/grok-4.toml deleted file mode 100644 index f2462d6cc3..0000000000 --- a/providers/edenai/models/xai/grok-4.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "grok-4" -description = "Grok 4 is xAI's latest reasoning model with a 256k context window. It supports parallel tool calling, structured outputs, and both image and text inputs. Note that reasoning is not..." -release_date = "2025-07-09" -last_updated = "2026-08-01" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3 -output = 15 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-build-0.1.toml b/providers/edenai/models/xai/grok-build-0.1.toml deleted file mode 100644 index 0b62508a96..0000000000 --- a/providers/edenai/models/xai/grok-build-0.1.toml +++ /dev/null @@ -1,9 +0,0 @@ -base_model = "xai/grok-build-0.1" -release_date = "2026-05-20" -last_updated = "2026-08-01" -reasoning_options = [] - -[cost] -input = 1 -output = 2 -cache_read = 0.2 diff --git a/providers/edenai/models/xai/grok-code-fast-1-0825.toml b/providers/edenai/models/xai/grok-code-fast-1-0825.toml deleted file mode 100644 index ff478bb14b..0000000000 --- a/providers/edenai/models/xai/grok-code-fast-1-0825.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-code-fast-1-0825" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 1.5 -cache_read = 0.02 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-code-fast-1.toml b/providers/edenai/models/xai/grok-code-fast-1.toml deleted file mode 100644 index 043d5f4e91..0000000000 --- a/providers/edenai/models/xai/grok-code-fast-1.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-code-fast-1" -description = "Grok Code Fast 1 is a speedy and economical reasoning model that excels at agentic coding. With reasoning traces visible in the response, developers can steer Grok Code for high-quality..." -release_date = "2025-08-26" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 1.5 -cache_read = 0.02 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] diff --git a/providers/edenai/models/xai/grok-code-fast.toml b/providers/edenai/models/xai/grok-code-fast.toml deleted file mode 100644 index 13a270234c..0000000000 --- a/providers/edenai/models/xai/grok-code-fast.toml +++ /dev/null @@ -1,23 +0,0 @@ -name = "grok-code-fast" -description = "Fast Grok model for responsive chat, reasoning, and tool-assisted work" -release_date = "2026-01-06" -last_updated = "2026-08-01" -attachment = false -reasoning = true -tool_call = true -structured_output = false -open_weights = false -reasoning_options = [] - -[cost] -input = 0.2 -output = 1.5 -cache_read = 0.02 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] From efb9ddf2a271d445ac4a8f37b16f2fb9969adc74 Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 15:27:14 +0100 Subject: [PATCH 07/14] fix(edenai): add empty models dir so validate can scan it --- providers/edenai/models/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 providers/edenai/models/.gitkeep diff --git a/providers/edenai/models/.gitkeep b/providers/edenai/models/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 From a09224ffb3f5b1df9bc7b25e8cc2c5f33b243c84 Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 15:43:45 +0100 Subject: [PATCH 08/14] fix(edenai): factor Bedrock IDs and stop clobbering inherited capabilities --- packages/core/src/sync/providers/edenai.ts | 122 +++++++++++++++------ 1 file changed, 86 insertions(+), 36 deletions(-) diff --git a/packages/core/src/sync/providers/edenai.ts b/packages/core/src/sync/providers/edenai.ts index 5a586f5d21..7be4bc7023 100644 --- a/packages/core/src/sync/providers/edenai.ts +++ b/packages/core/src/sync/providers/edenai.ts @@ -134,6 +134,26 @@ function stripRegion(value: string): string { return value.replace(/@[a-z0-9-]+$/i, ""); } +// Bedrock/gateway names bury the underlying model under provider prefixes and +// version suffixes: `anthropic.claude-opus-4-6-v1`, `meta.llama3-70b-instruct-v1:0`. +// Emit progressively-stripped candidates so resolveModelMetadataBaseModel can +// match the canonical `/` id. +function normalizeGatewayName(name: string): string[] { + const out = new Set([name]); + let s = name.replace(/:\d+$/, ""); + s = s.replace(/-v\d+$/, ""); + if (s !== name) out.add(s); + + for (const current of [...out]) { + const dotted = current.match(/^([a-z][a-z0-9-]*)\.(.+)$/); + if (dotted) { + out.add(`${dotted[1]}/${dotted[2]}`); + out.add(dotted[2]!); + } + } + return [...out]; +} + function candidateBaseModels(model: EdenAIModel): string[] { const cleanModelName = stripRegion(model.model_name); const cleanID = stripRegion(model.id); @@ -141,15 +161,24 @@ function candidateBaseModels(model: EdenAIModel): string[] { ? cleanID.slice(model.owned_by.length + 1) : cleanID; - const candidates: string[] = []; + const candidates = new Set(); const directMeta = DIRECT_METADATA_PROVIDER[model.owned_by]; if (directMeta !== undefined) { - candidates.push(`${directMeta}/${cleanModelName}`); - candidates.push(`${directMeta}/${suffix}`); + candidates.add(`${directMeta}/${cleanModelName}`); + candidates.add(`${directMeta}/${suffix}`); } - candidates.push(cleanModelName); - candidates.push(suffix); - return [...new Set(candidates)]; + candidates.add(cleanModelName); + candidates.add(suffix); + + for (const base of [cleanModelName, suffix]) { + for (const normalized of normalizeGatewayName(base)) { + candidates.add(normalized); + if (directMeta !== undefined) { + candidates.add(`${directMeta}/${normalized}`); + } + } + } + return [...candidates]; } function resolveEdenBaseModel( @@ -237,12 +266,16 @@ export function buildEdenAIModel( const caps = model.capabilities; const input = inputModalitiesFromCapabilities(caps); const output = normalizeModalities(caps.output_modalities ?? [], ["text"]); + const reasoningReported = typeof caps.supports_reasoning === "boolean"; const reasoning = caps.supports_reasoning === true; + const toolCallReported = + typeof caps.supports_function_calling === "boolean" || + typeof caps.supports_tool_choice === "boolean"; const toolCall = caps.supports_function_calling === true || caps.supports_tool_choice === true; + const structuredOutputReported = typeof caps.supports_response_schema === "boolean"; const structuredOutput = caps.supports_response_schema === true; const attachment = input.some((value) => value !== "text"); - const openWeights = existing?.open_weights ?? false; const context = model.context_length ?? 0; // Eden's /v3/models does not return max output tokens. Leave output undefined // for factored files so base_model inheritance provides the authoritative @@ -256,40 +289,42 @@ export function buildEdenAIModel( existing?.release_date ?? dateFromTimestamp(model.created) ?? today; const cost = buildCost(model, reasoning, existing?.cost); - const values: Partial = { - attachment, - modalities: { input, output }, - reasoning, - release_date: releaseDate, - last_updated: existing?.last_updated ?? today, - tool_call: toolCall, - structured_output: structuredOutput, - temperature: existing?.temperature, - knowledge: existing?.knowledge, - open_weights: openWeights, - status: existing?.status, - interleaved: existing?.interleaved, - cost, - limit, - }; - // Eden's API reports reasoning support but not the control surface - // (effort levels / budget tokens). Preserve any authored options; otherwise - // emit an empty array per AGENTS.md guidance for reasoning models with no - // verified control. - if (reasoning) { - values.reasoning_options = existing?.reasoning_options ?? []; - } - const resolvedBase = resolveEdenBaseModel(model, existing?.base_model); if (resolvedBase !== undefined) { + // Factored: only override cost/limit/modalities/timestamps. Leave + // capability booleans and open_weights unset so `base_model` inheritance + // from `models/` provides the authoritative values (matches DeepInfra / + // LLM Gateway patterns; AGENTS.md merge rules). + const factored: Partial = { + release_date: releaseDate, + last_updated: existing?.last_updated ?? today, + status: existing?.status, + interleaved: existing?.interleaved, + cost, + limit, + modalities: { input, output }, + }; + // reasoning_options is provider-specific and never inherited; declare it + // when the model reasons (empty array = no verified control surface). + if (reasoning || existing?.reasoning_options !== undefined) { + factored.reasoning_options = existing?.reasoning_options ?? []; + } return factorBaseModel( resolvedBase, - values, + factored, limit, existing?.base_model === resolvedBase ? existing.base_model_omit : undefined, ); } + // Inline: schema requires the capability booleans, open_weights, and + // limit.output. Fall back to safe defaults when Eden is silent. + const inlineReasoning = reasoningReported ? reasoning : existing?.reasoning ?? false; + const inlineToolCall = toolCallReported ? toolCall : existing?.tool_call ?? false; + const inlineStructuredOutput = structuredOutputReported + ? structuredOutput + : existing?.structured_output; + const openWeights = existing?.open_weights ?? false; const name = existing?.name ?? model.model_name; const description = existing?.description ?? @@ -298,9 +333,9 @@ export function buildEdenAIModel( id: model.id, name, family: existing?.family, - reasoning, - tool_call: toolCall, - structured_output: structuredOutput, + reasoning: inlineReasoning, + tool_call: inlineToolCall, + structured_output: inlineStructuredOutput, open_weights: openWeights, limit, modalities: { input, output }, @@ -310,7 +345,22 @@ export function buildEdenAIModel( name, description, family: existing?.family, - ...values, + attachment, + modalities: { input, output }, + reasoning: inlineReasoning, + reasoning_options: inlineReasoning + ? existing?.reasoning_options ?? [] + : undefined, + tool_call: inlineToolCall, + structured_output: inlineStructuredOutput, + temperature: existing?.temperature, + knowledge: existing?.knowledge, + open_weights: openWeights, + release_date: releaseDate, + last_updated: existing?.last_updated ?? today, + status: existing?.status, + interleaved: existing?.interleaved, + cost, limit: { ...limit, output: limit.output ?? context }, provider: existing?.provider, experimental: existing?.experimental, From bab244871b60f92f807dd7e5d2da040b43076197 Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 16:02:16 +0100 Subject: [PATCH 09/14] fix(edenai): write attachment alongside modalities on factored path --- packages/core/src/sync/providers/edenai.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/core/src/sync/providers/edenai.ts b/packages/core/src/sync/providers/edenai.ts index 7be4bc7023..93d1b64b82 100644 --- a/packages/core/src/sync/providers/edenai.ts +++ b/packages/core/src/sync/providers/edenai.ts @@ -294,7 +294,10 @@ export function buildEdenAIModel( // Factored: only override cost/limit/modalities/timestamps. Leave // capability booleans and open_weights unset so `base_model` inheritance // from `models/` provides the authoritative values (matches DeepInfra / - // LLM Gateway patterns; AGENTS.md merge rules). + // LLM Gateway patterns; AGENTS.md merge rules). `attachment` is always + // written alongside `modalities` so the two stay in sync — writing + // `modalities` alone can leave inherited `attachment` disagreeing with + // the overridden input list. const factored: Partial = { release_date: releaseDate, last_updated: existing?.last_updated ?? today, @@ -303,6 +306,7 @@ export function buildEdenAIModel( cost, limit, modalities: { input, output }, + attachment, }; // reasoning_options is provider-specific and never inherited; declare it // when the model reasons (empty array = no verified control surface). From 7084bab860e3cff357033925410730a17addc7ab Mon Sep 17 00:00:00 2001 From: YacineMK Date: Sat, 1 Aug 2026 16:13:30 +0100 Subject: [PATCH 10/14] fix(edenai): replace mask with fill-rule=evenodd so logo survives site inlining --- providers/edenai/logo.svg | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/providers/edenai/logo.svg b/providers/edenai/logo.svg index 6582826819..533f35d718 100644 --- a/providers/edenai/logo.svg +++ b/providers/edenai/logo.svg @@ -1,10 +1,3 @@ - - - - - - - - + From d2f2f16e1d0fdaeba4997385008416f0342ebf23 Mon Sep 17 00:00:00 2001 From: YacineMK Date: Tue, 4 Aug 2026 01:50:08 +0100 Subject: [PATCH 11/14] feat(edenai): add curated seed models --- providers/edenai/models/.gitkeep | 0 .../models/anthropic/claude-haiku-4-5.toml | 9 ++++++++ .../models/anthropic/claude-opus-4-7.toml | 9 ++++++++ .../models/anthropic/claude-sonnet-4-6.toml | 9 ++++++++ .../models/cohere/command-a-03-2025.toml | 9 ++++++++ .../models/cohere/command-r-plus-08-2024.toml | 6 ++++++ .../models/deepseek/deepseek-v4-flash.toml | 11 ++++++++++ .../models/deepseek/deepseek-v4-pro.toml | 11 ++++++++++ .../models/google/gemini-2.5-flash.toml | 11 ++++++++++ .../edenai/models/google/gemini-2.5-pro.toml | 11 ++++++++++ .../edenai/models/minimax/MiniMax-M3.toml | 12 +++++++++++ .../models/mistral/codestral-latest.toml | 7 +++++++ .../models/mistral/mistral-large-latest.toml | 11 ++++++++++ providers/edenai/models/moonshot/kimi-k3.toml | 11 ++++++++++ providers/edenai/models/openai/gpt-4.1.toml | 7 +++++++ .../edenai/models/openai/gpt-4o-mini.toml | 7 +++++++ .../edenai/models/openai/gpt-5.6-terra.toml | 9 ++++++++ providers/edenai/models/openai/o3.toml | 8 +++++++ providers/edenai/models/xai/grok-4.toml | 21 +++++++++++++++++++ 19 files changed, 179 insertions(+) delete mode 100644 providers/edenai/models/.gitkeep create mode 100644 providers/edenai/models/anthropic/claude-haiku-4-5.toml create mode 100644 providers/edenai/models/anthropic/claude-opus-4-7.toml create mode 100644 providers/edenai/models/anthropic/claude-sonnet-4-6.toml create mode 100644 providers/edenai/models/cohere/command-a-03-2025.toml create mode 100644 providers/edenai/models/cohere/command-r-plus-08-2024.toml create mode 100644 providers/edenai/models/deepseek/deepseek-v4-flash.toml create mode 100644 providers/edenai/models/deepseek/deepseek-v4-pro.toml create mode 100644 providers/edenai/models/google/gemini-2.5-flash.toml create mode 100644 providers/edenai/models/google/gemini-2.5-pro.toml create mode 100644 providers/edenai/models/minimax/MiniMax-M3.toml create mode 100644 providers/edenai/models/mistral/codestral-latest.toml create mode 100644 providers/edenai/models/mistral/mistral-large-latest.toml create mode 100644 providers/edenai/models/moonshot/kimi-k3.toml create mode 100644 providers/edenai/models/openai/gpt-4.1.toml create mode 100644 providers/edenai/models/openai/gpt-4o-mini.toml create mode 100644 providers/edenai/models/openai/gpt-5.6-terra.toml create mode 100644 providers/edenai/models/openai/o3.toml create mode 100644 providers/edenai/models/xai/grok-4.toml diff --git a/providers/edenai/models/.gitkeep b/providers/edenai/models/.gitkeep deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/providers/edenai/models/anthropic/claude-haiku-4-5.toml b/providers/edenai/models/anthropic/claude-haiku-4-5.toml new file mode 100644 index 0000000000..bfcbbe1125 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-haiku-4-5.toml @@ -0,0 +1,9 @@ +base_model = "anthropic/claude-haiku-4-5" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 1 +output = 5 +cache_read = 0.1 +cache_write = 1.25 diff --git a/providers/edenai/models/anthropic/claude-opus-4-7.toml b/providers/edenai/models/anthropic/claude-opus-4-7.toml new file mode 100644 index 0000000000..80b28918e9 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-opus-4-7.toml @@ -0,0 +1,9 @@ +base_model = "anthropic/claude-opus-4-7" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 5 +output = 25 +cache_read = 0.5 +cache_write = 6.25 diff --git a/providers/edenai/models/anthropic/claude-sonnet-4-6.toml b/providers/edenai/models/anthropic/claude-sonnet-4-6.toml new file mode 100644 index 0000000000..b2c67f9e80 --- /dev/null +++ b/providers/edenai/models/anthropic/claude-sonnet-4-6.toml @@ -0,0 +1,9 @@ +base_model = "anthropic/claude-sonnet-4-6" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 +cache_write = 3.75 diff --git a/providers/edenai/models/cohere/command-a-03-2025.toml b/providers/edenai/models/cohere/command-a-03-2025.toml new file mode 100644 index 0000000000..4730f55bd1 --- /dev/null +++ b/providers/edenai/models/cohere/command-a-03-2025.toml @@ -0,0 +1,9 @@ +base_model = "cohere/command-a-03-2025" +last_updated = "2026-08-04" + +[cost] +input = 2.5 +output = 10 + +[limit] +context = 288_000 diff --git a/providers/edenai/models/cohere/command-r-plus-08-2024.toml b/providers/edenai/models/cohere/command-r-plus-08-2024.toml new file mode 100644 index 0000000000..beb7057616 --- /dev/null +++ b/providers/edenai/models/cohere/command-r-plus-08-2024.toml @@ -0,0 +1,6 @@ +base_model = "cohere/command-r-plus-08-2024" +last_updated = "2026-08-04" + +[cost] +input = 2.5 +output = 10 diff --git a/providers/edenai/models/deepseek/deepseek-v4-flash.toml b/providers/edenai/models/deepseek/deepseek-v4-flash.toml new file mode 100644 index 0000000000..18284dd85b --- /dev/null +++ b/providers/edenai/models/deepseek/deepseek-v4-flash.toml @@ -0,0 +1,11 @@ +base_model = "deepseek/deepseek-v4-flash" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 0.14 +output = 0.28 +cache_read = 0.0028 + +[limit] +context = 1_048_576 diff --git a/providers/edenai/models/deepseek/deepseek-v4-pro.toml b/providers/edenai/models/deepseek/deepseek-v4-pro.toml new file mode 100644 index 0000000000..edb801b5cb --- /dev/null +++ b/providers/edenai/models/deepseek/deepseek-v4-pro.toml @@ -0,0 +1,11 @@ +base_model = "deepseek/deepseek-v4-pro" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 0.435 +output = 0.87 +cache_read = 0.003625 + +[limit] +context = 1_048_576 diff --git a/providers/edenai/models/google/gemini-2.5-flash.toml b/providers/edenai/models/google/gemini-2.5-flash.toml new file mode 100644 index 0000000000..94657a95d8 --- /dev/null +++ b/providers/edenai/models/google/gemini-2.5-flash.toml @@ -0,0 +1,11 @@ +base_model = "google/gemini-2.5-flash" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 0.3 +output = 2.5 +reasoning = 2.5 +cache_read = 0.03 +cache_write = 0.083333 +input_audio = 1 diff --git a/providers/edenai/models/google/gemini-2.5-pro.toml b/providers/edenai/models/google/gemini-2.5-pro.toml new file mode 100644 index 0000000000..9d53a95ee4 --- /dev/null +++ b/providers/edenai/models/google/gemini-2.5-pro.toml @@ -0,0 +1,11 @@ +base_model = "google/gemini-2.5-pro" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 1.25 +output = 10 +reasoning = 10 +cache_read = 0.125 +cache_write = 0.375 +input_audio = 1.25 diff --git a/providers/edenai/models/minimax/MiniMax-M3.toml b/providers/edenai/models/minimax/MiniMax-M3.toml new file mode 100644 index 0000000000..7636f38c65 --- /dev/null +++ b/providers/edenai/models/minimax/MiniMax-M3.toml @@ -0,0 +1,12 @@ +base_model = "minimax/MiniMax-M3" +release_date = "2026-05-31" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 0.3 +output = 1.2 +cache_read = 0.06 + +[limit] +context = 524_288 diff --git a/providers/edenai/models/mistral/codestral-latest.toml b/providers/edenai/models/mistral/codestral-latest.toml new file mode 100644 index 0000000000..806208fecf --- /dev/null +++ b/providers/edenai/models/mistral/codestral-latest.toml @@ -0,0 +1,7 @@ +base_model = "mistral/codestral-latest" +release_date = "2026-06-05" +last_updated = "2026-08-04" + +[cost] +input = 1 +output = 3 diff --git a/providers/edenai/models/mistral/mistral-large-latest.toml b/providers/edenai/models/mistral/mistral-large-latest.toml new file mode 100644 index 0000000000..97b283f4bb --- /dev/null +++ b/providers/edenai/models/mistral/mistral-large-latest.toml @@ -0,0 +1,11 @@ +base_model = "mistral/mistral-large-latest" +release_date = "2024-02-26" +last_updated = "2026-08-04" + +[cost] +input = 2 +output = 6 +cache_read = 0.2 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/moonshot/kimi-k3.toml b/providers/edenai/models/moonshot/kimi-k3.toml new file mode 100644 index 0000000000..cb056ac7ea --- /dev/null +++ b/providers/edenai/models/moonshot/kimi-k3.toml @@ -0,0 +1,11 @@ +base_model = "moonshotai/kimi-k3" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 3 +output = 15 +cache_read = 0.3 + +[modalities] +input = ["text", "image"] diff --git a/providers/edenai/models/openai/gpt-4.1.toml b/providers/edenai/models/openai/gpt-4.1.toml new file mode 100644 index 0000000000..5494ade32b --- /dev/null +++ b/providers/edenai/models/openai/gpt-4.1.toml @@ -0,0 +1,7 @@ +base_model = "openai/gpt-4.1" +last_updated = "2026-08-04" + +[cost] +input = 2 +output = 8 +cache_read = 0.5 diff --git a/providers/edenai/models/openai/gpt-4o-mini.toml b/providers/edenai/models/openai/gpt-4o-mini.toml new file mode 100644 index 0000000000..7fd090546e --- /dev/null +++ b/providers/edenai/models/openai/gpt-4o-mini.toml @@ -0,0 +1,7 @@ +base_model = "openai/gpt-4o-mini" +last_updated = "2026-08-04" + +[cost] +input = 0.15 +output = 0.6 +cache_read = 0.075 diff --git a/providers/edenai/models/openai/gpt-5.6-terra.toml b/providers/edenai/models/openai/gpt-5.6-terra.toml new file mode 100644 index 0000000000..ba95166b91 --- /dev/null +++ b/providers/edenai/models/openai/gpt-5.6-terra.toml @@ -0,0 +1,9 @@ +base_model = "openai/gpt-5.6-terra" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 2 +output = 12 +cache_read = 0.2 +cache_write = 2.5 diff --git a/providers/edenai/models/openai/o3.toml b/providers/edenai/models/openai/o3.toml new file mode 100644 index 0000000000..1e2474be33 --- /dev/null +++ b/providers/edenai/models/openai/o3.toml @@ -0,0 +1,8 @@ +base_model = "openai/o3" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 2 +output = 8 +cache_read = 0.5 diff --git a/providers/edenai/models/xai/grok-4.toml b/providers/edenai/models/xai/grok-4.toml new file mode 100644 index 0000000000..089b0188bd --- /dev/null +++ b/providers/edenai/models/xai/grok-4.toml @@ -0,0 +1,21 @@ +name = "grok-4" +description = "Grok 4 is xAI's latest reasoning model with a 256k context window. It supports parallel tool calling, structured outputs, and both image and text inputs. Note that reasoning is not..." +release_date = "2025-07-09" +last_updated = "2026-08-04" +attachment = false +reasoning = false +tool_call = true +structured_output = false +open_weights = false + +[cost] +input = 3 +output = 15 + +[limit] +context = 256_000 +output = 256_000 + +[modalities] +input = ["text"] +output = ["text"] From 6c95c88e5998ac80f56f6443d8db5be4c40aba42 Mon Sep 17 00:00:00 2001 From: YacineMK Date: Tue, 4 Aug 2026 02:06:42 +0100 Subject: [PATCH 12/14] fix(edenai): stop stamping release_date on factored path --- packages/core/src/sync/providers/edenai.ts | 15 +++------------ providers/edenai/models/minimax/MiniMax-M3.toml | 1 - .../edenai/models/mistral/codestral-latest.toml | 1 - .../models/mistral/mistral-large-latest.toml | 1 - 4 files changed, 3 insertions(+), 15 deletions(-) diff --git a/packages/core/src/sync/providers/edenai.ts b/packages/core/src/sync/providers/edenai.ts index 93d1b64b82..a4151b65a8 100644 --- a/packages/core/src/sync/providers/edenai.ts +++ b/packages/core/src/sync/providers/edenai.ts @@ -285,21 +285,14 @@ export function buildEdenAIModel( input: existing?.limit?.input, output: existing?.limit?.output, }; - const releaseDate = + const inlineReleaseDate = existing?.release_date ?? dateFromTimestamp(model.created) ?? today; const cost = buildCost(model, reasoning, existing?.cost); const resolvedBase = resolveEdenBaseModel(model, existing?.base_model); if (resolvedBase !== undefined) { - // Factored: only override cost/limit/modalities/timestamps. Leave - // capability booleans and open_weights unset so `base_model` inheritance - // from `models/` provides the authoritative values (matches DeepInfra / - // LLM Gateway patterns; AGENTS.md merge rules). `attachment` is always - // written alongside `modalities` so the two stay in sync — writing - // `modalities` alone can leave inherited `attachment` disagreeing with - // the overridden input list. const factored: Partial = { - release_date: releaseDate, + release_date: existing?.release_date, last_updated: existing?.last_updated ?? today, status: existing?.status, interleaved: existing?.interleaved, @@ -308,8 +301,6 @@ export function buildEdenAIModel( modalities: { input, output }, attachment, }; - // reasoning_options is provider-specific and never inherited; declare it - // when the model reasons (empty array = no verified control surface). if (reasoning || existing?.reasoning_options !== undefined) { factored.reasoning_options = existing?.reasoning_options ?? []; } @@ -360,7 +351,7 @@ export function buildEdenAIModel( temperature: existing?.temperature, knowledge: existing?.knowledge, open_weights: openWeights, - release_date: releaseDate, + release_date: inlineReleaseDate, last_updated: existing?.last_updated ?? today, status: existing?.status, interleaved: existing?.interleaved, diff --git a/providers/edenai/models/minimax/MiniMax-M3.toml b/providers/edenai/models/minimax/MiniMax-M3.toml index 7636f38c65..bca3538de0 100644 --- a/providers/edenai/models/minimax/MiniMax-M3.toml +++ b/providers/edenai/models/minimax/MiniMax-M3.toml @@ -1,5 +1,4 @@ base_model = "minimax/MiniMax-M3" -release_date = "2026-05-31" last_updated = "2026-08-04" reasoning_options = [] diff --git a/providers/edenai/models/mistral/codestral-latest.toml b/providers/edenai/models/mistral/codestral-latest.toml index 806208fecf..daddbf8ac5 100644 --- a/providers/edenai/models/mistral/codestral-latest.toml +++ b/providers/edenai/models/mistral/codestral-latest.toml @@ -1,5 +1,4 @@ base_model = "mistral/codestral-latest" -release_date = "2026-06-05" last_updated = "2026-08-04" [cost] diff --git a/providers/edenai/models/mistral/mistral-large-latest.toml b/providers/edenai/models/mistral/mistral-large-latest.toml index 97b283f4bb..e06c59b95e 100644 --- a/providers/edenai/models/mistral/mistral-large-latest.toml +++ b/providers/edenai/models/mistral/mistral-large-latest.toml @@ -1,5 +1,4 @@ base_model = "mistral/mistral-large-latest" -release_date = "2024-02-26" last_updated = "2026-08-04" [cost] From 40cfbfe27982c65e4e13d9c4c7a660721289f25e Mon Sep 17 00:00:00 2001 From: YacineMK Date: Tue, 4 Aug 2026 02:06:51 +0100 Subject: [PATCH 13/14] fix(edenai): swap grok-4 for grok-4.5 to inherit canonical capabilities --- providers/edenai/models/xai/grok-4.5.toml | 11 +++++++++++ providers/edenai/models/xai/grok-4.toml | 21 --------------------- 2 files changed, 11 insertions(+), 21 deletions(-) create mode 100644 providers/edenai/models/xai/grok-4.5.toml delete mode 100644 providers/edenai/models/xai/grok-4.toml diff --git a/providers/edenai/models/xai/grok-4.5.toml b/providers/edenai/models/xai/grok-4.5.toml new file mode 100644 index 0000000000..251859762a --- /dev/null +++ b/providers/edenai/models/xai/grok-4.5.toml @@ -0,0 +1,11 @@ +base_model = "xai/grok-4.5" +last_updated = "2026-08-04" +reasoning_options = [] + +[cost] +input = 2 +output = 6 +cache_read = 0.3 + +[modalities] +input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/xai/grok-4.toml b/providers/edenai/models/xai/grok-4.toml deleted file mode 100644 index 089b0188bd..0000000000 --- a/providers/edenai/models/xai/grok-4.toml +++ /dev/null @@ -1,21 +0,0 @@ -name = "grok-4" -description = "Grok 4 is xAI's latest reasoning model with a 256k context window. It supports parallel tool calling, structured outputs, and both image and text inputs. Note that reasoning is not..." -release_date = "2025-07-09" -last_updated = "2026-08-04" -attachment = false -reasoning = false -tool_call = true -structured_output = false -open_weights = false - -[cost] -input = 3 -output = 15 - -[limit] -context = 256_000 -output = 256_000 - -[modalities] -input = ["text"] -output = ["text"] From 6d63770fe3fbcde5db2cd4375520b401ce5ad7b5 Mon Sep 17 00:00:00 2001 From: YacineMK Date: Tue, 4 Aug 2026 03:41:30 +0100 Subject: [PATCH 14/14] fix(edenai): preserve reasoning_options and omit factored modalities --- packages/core/src/sync/providers/edenai.ts | 14 +++++++------- .../models/mistral/mistral-large-latest.toml | 3 --- providers/edenai/models/moonshot/kimi-k3.toml | 3 --- providers/edenai/models/xai/grok-4.5.toml | 3 --- 4 files changed, 7 insertions(+), 16 deletions(-) diff --git a/packages/core/src/sync/providers/edenai.ts b/packages/core/src/sync/providers/edenai.ts index a4151b65a8..d17025f467 100644 --- a/packages/core/src/sync/providers/edenai.ts +++ b/packages/core/src/sync/providers/edenai.ts @@ -298,11 +298,13 @@ export function buildEdenAIModel( interleaved: existing?.interleaved, cost, limit, - modalities: { input, output }, - attachment, }; - if (reasoning || existing?.reasoning_options !== undefined) { - factored.reasoning_options = existing?.reasoning_options ?? []; + if (existing?.modalities !== undefined) { + factored.modalities = existing.modalities; + factored.attachment = existing.attachment; + } + if (existing?.reasoning_options !== undefined) { + factored.reasoning_options = existing.reasoning_options; } return factorBaseModel( resolvedBase, @@ -343,9 +345,7 @@ export function buildEdenAIModel( attachment, modalities: { input, output }, reasoning: inlineReasoning, - reasoning_options: inlineReasoning - ? existing?.reasoning_options ?? [] - : undefined, + reasoning_options: inlineReasoning ? existing?.reasoning_options : undefined, tool_call: inlineToolCall, structured_output: inlineStructuredOutput, temperature: existing?.temperature, diff --git a/providers/edenai/models/mistral/mistral-large-latest.toml b/providers/edenai/models/mistral/mistral-large-latest.toml index e06c59b95e..01c90d63ff 100644 --- a/providers/edenai/models/mistral/mistral-large-latest.toml +++ b/providers/edenai/models/mistral/mistral-large-latest.toml @@ -5,6 +5,3 @@ last_updated = "2026-08-04" input = 2 output = 6 cache_read = 0.2 - -[modalities] -input = ["text", "image", "pdf"] diff --git a/providers/edenai/models/moonshot/kimi-k3.toml b/providers/edenai/models/moonshot/kimi-k3.toml index cb056ac7ea..1210c131bc 100644 --- a/providers/edenai/models/moonshot/kimi-k3.toml +++ b/providers/edenai/models/moonshot/kimi-k3.toml @@ -6,6 +6,3 @@ reasoning_options = [] input = 3 output = 15 cache_read = 0.3 - -[modalities] -input = ["text", "image"] diff --git a/providers/edenai/models/xai/grok-4.5.toml b/providers/edenai/models/xai/grok-4.5.toml index 251859762a..f6382a6cab 100644 --- a/providers/edenai/models/xai/grok-4.5.toml +++ b/providers/edenai/models/xai/grok-4.5.toml @@ -6,6 +6,3 @@ reasoning_options = [] input = 2 output = 6 cache_read = 0.3 - -[modalities] -input = ["text", "image", "pdf"]