Models
Here is how to map your allowed AWS Bedrock models (us-east-1) to the multi-agent architecture for the **"Beyond Text Extraction"** hackathon. Each model in your allowed list has a specific strength. Splitting them across your agents gives you optimal performance, latency, and reasoning depth. ### 1. Model Assignment Matrix | Agent / Layer | Best Model | AWS Model ID (boto3) | Why It’s the Best Choice | |---|---|---|---| | **Agent 1: Classifier** | **Amazon Nova Lite** | amazon.nova-lite-v1:0 | Ultra-fast and low-cost. Perfect for quickly identifying document types (e.g., Invoice vs. Form) and checking image legibility. | | **Agent 2: Multimodal Extractor** | **Claude 4.5 Haiku** | us.anthropic.claude-haiku-4-5-20251001-v1:0 | Outstanding visual/spatial reasoning. Best in this list for reading messy handwriting, checkboxes, complex tables, and returning strict bounding box JSON. | | **Agent 3: Validator** | **Cohere Command R+** | cohere.command-r-plus-v1:0 | Built specifica...