CtrlK
BlogDocsLog inGet started
Tessl Logo

giuseppe-trisciuoglio/developer-kit

Comprehensive developer toolkit providing reusable skills for Java/Spring Boot, TypeScript/NestJS/React/Next.js, Python, PHP, AWS CloudFormation, AI/RAG, DevOps, and more.

82

Quality

82%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Risky

Do not use without reviewing

Validation failed for skills in this tile
One or more skills have errors that need to be fixed before they can move to Implementation and Discovery review.
Overview
Quality
Evals
Security
Files

models-lookup.mdplugins/developer-kit-java/skills/aws-sdk-java-v2-bedrock/references/

Model ID Lookup Guide

This document provides quick lookup for the most commonly used model IDs in Amazon Bedrock.

Text Generation Models

Claude (Anthropic)

ModelModel IDDescriptionUse Case
Claude 4.5 Sonnetanthropic.claude-sonnet-4-5-20250929-v1:0Latest high-performance modelComplex reasoning, coding, creative tasks
Claude 4.5 Haikuanthropic.claude-haiku-4-5-20251001-v1:0Latest fast modelReal-time applications, chatbots
Claude 3.7 Sonnetanthropic.claude-3-7-sonnet-20250219-v1:0Most advanced reasoningHigh-stakes decisions, complex analysis
Claude Opus 4.1anthropic.claude-opus-4-1-20250805-v1:0Most powerful creativeAdvanced creative tasks
Claude 3.5 Sonnet v2anthropic.claude-3-5-sonnet-20241022-v2:0High-performance modelGeneral use, coding
Claude 3.5 Haikuanthropic.claude-3-5-haiku-20241022-v1:0Fast and affordableReal-time applications

Llama (Meta)

ModelModel IDDescriptionUse Case
Llama 3.3 70Bmeta.llama3-3-70b-instruct-v1:0Latest generationComplex reasoning, general use
Llama 3.2 90Bmeta.llama3-2-90b-instruct-v1:0Large contextLong context tasks
Llama 3.2 11Bmeta.llama3-2-11b-instruct-v1:0Medium modelBalanced performance
Llama 3.2 3Bmeta.llama3-2-3b-instruct-v1:0Small modelFast inference
Llama 3.2 1Bmeta.llama3-2-1b-instruct-v1:0Ultra-fastQuick responses
Llama 3.1 70Bmeta.llama3-1-70b-instruct-v1:0Previous genGeneral use
Llama 3.1 8Bmeta.llama3-1-8b-instruct-v1:0Fast small modelLightweight applications

Mistral AI

ModelModel IDDescriptionUse Case
Mistral Large 2407mistral.mistral-large-2407-v1:0Latest large modelComplex reasoning
Mistral Large 2402mistral.mistral-large-2402-v1:0Previous large modelGeneral use
Mistral Pixtral 2502mistral.pixtral-large-2502-v1:0MultimodalText + image understanding
Mistral 7Bmistral.mistral-7b-instruct-v0:2Small fast modelQuick responses

Amazon

ModelModel IDDescriptionUse Case
Titan Text Expressamazon.titan-text-express-v1Fast text generationQuick responses
Titan Text Liteamazon.titan-text-lite-v1Cost-effectiveBudget-sensitive apps
Titan Embeddingsamazon.titan-embed-text-v1Text embeddingsSemantic search

Cohere

ModelModel IDDescriptionUse Case
Command R+cohere.command-r-plus-v1:0High performanceComplex tasks
Command Rcohere.command-r-v1:0General purposeStandard use cases

Image Generation Models

Stability AI

ModelModel IDDescriptionUse Case
Stable Diffusion 3.5 Largestability.sd3-5-large-v1:0Latest image genHigh-quality images
Stable Diffusion XLstability.stable-diffusion-xl-v1Previous generationGeneral image generation

Amazon Nova

ModelModel IDDescriptionUse Case
Nova Canvasamazon.nova-canvas-v1:0Image generationCreative images
Nova Reelamazon.nova-reel-v1:1Video generationVideo content

Embedding Models

Amazon

ModelModel IDDescriptionUse Case
Titan Embeddingsamazon.titan-embed-text-v1Text embeddingsSemantic search
Titan Embeddings V2amazon.titan-embed-text-v2:0Improved embeddingsBetter accuracy

Cohere

ModelModel IDDescriptionUse Case
Embed Englishcohere.embed-english-v3English embeddingsEnglish content
Embed Multilingualcohere.embed-multilingual-v3Multi-languageInternational use

Selection Guide

By Speed

  1. Fastest: Llama 3.2 1B, Claude 4.5 Haiku, Titan Lite
  2. Fast: Mistral 7B, Llama 3.2 3B
  3. Medium: Claude 3.5 Sonnet, Llama 3.2 11B
  4. Slow: Claude 4.5 Sonnet, Llama 3.3 70B

By Quality

  1. Highest: Claude 4.5 Sonnet, Claude 3.7 Sonnet, Claude Opus 4.1
  2. High: Claude 3.5 Sonnet, Llama 3.3 70B
  3. Medium: Mistral Large, Llama 3.2 11B
  4. Basic: Mistral 7B, Llama 3.2 3B

By Cost

  1. Most Affordable: Claude 4.5 Haiku, Llama 3.2 1B
  2. Affordable: Mistral 7B, Titan Lite
  3. Medium: Claude 3.5 Haiku, Llama 3.2 3B
  4. Expensive: Claude 4.5 Sonnet, Llama 3.3 70B

Common Patterns

Default Model Selection

// For most applications
String DEFAULT_MODEL = "anthropic.claude-sonnet-4-5-20250929-v1:0";

// For real-time applications
String FAST_MODEL = "anthropic.claude-haiku-4-5-20251001-v1:0";

// For budget-sensitive applications
String CHEAP_MODEL = "amazon.titan-text-lite-v1";

// For complex reasoning
String POWERFUL_MODEL = "anthropic.claude-3-7-sonnet-20250219-v1:0";

Model Fallback Chain

private static final String[] MODEL_CHAIN = {
    "anthropic.claude-sonnet-4-5-20250929-v1:0",  // Primary
    "anthropic.claude-haiku-4-5-20251001-v1:0",  // Fast fallback
    "amazon.titan-text-lite-v1"                 // Cheap fallback
};

plugins

developer-kit-java

skills

README.md

tile.json