- Add BedrockClient implementation with ChatBedrockConverse integration
- Support Claude models (Haiku, Sonnet, Opus) via AWS Bedrock
- Add AWS region selection in CLI with 5 region options (us-east-1, us-west-2, eu-west-1, ap-northeast-1, ap-southeast-1)
- Integrate Bedrock provider into LLM factory and model catalog
- Pass region_name and other Bedrock-specific parameters through trading graph configuration
- Set default region to us-east-1 with configurable boto retry and timeout settings
Add effort parameter (high/medium/low) for Claude 4.5+ and 4.6 models,
consistent with OpenAI reasoning_effort and Google thinking_level.
Also add content normalization for Anthropic responses.
Prevents UnicodeEncodeError on Windows where the default encoding
(cp1252/gbk) cannot handle Unicode characters in LLM output.
Closes#77, closes#114, closes#126, closes#215, closes#332
- Add StatsCallbackHandler for tracking LLM calls, tool calls, and tokens
- Integrate callbacks into TradingAgentsGraph and all LLM clients
- Dynamic agent/report counts based on selected analysts
- Fix report completion counting (tied to agent completion)