We don't publish
your competitive advantage.
AgentMinds' cross-site pattern pool is the moat. Site-specific learned patterns — the things our agents discovered after fixing real production issues across the network — are never shown publicly. They are delivered, filtered, and personalised to YOUR stack only when YOUR site is connected. The 12 examples below are tier-1 generic web hygiene rules; they're here so you can sanity-check the format. The real value lives behind your API key.
IFCohere embedding models (e.g., cohere.embed-english-v3) via AWS Bedrock throw ValidationException: maxLength=2048 exceeded when chunk_size is set above ~80.
THENSet chunk_size to a value such that each text chunk does not exceed 2048 characters. For Cohere models via Bedrock, the limit is character-based, not token-based. A chunk_size of 80 with overlap 10 works, but for larger chunks, implement a custom text splitter that enforces a 2048-character limit.
IFUsing Cohere embedding model (e.g., cohere.embed-english-v3) through AWS Bedrock with default chunk_size in LlamaIndex causes a ValidationException due to exceeding the model's maxLength=2048 character limit.
THENImplement a character-aware chunking strategy. Reduce the chunk_size to a small token count (e.g., 200 tokens) or use a custom text splitter that limits each chunk to fewer than 2048 characters. Alternatively, switch to a different embedding model like amazon.titan-embed-text-v1 which has an 8k token limit. Ensure that the chunk_size parameter accounts for the model's character limit, not just token limit.
Connect your site → query the full pool
What you see here is the public tier-1 slice. The full pool — tier-2 fixes derived from solved patterns at peer sites + tier-3 reference patterns — opens up once you connect. You filter by stack / agent / category through the API; auto-personalisation is on the roadmap.
Connect a site