Getting Claude Code to work with AWS Bedrock requires some configuration that isn't obvious from the documentation. Here's what I learned after working through a few issues. The Solution The key was combining multiple environment variables and properly exporting AWS credentials. Here's the shell script I created to make it all work: #!/bin/zsh # Set AWS credentials from profile eval " $( aws…
I had a couple conversations with the new Multimodal Live API through the Google AI Studio . I wanted to have a voice-to-voice conversation about an idea I was working through, and wanted Flash to walk me through what the potential pitfalls are. Flash didn't give me the sophisticated kind of response that I expect from Claude or ChatGPT. I specifically asked Flash to compare and contrast different…
I've been working with the Deepseek API while working on my tool carrier.nvim . It has a new beta feature that Anthropic also has that is really excellent, called chat prefix completion. You can just set what the assistant message response should start with. This is really useful for contexts like code completion, where you want the model to always respond with just the code you want by starting…