Saltar al contenido principal
Home / Modelos / Código

Generación de código con IA

Cada modelo que escribe código — desde modelos dedicados como Codestral y DeepSeek Coder hasta LLMs generales con fuertes capacidades de programación. Compara ventanas de contexto, precios, soporte de lenguajes y rendimiento real en programación.

Datos en vivo — actualizado diariamente
Mostrando 8 de 8 modelos de código
def fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2) # Dynamic programming version def fib_dp(n):
ByteDance Seed 2.0 Code
BytePlus
ByteDance Seed 2.0 Code (preview), coding-specialized agent (text & image in → text), strong tool use + reasoning. Native via BytePlus (Ark).
262K
66K salidaIn: $0.000875/1MOut: $0.0053/1M●●●○○
ToolsStreamtoolsreasoningimage
Probar en Zubnet →
async function fetchData(url) { const res = await fetch(url); if (!res.ok) throw new Error(); return res.json(); }
Codestral
Mistral AI
Specialized model for code generation, completion, and understanding.
262K
8K salidaIn: $0.000525/1MOut: $0.0016/1M●●●●○
Streamchat
Probar en Zubnet →
fn merge_sort(arr: &mut Vec<i32>) { let len = arr.len(); if len <= 1 { return; } let mid = len / 2;
GPT-5.3 Codex
OpenAI
OpenAI GPT-5.3 Codex (chat completions endpoint).
272K
128K salidaIn: $0.0031/1MOut: $0.0245/1M●●●●○
ToolsStreamtoolsreasoningimage
Probar en Zubnet →
class TreeNode: def __init__(self, val=0): self.val = val self.left = None self.right = None # Binary search tree
Jina Code Embeddings 1.5B
Jina AI
Jina AI's code-specialized embedding model, 1.5B parameters optimized for code search and retrieval. 32K context.
33K
In: $0.000087/1M●●●○○
Probar en Zubnet →
func quickSort(arr []int) []int { if len(arr) <= 1 { return arr } pivot := arr[0]
Kimi K2.7 Code
Moonshot AI
Coding-specialized Kimi K2 model (k2.7). 256K context, agentic tool use and function calling, tuned for software engineering.
262K
131K salidaIn: $0.0017/1MOut: $0.0070/1M●●●○○
ToolsStreamchatreasoningfunction_callingagentic
Probar en Zubnet →
// React component export const Button = ({ label }) => ( <button className="btn"> {label} </button> );
Kimi K2.7 Code Highspeed
Moonshot AI
High-speed variant of Kimi K2.7 Code for low-latency agentic software engineering.
262K
131K salidaIn: $0.0017/1MOut: $0.0070/1M●●●●●
ToolsStreamchatreasoningfunction_callingagentic
Probar en Zubnet →
def fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2) # Dynamic programming version def fib_dp(n):
Qwen3 Coder Flash
Alibaba Cloud
Cost-effective coding model optimized for speed. Fast code generation and completion at lower cost.
131K
8K salidaIn: $0.000252/1MOut: $0.0010/1M●●●●●
ToolsStreamtools
Probar en Zubnet →
async function fetchData(url) { const res = await fetch(url); if (!res.ok) throw new Error(); return res.json(); }
Voyage Code 3
Voyage AI
Voyage AI's code-optimized embedding model, best-in-class for code search, retrieval, and similarity. 200M free tokens.
In: $0.000315/1M●●●○○
Probar en Zubnet →
ESC