agentsclimarketplace

Apertis model picker

Skill apertis-ai/apertis-skills/skills/apertis-model-picker

Agent skills for Apertis AI — use 500+ models in Claude Code, Cursor, Copilot, and 45+ AI tools

Install
npx -y skills add apertis-ai/apertis-skills --skill apertis-model-picker

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Opinionated model recommendations for Apertis API by task type — coding, long context, fast chat, web search, image understanding, reasoning, and cost optimization.

SKILL.md

5.5 KB, ~1.4k tokens by cl100k_base, as published. Nobody here has run it

Apertis Model Picker

Opinionated recommendations by task type. Model IDs evolve quickly — always verify current IDs and pricing at https://apertis.ai/pricing?utm_source=apertis-skills&utm_medium=skill-doc&utm_campaign=ecosystem.

Coding & Debugging

Recommended: Claude Sonnet (claude-sonnet-4-6 or latest claude-sonnet-4-*)

  • Best coding ability per dollar on the platform
  • Excels at multi-file edits, debugging, code review, architecture planning
  • Context: 200K tokens
client.chat.completions.create(
    model="claude-sonnet-4-6",
    messages=[{"role": "user", "content": "Refactor this function for better performance..."}]
)

Faster/cheaper: Claude Haiku (claude-haiku-4-5 or latest claude-haiku-4-*) Most capable: Claude Opus (claude-opus-4-*)


Long Context — Large Files, Full Codebases

Recommended: Gemini Flash (gemini-3-flash-preview or latest gemini-3-*)

  • 1M+ token context window (fits entire codebases)
  • Fast and cost-efficient
  • Ideal for: analyzing large repos, summarizing long docs, multi-file reasoning
client.chat.completions.create(
    model="gemini-3-flash-preview",
    messages=[{"role": "user", "content": "Analyze this entire codebase and identify architectural issues..."}]
)

Higher quality: Gemini Pro (gemini-3-pro or gemini-2.5-pro)


Fast Chat — Customer Support, Simple Q&A

Recommended: GPT-4o or GPT-5 mini

  • Fast, cost-efficient, reliable structured output
  • Good at following system prompt instructions precisely
client.chat.completions.create(
    model="gpt-4o",
    messages=[
        {"role": "system", "content": "You are a helpful customer support agent."},
        {"role": "user", "content": "How do I reset my password?"}
    ]
)

Budget alternative: glm-4.5-flash or minimax-m1 — strong multilingual, very low cost


Web Search — Real-Time Information

Recommended: any model + :web suffix

  • Works with any non-free model on Apertis
  • Returns web_sources[] with title, URL, snippet
response = client.chat.completions.create(
    model="gpt-4o:web",
    messages=[{"role": "user", "content": "What's the latest Claude model?"}]
)
sources = response.choices[0].message.web_sources

Start cheap (gpt-4o:web), upgrade to Claude Sonnet or Gemini Pro if you need deeper synthesis.


Reasoning — Math, Logic, Complex Problem Solving

Recommended: deepseek-r1

  • Chain-of-thought reasoning, shows its work
  • Strong math and logic performance
  • Cost-efficient vs OpenAI o-series
client.chat.completions.create(
    model="deepseek-r1",
    messages=[{"role": "user", "content": "Solve this step by step..."}]
)

OpenAI option: o4-mini (reliable, fast reasoning)


Image Understanding & Vision

Recommended: gpt-4o

  • Strong multimodal understanding
  • Handles: screenshots, diagrams, charts, handwriting, UI mockups
response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{
        "role": "user",
        "content": [
            {"type": "text", "text": "What's in this image?"},
            {"type": "image_url", "image_url": {"url": "data:image/jpeg;base64,..."}}
        ]
    }]
)

Also strong: Gemini Flash/Pro (vision + very long context)


Cost Optimization — Budget Projects, High Volume

Recommended: Gemini Flash or GLM

  • gemini-3-flash-preview — very low cost, large context
  • glm-4.5-air — multilingual, competitive pricing
  • deepseek-v3 — excellent for coding-heavy workloads

Quick Reference

TaskModel FamilyNotes
Coding / debuggingClaude SonnetBest coding per dollar
Long context (1M+)Gemini FlashFast, cheap, huge context
Fast chat / supportGPT-4o or GLMReliable, cost-efficient
Web searchAny model + :webAll non-free models supported
Reasoning / mathDeepSeek R1Shows reasoning steps
Vision / imagesGPT-4o or GeminiStrong multimodal
Budget / high volumeGemini Flash / GLMLowest cost tier
Most capable overallClaude OpusWhen quality > cost

Check live model IDs and pricing at https://apertis.ai/pricing?utm_source=apertis-skills&utm_medium=skill-doc&utm_campaign=ecosystem


Dynamic Model Selection (Recommended for Agents)

Instead of relying on this static list, call the Apertis Recommend API to get the best model for your task at the current time, with live pricing:

curl "https://api.apertis.ai/v1/recommend?task=coding&budget=medium" \
  -H "Authorization: Bearer $APERTIS_API_KEY"

Task types: coding, long-context, fast-chat, reasoning, vision Budget tiers: low (cheapest), medium (balanced), high (best quality)

Example response:

{
  "model": "claude-sonnet-4-6",
  "task": "coding",
  "budget": "medium",
  "input_price_per_1m": 2.40,
  "output_price_per_1m": 12.00,
  "reason": "Best coding ability per dollar. 200K context.",
  "alternatives": [
    { "model": "deepseek-v3", "input_price_per_1m": 0.30, "note": "3x cheaper, good for simpler coding tasks" }
  ]
}

Use the returned model value directly in your API calls. This endpoint always reflects current pricing and model availability.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.